[
  {
    "path": "Arduino_Reciever_Example",
    "content": "// NOTE: ESP32Servo may be incompatible with the current ESP-IDF-Arduino port.\n// If you experience crashes, please try removing ESP32Servo\n\n#include <ESP32Servo.h>  // Using Servo library to control servo\n#include <esp_now.h>\n#include <WiFi.h>\n\nServo servo;  // Create a servo object to control a servo\n\nconst int buttonPin = 32;  // Doesn't have to be this exact pin\nconst int motorPin = 13;   // Doesn't have to be this exact pin\n\nbool onState = false;\n\n// Structure to receive data\ntypedef struct {\n  uint8_t command;  // Change to uint8_t to match the sending data type\n} ReceivedData;\n\nReceivedData myData;\n\n// Callback function to handle received data\nvoid OnDataRecv(const esp_now_recv_info *info, const uint8_t *incomingData, int len) {\n  memcpy(&myData, incomingData, sizeof(myData));\n  //Serial.print(\"Received command: \");\n  //Serial.println(myData.command);  // This should now correctly print 1\n\n  if (myData.command == 1) {\n    onState = !onState;  // Toggle the onState\n  }\n}\n\nvoid setup() {\n  // Initialize Serial for debugging\n  Serial.begin(115200);\n\n  // Set button pin as input\n  pinMode(buttonPin, INPUT_PULLDOWN);\n\n  // Attach servo\n  servo.attach(motorPin);\n\n  // Initialize WiFi in STA mode\n  WiFi.mode(WIFI_STA);\n\n  // Init ESP-NOW\n  if (esp_now_init() != ESP_OK) {\n    Serial.println(\"Error initializing ESP-NOW\");\n    return;\n  }\n\n  // Once ESP-NOW is successfully Init, we will register for recv CB to\n  // get recv packer info\n  esp_now_register_recv_cb(OnDataRecv);\n}\n\nvoid loop() {\n  // Check if button is pressed\n  if (digitalRead(buttonPin) == HIGH) \n  {\n    delay(200);\n    onState = !onState;  // Toggle the state manually\n  }\n\n  if (onState) \n  {\n    servo.write(140);\n  } \n  else \n  {\n    servo.write(40);\n  }\n  //Serial.println(onState);\n}\n"
  },
  {
    "path": "Code/.cproject",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<?fileVersion 4.0.0?><cproject storage_type_id=\"org.eclipse.cdt.core.XmlProjectDescriptionStorage\">\n\t<storageModule moduleId=\"org.eclipse.cdt.core.settings\">\n\t\t<cconfiguration id=\"org.eclipse.cdt.core.default.config.861394507\">\n\t\t\t<storageModule buildSystemId=\"org.eclipse.cdt.core.defaultConfigDataProvider\" id=\"org.eclipse.cdt.core.default.config.861394507\" moduleId=\"org.eclipse.cdt.core.settings\" name=\"Configuration\">\n\t\t\t\t<externalSettings/>\n\t\t\t\t<extensions/>\n\t\t\t</storageModule>\n\t\t\t<storageModule moduleId=\"org.eclipse.cdt.core.externalSettings\"/>\n\t\t</cconfiguration>\n\t</storageModule>\n\t<storageModule moduleId=\"org.eclipse.cdt.core.pathentry\">\n\t\t<pathentry excluding=\"**/CMakeFiles/**\" kind=\"out\" path=\"build\"/>\n\t</storageModule>\n\t<storageModule moduleId=\"org.eclipse.cdt.core.LanguageSettingsProviders\"/>\n\t<storageModule moduleId=\"org.eclipse.cdt.make.core.buildtargets\"/>\n</cproject>"
  },
  {
    "path": "Code/.project",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<projectDescription>\n\t<name>Gateway</name>\n\t<comment></comment>\n\t<projects>\n\t</projects>\n\t<buildSpec>\n\t\t<buildCommand>\n\t\t\t<name>org.eclipse.cdt.core.cBuilder</name>\n\t\t\t<triggers>clean,full,incremental,</triggers>\n\t\t\t<arguments>\n\t\t\t</arguments>\n\t\t</buildCommand>\n\t</buildSpec>\n\t<natures>\n\t\t<nature>org.eclipse.cdt.core.cnature</nature>\n\t\t<nature>org.eclipse.cdt.core.ccnature</nature>\n\t\t<nature>com.espressif.idf.core.idfNature</nature>\n\t</natures>\n\t<linkedResources>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_trace/app_trace.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_trace/app_trace_util.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace_util.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_trace/host_file_io.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/host_file_io.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_update/esp_ota_app_desc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_app_desc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_update/esp_ota_ops.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_ops.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/commands.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/commands.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/esp_console_repl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/esp_console_repl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/split_argv.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/split_argv.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/cxx/cxx_exception_stubs.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_exception_stubs.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/cxx/cxx_guards.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_guards.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp-tls/esp_tls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp-tls/esp_tls_error_capture.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_error_capture.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp-tls/esp_tls_mbedtls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_mbedtls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_cali.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_cali_curve_fitting.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali_curve_fitting.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_continuous.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_continuous.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_filter.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_filter.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/adc_oneshot.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_oneshot.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_app_format/esp_app_desc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/esp_app_desc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_event/default_event_loop.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/default_event_loop.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_event/esp_event.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_event/esp_event_private.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event_private.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_client/esp_http_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/esp_http_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/adc_share_hw_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/adc_share_hw_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/clk_ctrl_os.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/clk_ctrl_os.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/cpu.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/cpu.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/esp_clk.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_clk.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/esp_ds.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_ds.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/esp_gpio_reserve.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_gpio_reserve.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/esp_hmac.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_hmac.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/esp_memory_utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_memory_utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/hw_random.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/hw_random.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/intr_alloc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/intr_alloc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/mac_addr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mac_addr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/mspi_timing_tuning.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mspi_timing_tuning.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/periph_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/periph_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/regi2c_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/regi2c_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/revision.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/revision.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/rtc_module.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/rtc_module.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sar_periph_ctrl_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sar_periph_ctrl_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sleep_cpu.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_cpu.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sleep_gpio.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_gpio.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sleep_modem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sleep_modes.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modes.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/sleep_wake_stub.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_wake_stub.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_mm/esp_cache.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_cache.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_mm/esp_mmu_map.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_mmu_map.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/esp_netif_defaults.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_defaults.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/esp_netif_handlers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_handlers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/esp_netif_objects.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_objects.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_partition/partition.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_partition/partition_target.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition_target.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_pm/pm_impl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_impl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_pm/pm_locks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_locks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_pm/pm_trace.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_trace.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_ringbuf/ringbuf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/ringbuf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/crosscore_int.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/crosscore_int.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/debug_stubs.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/debug_stubs.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/esp_err.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_err.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/esp_ipc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_ipc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/esp_system.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_system.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/freertos_hooks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/freertos_hooks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/int_wdt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/int_wdt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/panic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/panic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/stack_check.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/stack_check.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/startup.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/startup.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/system_time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/system_time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/ubsan.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ubsan.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/xt_wdt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/xt_wdt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-openocd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-openocd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/app_startup.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/app_startup.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/heap_idf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/heap_idf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/port_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/port_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/adc_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/adc_hal_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/adc_oneshot_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_oneshot_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/aes_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/aes_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/brownout_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/brownout_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/cache_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/cache_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/ds_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ds_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/efuse_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/efuse_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/gdma_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gdma_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/gpio_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gpio_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/hmac_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/hmac_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/i2c_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/i2c_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/i2s_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2s_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/lcd_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/lcd_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/ledc_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/ledc_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/mcpwm_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mcpwm_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/mmu_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mmu_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/mpu_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mpu_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/pcnt_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/pcnt_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/rmt_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rmt_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/rtc_io_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rtc_io_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/sdm_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sdm_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/sha_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sha_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_flash_encrypt_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_encrypt_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_flash_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_flash_hal_gpspi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_gpspi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_flash_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_slave_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_slave_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/spi_slave_hd_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hd_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/systimer_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/systimer_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/timer_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/timer_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/touch_sensor_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/touch_sensor_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/twai_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/twai_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/uart_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/uart_hal_iram.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal_iram.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/usb_dwc_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_dwc_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/usb_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/usb_phy_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_phy_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/xt_wdt_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/xt_wdt_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/heap_caps.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/heap_caps_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/multi_heap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/multi_heap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/http_parser/http_parser.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser/http_parser.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/log/log.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/log/log_buffers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_buffers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/log/log_freertos.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_freertos.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/abort.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/abort.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/assert.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/assert.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/heap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/heap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/locks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/locks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/newlib_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/newlib_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/poll.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/poll.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/pthread.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/pthread.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/random.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/random.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/realpath.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/realpath.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/reent_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/reent_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/stdatomic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/stdatomic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/syscalls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/syscalls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/sysconf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/sysconf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/termios.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/termios.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/perfmon/xtensa_perfmon_access.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_access.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/perfmon/xtensa_perfmon_apis.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_apis.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/perfmon/xtensa_perfmon_masks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_masks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/pthread/pthread.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/pthread/pthread_cond_var.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_cond_var.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/pthread/pthread_local_storage.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_local_storage.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/pthread/pthread_rwlock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_rwlock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/pthread/pthread_semaphore.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_semaphore.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_cmd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_cmd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_io.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_io.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_mmc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_mmc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/sdmmc/sdmmc_sd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_sd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/dport_access_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/dport_access_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/lldesc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/lldesc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/cache_utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/cache_utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/esp_flash_api.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_api.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/esp_flash_spi_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_spi_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/flash_brownout_hook.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_brownout_hook.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/flash_mmap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_mmap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/flash_ops.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_ops.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/memspi_host_driver.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/memspi_host_driver.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_boya.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_boya.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_drivers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_drivers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_gd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_gd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_generic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_generic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_issi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_issi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_mxic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_mxic_opi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic_opi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_th.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_th.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_chip_winbond.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_winbond.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_hpm_enable.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_hpm_enable.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_os_func_app.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_app.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_os_func_noos.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_noos.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/spi_flash_wrap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_wrap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/esp_spiffs.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/esp_spiffs.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs_api.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs_api.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/tcp_transport/transport.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/tcp_transport/transport_internal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_internal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/tcp_transport/transport_socks_proxy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_socks_proxy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/tcp_transport/transport_ssl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ssl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/tcp_transport/transport_ws.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ws.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/touch_element/touch_button.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_button.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/touch_element/touch_element.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_element.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/touch_element/touch_matrix.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_matrix.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/touch_element/touch_slider.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_slider.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity_port_esp32.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_port_esp32.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity_runner.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_runner.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity_utils_cache.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_cache.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity_utils_freertos.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_freertos.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity_utils_memory.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_memory.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/hcd_dwc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hcd_dwc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/hub.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hub.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/usb_helpers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_helpers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/usb_host.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_host.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/usb_phy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_phy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/usb_private.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_private.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/usb/usbh.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usbh.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs_console.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_console.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs_eventfd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_eventfd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs_semihost.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_semihost.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs_uart.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_uart.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/vfs/vfs_usb_serial_jtag.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_usb_serial_jtag.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/Partition.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Partition.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/SPI_Flash.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/SPI_Flash.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/WL_Ext_Perf.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Perf.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/WL_Ext_Safe.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Safe.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/WL_Flash.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Flash.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/crc32.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/crc32.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wear_levelling/wear_levelling.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/wear_levelling.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/xtensa/eri.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/eri.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/xtensa/xt_trax.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xt_trax.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/xtensa/xtensa_intr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/xtensa/xtensa_intr_asm.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr_asm.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/app_trace/port/port_uart.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/port_uart.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_clock_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_common_loader.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common_loader.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_efuse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_efuse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_mem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_mem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_random.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_random_esp32s3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random_esp32s3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/bootloader_utility.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_utility.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/esp_image_format.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp_image_format.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/flash_encrypt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_encrypt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/flash_partitions.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_partitions.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/secure_boot.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/secure_boot.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_cmd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_cmd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_date.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_date.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_dbl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dbl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_dstr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dstr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_end.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_end.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_file.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_file.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_hashtable.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_hashtable.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_int.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_int.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_lit.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_lit.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_rem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_rex.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rex.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_str.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_str.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/arg_utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/argtable3/argtable3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/argtable3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/console/linenoise/linenoise.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/linenoise/linenoise.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/adc_dma_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_dma_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/adc_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/i2s_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/i2s_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/mcpwm_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/mcpwm_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/pcnt_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/pcnt_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/rmt_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rmt_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/rtc_temperature_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rtc_temperature_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/sigma_delta_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/sigma_delta_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/deprecated/timer_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/timer_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gpio/dedic_gpio.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/dedic_gpio.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gpio/gpio.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gpio/gpio_glitch_filter_ops.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_glitch_filter_ops.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gpio/gpio_pin_glitch_filter.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_pin_glitch_filter.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gpio/rtc_io.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/rtc_io.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gptimer/gptimer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/gptimer/gptimer_priv.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer_priv.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/i2c/i2c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/i2c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/i2s/i2s_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/i2s/i2s_pdm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_pdm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/i2s/i2s_std.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_std.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/i2s/i2s_tdm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_tdm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/ledc/ledc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/ledc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_cap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_cmpr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cmpr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_com.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_com.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_fault.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_fault.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_gen.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_gen.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_oper.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_oper.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_sync.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_sync.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/mcpwm/mcpwm_timer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_timer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/pcnt/pulse_cnt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/pulse_cnt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/rmt/rmt_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/rmt/rmt_encoder.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_encoder.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/rmt/rmt_rx.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_rx.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/rmt/rmt_tx.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_tx.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/sdmmc/sdmmc_host.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_host.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/sdmmc/sdmmc_transaction.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_transaction.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/sigma_delta/sdm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/sdm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/spi_bus_lock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/spi_bus_lock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/temperature_sensor/temperature_sensor.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/temperature_sensor.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/touch_sensor/touch_sensor_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/touch_sensor_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/twai/twai.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/twai.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/uart/uart.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/uart.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/usb_serial_jtag/usb_serial_jtag.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/usb_serial_jtag/usb_serial_jtag_connection_monitor.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag_connection_monitor.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/esp32s3/esp_efuse_fields.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_fields.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/esp32s3/esp_efuse_rtc_calib.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_rtc_calib.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/esp32s3/esp_efuse_table.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/esp32s3/esp_efuse_utility.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_utility.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/src/esp_efuse_api.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_api.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/src/esp_efuse_fields.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_fields.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/src/esp_efuse_utility.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_utility.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp-tls/esp-tls-crypto/esp_tls_crypto.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/deprecated/esp_adc_cal_common_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/esp32s3/curve_fitting_coefficients.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/curve_fitting_coefficients.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_coex/esp32s3/esp_coex_adapter.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/esp32s3/esp_coex_adapter.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_common/src/esp_err_to_name.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/src/esp_err_to_name.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_eth/src/esp_eth.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_eth/src/esp_eth_netif_glue.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_netif_glue.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_eth/src/esp_eth_phy_802_3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_phy_802_3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/gdbstub.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/gdbstub_transport.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub_transport.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/packet.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/packet.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hid/src/esp_hid_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hid_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hid/src/esp_hidd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hid/src/esp_hidh.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidh.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_client/lib/http_auth.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_auth.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_client/lib/http_header.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_header.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_client/lib/http_utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_main.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_main.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_parse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_parse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_sess.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_sess.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_txrx.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_txrx.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_uri.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_uri.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/httpd_ws.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_ws.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_https_ota/src/esp_https_ota.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/src/esp_https_ota.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/dma/async_memcpy_impl_gdma.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/async_memcpy_impl_gdma.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/dma/esp_async_memcpy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/esp_async_memcpy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/dma/gdma.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/gdma.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp_clk_tree_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_clk_tree_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp_memprot_conv.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_memprot_conv.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_io.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_io_i2c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i2c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_io_i80.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i80.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_io_spi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_spi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_nt35510.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_nt35510.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_ops.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ops.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_rgb.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_rgb.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_ssd1306.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ssd1306.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_lcd/src/esp_lcd_panel_st7789.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_st7789.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_local_ctrl/src/esp_local_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_local_ctrl/src/esp_local_ctrl_handler.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_handler.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/esp_netif_lwip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/esp_netif_lwip_defaults.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip_defaults.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/esp_netif_sntp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_sntp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_phy/src/btbb_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/btbb_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_phy/src/lib_printf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/lib_printf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_phy/src/phy_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_phy/src/phy_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_phy/src/phy_override.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_override.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_crc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_crc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_efuse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_efuse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_longjmp.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_longjmp.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_spiflash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_spiflash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_sys.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_sys.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_systimer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_systimer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_uart.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_uart.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_rom/patches/esp_rom_wdt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_wdt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/brownout.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/brownout.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/cpu_start.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/cpu_start.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/esp_system_chip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/esp_system_chip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/panic_handler.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/panic_handler.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_timer/src/esp_timer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_timer/src/esp_timer_impl_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_timer/src/esp_timer_impl_systimer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_systimer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_timer/src/ets_timer_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/ets_timer_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_timer/src/system_time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/system_time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/esp32s3/esp_adapter.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/esp32s3/esp_adapter.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/mesh_event.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/mesh_event.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/smartconfig.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/smartconfig_ack.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig_ack.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/wifi_default.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/wifi_default_ap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default_ap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/wifi_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_wifi/src/wifi_netif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_netif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_binary.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_binary.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_checksum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_checksum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_elf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_elf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_flash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_flash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/core_dump_uart.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_uart.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/diskio/diskio.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/diskio/diskio_rawflash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_rawflash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/diskio/diskio_sdmmc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_sdmmc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/diskio/diskio_wl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_wl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/src/ff.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ff.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/src/ffunicode.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ffunicode.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/vfs/vfs_fat.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/vfs/vfs_fat_sdmmc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_sdmmc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/vfs/vfs_fat_spiflash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_spiflash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/croutine.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/croutine.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/event_groups.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/event_groups.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/list.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/list.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/queue.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/queue.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/stream_buffer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/stream_buffer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/tasks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/tasks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/timers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/timers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/esp_additions/freertos_v8_compat.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/freertos_v8_compat.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/esp_additions/idf_additions.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/idf_additions.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/esp32s3/clk_tree_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/clk_tree_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/esp32s3/efuse_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/efuse_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/esp32s3/rtc_cntl_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/rtc_cntl_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/hal/esp32s3/touch_sensor_hal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/touch_sensor_hal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/port/memory_layout_utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/memory_layout_utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/tlsf/tlsf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/tlsf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/json/cJSON/cJSON.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/json/cJSON/cJSON_Utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON_Utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/sockets_ext.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/sockets_ext.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/esp_crt_bundle/esp_crt_bundle.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_bignum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_bignum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_hardware.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_hardware.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_mem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_mem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_platform_time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_platform_time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_timing.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_timing.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/mbedtls_debug.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/mbedtls_debug.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/net_sockets.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/net_sockets.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mqtt/esp-mqtt/mqtt_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/mqtt_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/newlib/port/esp_time_impl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port/esp_time_impl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_api.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_api.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_cxx_api.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_cxx_api.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_handle_locked.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_locked.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_handle_simple.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_simple.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_item_hash_list.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_item_hash_list.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_page.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_page.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_pagemanager.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_pagemanager.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_partition.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_partition_lookup.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_lookup.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_partition_manager.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_manager.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_storage.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_storage.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/nvs_flash/src/nvs_types.cpp</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_types.cpp</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/proto-c/constants.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/constants.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/proto-c/sec0.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec0.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/proto-c/sec1.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec1.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/proto-c/sec2.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec2.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/proto-c/session.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/session.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/adc_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/adc_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/dedic_gpio_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/dedic_gpio_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/gdma_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gdma_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/gpio_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gpio_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/i2c_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2c_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/i2s_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2s_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/interrupts.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/interrupts.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/lcd_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/lcd_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/ledc_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ledc_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/mcpwm_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/mcpwm_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/pcnt_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/pcnt_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/rmt_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rmt_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/rtc_io_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rtc_io_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/sdm_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdm_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/sdmmc_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdmmc_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/spi_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/spi_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/temperature_sensor_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/temperature_sensor_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/timer_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/timer_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/touch_sensor_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/touch_sensor_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/twai_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/twai_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/uart_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/uart_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/usb_otg_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_otg_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/soc/esp32s3/usb_periph.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_periph.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spi_flash/esp32s3/spi_flash_oct_flash_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/ulp/ulp_common/ulp_adc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_adc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/ulp/ulp_common/ulp_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/proto-c/wifi_config.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_config.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/proto-c/wifi_constants.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/proto-c/wifi_scan.pb-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/handlers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/handlers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/manager.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/manager.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/scheme_console.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_console.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/scheme_softap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_softap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/wifi_config.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_config.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/wifi_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wifi_provisioning/src/wifi_scan.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_scan.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/port/eloop.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/eloop.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/port/os_xtensa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/os_xtensa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/bootloader_flash/src/bootloader_flash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/bootloader_flash/src/flash_qio_mode.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/bootloader_support/src/idf/bootloader_sha.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/idf/bootloader_sha.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/cmock/CMock/src/cmock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src/cmock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/gpspi/spi_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/gpspi/spi_master.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_master.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/gpspi/spi_slave.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/gpspi/spi_slave_hd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave_hd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/sdspi/sdspi_crc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_crc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/sdspi/sdspi_host.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_host.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/spi/sdspi/sdspi_transaction.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_transaction.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/driver/touch_sensor/esp32s3/touch_sensor.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/touch_sensor.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_http_server/src/util/ctrl_sock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util/ctrl_sock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/chip_info.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/chip_info.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/cpu_region_protect.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/cpu_region_protect.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/esp_clk_tree.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_clk_tree.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/esp_crypto_lock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_crypto_lock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/esp_memprot.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_memprot.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/io_mux.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/io_mux.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/mspi_timing_config.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/mspi_timing_config.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/rtc_clk.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/rtc_clk_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/rtc_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/rtc_sleep.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_sleep.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/rtc_time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_hw_support/port/esp32s3/systimer.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/systimer.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_mm/port/esp32s3/ext_mem_layout.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/port/esp32s3/ext_mem_layout.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/netif/esp_pbuf_ref.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/esp_pbuf_ref.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/netif/ethernetif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/ethernetif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_netif/lwip/netif/wlanif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/wlanif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/fatfs/port/freertos/ffsystem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/port/freertos/ffsystem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/port_systick.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/port_systick.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/heap/port/esp32s3/memory_layout.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/esp32s3/memory_layout.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/apps/dhcpserver/dhcpserver.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/dhcpserver/dhcpserver.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/apps/ping/esp_ping.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/esp_ping.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/apps/ping/ping.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/apps/ping/ping_sock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping_sock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/apps/sntp/sntp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/sntp/sntp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/debug/lwip_debug.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/debug/lwip_debug.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/esp32xx/vfs_lwip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/vfs_lwip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/freertos/sys_arch.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/sys_arch.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/hooks/lwip_default_hooks.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/lwip_default_hooks.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/port/hooks/tcp_isn_default.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/tcp_isn_default.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/aes.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aes.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/aesce.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aesce.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/aesni.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aesni.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/aria.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aria.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/asn1parse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/asn1parse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/asn1write.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/asn1write.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/base64.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/base64.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/bignum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/bignum_core.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_core.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/bignum_mod.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_mod.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/bignum_mod_raw.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_mod_raw.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/camellia.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/camellia.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ccm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ccm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/chacha20.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/chacha20.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/chachapoly.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/chachapoly.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/cipher.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cipher.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/cipher_wrap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cipher_wrap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/cmac.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cmac.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/constant_time.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/constant_time.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ctr_drbg.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ctr_drbg.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/debug.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/debug.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/des.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/des.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/dhm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/dhm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecdh.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecdh.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecdsa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecdsa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecjpake.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecjpake.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecp_curves.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp_curves.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ecp_curves_new.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp_curves_new.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/entropy.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/entropy.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/entropy_poll.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/entropy_poll.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/error.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/error.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/gcm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/gcm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/hkdf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/hkdf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/hmac_drbg.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/hmac_drbg.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/lmots.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/lmots.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/lms.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/lms.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/md.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/md.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/md5.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/md5.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/memory_buffer_alloc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/memory_buffer_alloc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/mps_reader.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/mps_reader.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/mps_trace.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/mps_trace.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/nist_kw.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/nist_kw.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/oid.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/oid.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/padlock.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/padlock.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pk.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pk.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pk_wrap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pk_wrap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pkcs12.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs12.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pkcs5.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs5.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pkcs7.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs7.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pkparse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkparse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/pkwrite.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkwrite.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/platform.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/platform.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/platform_util.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/platform_util.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/poly1305.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/poly1305.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_aead.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_aead.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_cipher.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_cipher.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_ecp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_ecp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_ffdh.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_hash.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_hash.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_mac.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_mac.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_pake.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_pake.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_rsa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_rsa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_se.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_se.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_slot_management.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_crypto_storage.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_storage.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_its_file.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_its_file.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/psa_util.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_util.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ripemd160.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ripemd160.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/rsa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/rsa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/rsa_alt_helpers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/rsa_alt_helpers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/sha1.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha1.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/sha256.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha256.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/sha3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/sha512.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha512.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_cache.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_cache.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_ciphersuites.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_ciphersuites.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_cookie.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_cookie.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_msg.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_msg.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_ticket.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_ticket.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls12_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls12_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls12_server.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls12_server.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls13_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls13_generic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_generic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls13_keys.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_keys.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/ssl_tls13_server.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_server.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/threading.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/threading.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/timing.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/timing.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/version.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/version_features.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version_features.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509_create.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_create.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509_crl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_crl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509_crt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_crt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509_csr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_csr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509write.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509write_crt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write_crt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/library/x509write_csr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write_csr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/aes/esp_aes_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/aes/esp_aes_gcm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_gcm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/aes/esp_aes_xts.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_xts.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp32s3/bignum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp32s3/bignum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/md/esp_md.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/md/esp_md.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/esp_sha.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/esp_sha.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mqtt/esp-mqtt/lib/mqtt_msg.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_msg.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mqtt/esp-mqtt/lib/mqtt_outbox.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_outbox.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mqtt/esp-mqtt/lib/platform_esp32_idf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/common/protocomm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common/protocomm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/security/security0.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security0.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/security/security1.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security1.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/security/security2.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security2.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/transports/protocomm_console.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_console.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/transports/protocomm_httpd.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_httpd.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs/src/spiffs_cache.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_cache.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs/src/spiffs_check.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_check.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs/src/spiffs_gc.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_gc.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs/src/spiffs_hydrogen.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_hydrogen.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/spiffs/spiffs/src/spiffs_nucleus.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_nucleus.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/port/esp/unity_utils_memory_esp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/port/esp/unity_utils_memory_esp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/unity/unity/src/unity.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src/unity.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_hostap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_owe.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_owe.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_scan.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_scan.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/esp_wps.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wps.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/ap_config.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ap_config.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/comeback_token.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/comeback_token.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/ieee802_11.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_11.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/ieee802_1x.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_1x.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/pmksa_cache_auth.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/pmksa_cache_auth.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/sta_info.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/sta_info.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/wpa_auth.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/ap/wpa_auth_ie.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth_ie.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/bss.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/bss.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/dragonfly.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/dragonfly.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/ieee802_11_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/ieee802_11_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/sae.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/sae_pk.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae_pk.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/scan.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/scan.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/common/wpa_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/wpa_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/aes-ccm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-ccm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/aes-gcm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-gcm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/aes-siv.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-siv.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/aes-unwrap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-unwrap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/aes-wrap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-wrap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/ccmp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ccmp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/crypto_ops.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/crypto_ops.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/des-internal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/des-internal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/dh_group5.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_group5.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/dh_groups.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_groups.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/md4-internal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/md4-internal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/ms_funcs.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ms_funcs.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/rc4.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/rc4.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha1-prf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-prf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha1-tlsprf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tlsprf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha1-tprf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tprf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha256-kdf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-kdf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha256-prf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-prf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha256-tlsprf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-tlsprf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha384-prf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-prf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/crypto/sha384-tlsprf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-tlsprf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_common/eap_wsc_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_common/eap_wsc_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/chap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/chap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_fast.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_fast_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_fast_pac.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_mschapv2.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_peap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_peap_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_tls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_tls_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/eap_ttls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_ttls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/eap_peer/mschapv2.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/mschapv2.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/rsn_supp/pmksa_cache.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/rsn_supp/wpa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/rsn_supp/wpa_ie.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa_ie.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/base64.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/base64.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/bitfield.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/bitfield.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/ext_password.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/ext_password.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/json.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/json.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/uuid.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/uuid.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/wpa_debug.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpa_debug.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/utils/wpabuf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpabuf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_attr_build.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_build.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_attr_parse.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_parse.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_attr_process.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_process.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_common.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_common.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_dev_attr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_dev_attr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/src/wps/wps_enrollee.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_enrollee.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_gdbstub/src/port/xtensa/xt_debugexception.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/debug_helpers.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/debug_helpers_asm.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers_asm.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/debug_stubs.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_stubs.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/esp_ipc_isr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/expression_with_stack.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/expression_with_stack_asm.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/panic_arch.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_arch.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/panic_handler_asm.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_handler_asm.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/arch/xtensa/trax.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/trax.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/apb_backup_dma.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/apb_backup_dma.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/cache_err_int.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/cache_err_int.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/clk.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/clk.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/highint_hdl.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/highint_hdl.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/reset_reason.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/reset_reason.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/esp_system/port/soc/esp32s3/system_internal.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/system_internal.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/espcoredump/src/port/xtensa/core_dump_port.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/port/xtensa/core_dump_port.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/api_lib.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_lib.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/api_msg.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_msg.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/err.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/err.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/if_api.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/if_api.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/netbuf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netbuf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/netdb.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netdb.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/netifapi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netifapi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/sockets.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/sockets.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/api/tcpip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/tcpip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/def.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/def.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/dns.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/dns.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/inet_chksum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/inet_chksum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/init.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/init.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/mem.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/mem.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/memp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/memp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/netif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/netif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/pbuf.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/pbuf.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/raw.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/raw.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/stats.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/stats.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/sys.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/sys.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/tcp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/tcp_in.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_in.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/tcp_out.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_out.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/timeouts.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/timeouts.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/udp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/udp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/bridgeif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/bridgeif_fdb.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif_fdb.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ethernet.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ethernet.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/slipif.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/slipif.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/aes/dma/esp_aes.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/dma/esp_sha1.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha1.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/dma/esp_sha256.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha256.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/dma/esp_sha512.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha512.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/port/sha/dma/sha.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/sha.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/crypto/srp6a/esp_srp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/protocomm/src/crypto/srp6a/esp_srp_mpi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/apps/netbiosns/netbiosns.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/netbiosns/netbiosns.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/apps/sntp/sntp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/sntp/sntp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/autoip.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/autoip.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/dhcp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/dhcp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/etharp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/etharp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/icmp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/icmp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/igmp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/igmp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/ip4.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/ip4_addr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_addr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/ip4_frag.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_frag.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv4/ip4_napt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_napt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/dhcp6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/dhcp6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/ethip6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ethip6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/icmp6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/icmp6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/inet6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/inet6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/ip6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/ip6_addr.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_addr.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/ip6_frag.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_frag.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/mld6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/mld6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/core/ipv6/nd6.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/nd6.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/auth.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/auth.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/ccp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ccp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/chap-md5.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-md5.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/chap-new.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-new.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/chap_ms.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap_ms.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/demand.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/demand.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/eap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/ecp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ecp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/eui64.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eui64.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/fsm.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/fsm.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/ipcp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipcp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/ipv6cp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipv6cp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/lcp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/lcp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/magic.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/magic.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/mppe.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/mppe.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/multilink.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/multilink.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/ppp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ppp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/pppapi.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppapi.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/pppcrypt.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppcrypt.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/pppoe.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppoe.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/pppol2tp.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppol2tp.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/pppos.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppos.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/upap.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/upap.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/utils.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/utils.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/lwip/lwip/src/netif/ppp/vj.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/vj.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/3rdparty/everest/library/everest.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c</location>\n\t\t</link>\n\t\t<link>\n\t\t\t<name>build/ide/esp_idf_components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c</name>\n\t\t\t<type>1</type>\n\t\t\t<location>C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c</location>\n\t\t</link>\n\t</linkedResources>\n</projectDescription>\n"
  },
  {
    "path": "Code/CMakeLists.txt",
    "content": "# The following lines of boilerplate have to be in your project's CMakeLists\n# in this exact order for cmake to work correctly\ncmake_minimum_required(VERSION 3.5)\n\ninclude($ENV{IDF_PATH}/tools/cmake/project.cmake)\nproject(main)\n\n# Create a SPIFFS image from the contents of the 'font' directory\n# that fits the partition named 'storage'. FLASH_IN_PROJECT indicates that\n# the generated image should be flashed when the entire project is flashed to\n# the target with 'idf.py -p PORT flash\nspiffs_create_partition_image(storage font FLASH_IN_PROJECT)\n\n"
  },
  {
    "path": "Code/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 nopnop2002\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Code/README.md",
    "content": "# esp-idf-st7789\nST7789 Driver for esp-idf\n\nThe demo video by Dmitry Andreev.   \nhttps://www.youtube.com/watch?v=aOyaK0pUiPk&t\n\n# Software requirements\nESP-IDF V4.4/V5.x.   \n\n# Installation for ESP-IDF V4.4\n```Shell\ngit clone -b v4.4 https://github.com/nopnop2002/esp-idf-st7789\ncd esp-idf-st7789/\nidf.py set-target {esp32/esp32s2/esp32s3/esp32c3}\nidf.py menuconfig\nidf.py flash\n```\n\n__Note for ESP32-S2__   \nThe tjpgd library is not included in the ESP32-S2 ROM because the ROM of the ESP32-S2 is small.   \nTherefore, JPEG files cannot be displayed.   \n\n__Note for ESP32-C3__   \nFor some reason, there are development boards that cannot use GPIO06, GPIO08, GPIO09, GPIO19 for SPI clock pins.   \nAccording to the ESP32-C3 specifications, these pins can also be used as SPI clocks.   \nI used a raw ESP-C3-13 to verify that these pins could be used as SPI clocks.   \n\n\n# Installation for ESP-IDF V5.x\n\n```Shell\ngit clone https://github.com/nopnop2002/esp-idf-st7789\ncd esp-idf-st7789/\nidf.py set-target {esp32/esp32s2/esp32s3/esp32c2/esp32c3/esp32c6}\nidf.py menuconfig\nidf.py flash\n```\n\n__Note for ESP32-S2/ESP32-C2__   \nThe tjpgd library is not included in the ESP32-S2/ESP32-C2 ROM.   \nHowever, you can use [this](https://components.espressif.com/components/espressif/esp_jpeg) IDF component registry.   \nJPEG files can be displayed.   \n\n__Note for ESP32-C6__   \nESP-IDF V5.1 is required when using ESP32-C6.   \n\n# Configuration   \n\n![config-top](https://user-images.githubusercontent.com/6020549/202874786-d0072c20-9313-4095-babd-1e6a33075e4e.jpg)\n\n# Generic ST7789 1.3 Inch\n\nThere is 2 kinds of marking.   \nThe pin marking is written as SCL/SDA, so it looks like i2c, but it is SPI.   \nSCL is SCLK, SDA is MOSI.   \n![st7789-back](https://user-images.githubusercontent.com/6020549/59020150-5f73dc80-8884-11e9-8272-99525f956b9d.JPG)\n\n![config-240x240](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/e667b538-df87-481f-9028-49ac1fd03ad0)\n\n__MISO is not use.__   \n\n![st7789-1](https://user-images.githubusercontent.com/6020549/58755161-fce3af00-8518-11e9-8833-2c90ffe4be42.JPG)\n![st7789-2](https://user-images.githubusercontent.com/6020549/58755162-fce3af00-8518-11e9-97cb-32502d1a7206.JPG)\n![st7789-3](https://user-images.githubusercontent.com/6020549/58755163-fd7c4580-8518-11e9-8491-ff0927f3fc15.JPG)\n![st7789-4](https://user-images.githubusercontent.com/6020549/58755164-fd7c4580-8518-11e9-8760-90f3d8fb6fdf.JPG)\n![st7789-5](https://user-images.githubusercontent.com/6020549/58755165-fd7c4580-8518-11e9-945d-0066d78be413.JPG)\n![st7789-6](https://user-images.githubusercontent.com/6020549/58755166-fd7c4580-8518-11e9-81ae-7a8b56f57bb2.JPG)\n![st7789-7](https://user-images.githubusercontent.com/6020549/58755167-fe14dc00-8518-11e9-97d5-66ddc6c59738.JPG)\n![st7789-8](https://user-images.githubusercontent.com/6020549/58755168-fe14dc00-8518-11e9-9c25-4be71ac4943c.JPG)\n![st7789-9](https://user-images.githubusercontent.com/6020549/58755159-fce3af00-8518-11e9-9548-062fad44d0c9.JPG)\n![st7789-10](https://user-images.githubusercontent.com/6020549/58755160-fce3af00-8518-11e9-8ced-813b7e6cc06f.JPG)\n\nBMP file   \n![st7789-11](https://user-images.githubusercontent.com/6020549/72672303-56deb800-3a9b-11ea-8c64-bee19fb6771c.JPG)\n\nJPEG file(ESP32/ESP32S2/ESP32C3)   \n![st7789-JPEG](https://user-images.githubusercontent.com/6020549/78464976-3255bc00-772b-11ea-9d5a-328754430489.JPG)\n\nPNG file   \n![st7789-PNG](https://user-images.githubusercontent.com/6020549/78632596-64f1e700-78da-11ea-96bd-c773ff8de4a2.JPG)\n\nQR-CODE   \n![st7789-QRCODE](https://user-images.githubusercontent.com/6020549/181865160-a872ac62-35d3-4e40-87ff-f81b6847f69d.JPG)\n\n\n# Generic ST7789 1.14 Inch\n\n![st7789-135x240-2](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/fd10b6db-27b1-496d-97ee-2f8f9af5f660)\n![st7789-135x240-1](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/86d31590-7c35-413c-8dfc-c73509a0e12f)\n\n\n# Generic ST7789 1.9 Inch\n\n![st7789-170x320-1](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/99db2a5f-c64c-497f-94a3-dc3268d86f41)\n![st7789-170x320-2](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/2ce847ef-00ee-406d-bf9c-e6d41c53f01d)\n![st7789-170x320-3](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/b1dad0db-4896-4cf5-a0ae-2410998110f7)\n![config](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/b5f03dcc-a3a0-4fbe-b015-96d0250682c7)\n\n\n# Generic ST7789 2.0 Inch\n\n![st778-240x320-1](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/e497d802-5d6a-4a91-8827-cfeb0e0ec6ad)\n![st778-240x320-2](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/18bda7f0-c6a1-4d75-a2c8-b73d14dc4773)\n![st778-240x320-3](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/7b2f39df-6fc6-44d3-b0e7-8776573035b3)\n![st778-240x320-5](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/2e818cf5-042e-48bb-ae23-d1e68cb1e07a)\n\n\n# SPI BUS selection   \n![config-spi-bus](https://user-images.githubusercontent.com/6020549/202875013-ad2ce3d4-6a2b-458b-9542-f3a17e79d5b1.jpg)\n\nThe ESP32 series has three SPI BUSs.   \nSPI1_HOST is used for communication with Flash memory.   \nYou can use SPI2_HOST and SPI3_HOST freely.   \nWhen you use SDSPI(SD Card via SPI), SDSPI uses SPI2_HOST BUS.   \nWhen using this module at the same time as SDSPI or other SPI device using SPI2_HOST, it needs to be changed to SPI3_HOST.   \nWhen you don't use SDSPI, both SPI2_HOST and SPI3_HOST will work.   \nPreviously it was called HSPI_HOST / VSPI_HOST, but now it is called SPI2_HOST / SPI3_HOST.   \n\n# Using Frame Buffer   \n![config-frame-buffer](https://github.com/nopnop2002/esp-idf-st7789/assets/6020549/5fe48143-fa91-408e-b62a-be3f5c16bd37)\n\nWhen FrameBuffer is enabled, all output will be stored in the internal FrameBuffer and reflected to the device with ```lcdDrawFinish```.   \nIf you don't use FrameBuffer, ```lcdDrawFinish``` does nothing.   \nIf your main purpose is to display text, it's well worth using FrameBuffer.   \nIf your main purpose is to display images, there is no value in using FrameBuffer.   \nEnabling FrameBuffer does not make image display faster.   \nThis is because image analysis takes time.   \n___ESP32C2 has too small memory to use this function.___   \n___Note that using FrameBuffer consumes memory.___   \n\nBenchmarking using ESP32 & 1.3 inch TFT   \n\n||Without Frame Buffer|With Frame Buffer|\n|:-:|:-:|:-:|\n|FillTest|1150|1150|\n|ColorBarTest|50|70|\n|ArrowTest|280|60|\n|LineTest|2190|50|\n|CircleTest|1940|60|\n|RoundRectTest|1980|50|\n|DirectionTest|450|70|\n|HorizontalTest|1070|70|\n|VerticalTest|1070|70|\n|FillRectTest|190|60|\n|ColorTest|260|60|\n|CodeTest|1070|100|\n|BMPTest|7160|7060|\n|JPEGTest|2550|2550|\n|PNGTest|2850|2840|\n|QRTest|220|120|\n\n\n\n# LILYGO TTGO 1.14 Inch ESP32\n\n![ttgo-1](https://user-images.githubusercontent.com/6020549/202874897-9d06ddf2-b392-44a0-aea1-55884767c9f0.jpg)\n![ttgo-2](https://user-images.githubusercontent.com/6020549/202874898-80e4a195-b690-4425-8bb9-94346533ce5a.JPG)\n\n\n# LILYGO TTGO T8 ESP32-S2\n\n![TTGO_T8_ESP32-S2-1](https://user-images.githubusercontent.com/6020549/202875184-6c3890a6-d20a-4f35-8bdd-0c4a980159a7.jpg)\n![TTGO_T8_ESP32-S2-2](https://user-images.githubusercontent.com/6020549/100829356-82487680-34a4-11eb-9a1f-d132ba278ad2.JPG)\n\n\n\n# JPEG Decoder   \nThe ESP-IDF component includes Tiny JPEG Decompressor.   \nThe document of Tiny JPEG Decompressor is [here](http://elm-chan.org/fsw/tjpgd/00index.html).   \nThis can reduce the image to 1/2 1/4 1/8.   \n\n\n# PNG Decoder   \nThe ESP-IDF component includes part of the miniz library, such as mz_crc32.   \nBut it doesn't support all of the miniz.   \nThe document of miniz library is [here](https://github.com/richgel999/miniz).   \n\nAnd I ported the pngle library from [here](https://github.com/kikuchan/pngle).   \nThis can reduce the image to any size.   \n\n\n# Font File   \nYou can add your original fonts.   \nThe format of the font file is the FONTX format.   \nYour font file is put in font directory.   \nYour font file is uploaded to SPIFFS partition using meke flash.   \n\nPlease refer [this](http://elm-chan.org/docs/dosv/fontx_e.html) page about FONTX format.   \n\n\n# Font File Editor(FONTX Editor)   \n[There](http://elm-chan.org/fsw/fontxedit.zip) is a font file editor.   \nThis can be done on Windows 10.   \nDeveloper page is [here](http://elm-chan.org/fsw_e.html).   \n\n![FontxEditor](https://user-images.githubusercontent.com/6020549/78731275-3b889800-797a-11ea-81ba-096dbf07c4b8.png)\n\nThis library uses the following as default fonts:   \n- font/ILGH16XB.FNT // 8x16Dot Gothic\n- font/ILGH24XB.FNT // 12x24Dot Gothic\n- font/ILGH32XB.FNT // 16x32Dot Gothic\n- font/ILMH16XB.FNT // 8x16Dot Mincyo\n- font/ILMH24XB.FNT // 12x24Dot Mincyo\n- font/ILMH32XB.FNT // 16x32Dot Mincyo\n\nFrom 0x00 to 0x7f, the characters image of Alphanumeric are stored.   \nFrom 0x80 to 0xff, the characters image of Japanese are stored.   \nChanging this file will change the font.\n\n# How to build your own font file   \nstep1)   \ndownload fontxedit.exe.   \n\nstep2)   \ndownload BDF font file from Internet.   \nI downloaded from [here](https://github.com/fcambus/spleen).   \nfontxedit.exe can __ONLY__ import Monospaced bitmap fonts file.   \nMonospaced bitmap fonts can also be downloaded [here](https://github.com/Tecate/bitmap-fonts).\n\nstep3)   \nimport the BDF font file into your fontxedit.exe.   \nthis tool can convert from BDF to FONTX.   \n![FONTX-EDITTOR-1](https://user-images.githubusercontent.com/6020549/112736427-d7e5e900-8f95-11eb-80d5-11dd9df42903.jpg)\n\nstep4)   \nadjust font size.   \n![FONTX-EDITTOR-2](https://user-images.githubusercontent.com/6020549/112736434-e6cc9b80-8f95-11eb-8b8e-b523746c1c96.jpg)\n\nstep5)   \ncheck font pattern.   \n![FONTX-EDITTOR-13](https://user-images.githubusercontent.com/6020549/112746492-11e0da80-8fea-11eb-94f1-8d299b2dc756.jpg)\n\nstep6)   \nsave as .fnt file from your fontedit.exe.   \n![FONTX-EDITTOR-14](https://user-images.githubusercontent.com/6020549/112746501-2329e700-8fea-11eb-9a3a-4481c1a14ddc.jpg)\n\nstep7)   \nupload your font file to $HOME/esp-idf-st7789/fonts directory.   \n\nstep8)   \nadd font to use   \n```\nFontxFile fx32L[2];\nInitFontx(fx32L,\"/spiffs/LATIN32B.FNT\",\"\"); // 16x32Dot LATIN\n```\n\nFont file that From 0x80 to 0xff, the characters image of Japanese are stored.   \n![st7789-KANA](https://user-images.githubusercontent.com/6020549/112739904-205fcf80-8fb3-11eb-823c-5410570e068a.JPG)\n\nFont file that From 0x80 to 0xff, the characters image of Latin are stored.   \n![st7789-LATIN](https://user-images.githubusercontent.com/6020549/112739906-25248380-8fb3-11eb-960f-a483a7e078b5.JPG)\n\n# Add your color   \nChange here.   \n```\n#define RED    rgb565(255,   0,   0) // 0xf800\n#define GREEN  rgb565(  0, 255,   0) // 0x07e0\n#define BLUE   rgb565(  0,   0, 255) // 0x001f\n#define BLACK  rgb565(  0,   0,   0) // 0x0000\n#define WHITE  rgb565(255, 255, 255) // 0xffff\n#define GRAY   rgb565(128, 128, 128) // 0x8410\n#define YELLOW rgb565(255, 255,   0) // 0xFFE0\n#define CYAN   rgb565(  0, 156, 209) // 0x04FA\n#define PURPLE rgb565(128,   0, 128) // 0x8010\n```\n\n# External input module   \n\nYou can use these if you need some input.   \n- MPR121 Capacitive Touch switch   \nhttps://github.com/nopnop2002/esp-idf-mpr121\n\n- TTP229 Capacitive Touch switch   \nhttps://github.com/nopnop2002/esp-idf-ttp229\n\n\n# Gateway-ESP32-Smartwatch\n"
  },
  {
    "path": "Code/build/.bin_timestamp",
    "content": "a0e6584bf5d47c97ad71b89d1f8a51eb  C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\n"
  },
  {
    "path": "Code/build/.ninja_log",
    "content": "# ninja log v5\n1544\t2111\t7381311372176161\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj\t6d1f8830ff01b3ac\n19\t84\t7381311356969308\tproject_elf_src_esp32s3.c\tdd13366290cafc0f\n9307\t9960\t7381311449817022\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj\t12281550fd57b24f\n11180\t11863\t7381311468482166\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj\taf8b62f44bd86d8f\n873\t1431\t7381311365484475\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj\t2fae116340fdf88a\n37152\t37206\t7381311728424034\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-install\t5c8991367f68166\n4459\t5053\t7381311401319587\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj\t47a327d3cc71aeec\n19\t84\t7381311356969308\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/project_elf_src_esp32s3.c\tdd13366290cafc0f\n1178\t1754\t7381311368554752\tesp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj\ted1aaa7664c46ccc\n16511\t17115\t7381311521968462\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj\t405fde5a56991a5e\n11719\t12327\t7381311474059352\tesp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj\te69af07bd21196a4\n32\t137\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n193\t697\t7381311358810064\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj\t1e755158754e59d5\n12219\t12793\t7381311478909575\tesp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj\tcb9dbd211e8ca52c\n168\t667\t7381311358459985\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj\tc7aabeb977cdb729\n16118\t16713\t7381311517933832\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj\t18265e93e39ff927\n32\t137\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n16089\t16685\t7381311517688594\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj\tbb02ed5d33cf12ec\n29277\t29870\t7381311649604417\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj\td7940ca007693823\n576\t1175\t7381311362574743\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj\tde0cd8b9288629c1\n847\t1405\t7381311365214482\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj\t6fff0d439c0ba7f9\n29761\t30445\t7381311654395463\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj\tb7eca7c70e2a065e\n64\t167\t7381311358009986\tesp-idf/esp_system/ld/memory.ld\t6580aee9be5a1381\n13350\t13939\t7381311490330647\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj\tca91391924a69d32\n2934\t3545\t7381311386056223\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj\t5036ef1e414e6a29\n64\t167\t7381311358009986\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/memory.ld\t6580aee9be5a1381\n8448\t9015\t7381311441176970\tesp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj\tb3fffeb30b30b0fb\n810\t1374\t7381311364945385\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj\tfc6eac3e7b56c62c\n2508\t3118\t7381311381931591\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj\td7000f2fe5cb96b8\n1350\t1917\t7381311370217711\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj\t7f94e572f1898e1d\n224\t734\t7381311359015512\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj\td201376dc6fe8af7\n14884\t15449\t7381311505639020\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj\td83190f82d77b1f0\n12824\t13437\t7381311485042621\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj\t4c3773e2bb04258e\n1809\t2397\t7381311374816241\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj\td744655b8a7258ef\n7296\t7887\t7381311429702590\tesp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj\t653c8b21f674f0ee\n267\t807\t7381311359387494\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj\t47f471c71e049285\n5162\t7508\t7403416835705778\tmain.elf\t3a942194b5bb43f9\n13494\t14115\t7381311491714674\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj\t54c586608712f819\n1920\t2541\t7381311375987953\tesp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj\te27da6d644ddc279\n928\t1484\t7381311366049796\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj\td385b1556ea99e07\n10831\t11457\t7381311465014092\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj\t8dcfe7a2b1a77431\n1061\t1622\t7381311367335381\tesp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj\t1df83bf78b21d918\n2142\t2758\t7381311378193835\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj\tae2971ef0620e2a6\n2004\t2619\t7381311376773480\tesp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj\t9a316b613cd940b8\n246\t779\t7381311359235583\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj\t6132ca9a779f55a2\n16886\t17592\t7381311525624376\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj\t138a19b1cc7b9965\n28787\t29363\t7381311644597470\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj\t30fd5a9d0ba436ab\n289\t843\t7381311359687524\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj\t8c0f551cd1efbb1e\n9965\t10594\t7381311456498163\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj\t55b323a3b2ef7763\n26157\t26310\t7381311619435203\tx509_crt_bundle.S\t39fae335d6bfba84\n27470\t28058\t7381311631502124\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj\t35f7260275c13763\n8112\t8696\t7381311437878967\tesp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj\t1c90281f71f2e6df\n313\t870\t7381311359817530\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj\ta082afd1ad90b5da\n30986\t31562\t7381311666609858\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj\tc45c20653f91b5a6\n8761\t9304\t7381311444310297\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj\td6c88386ca88a95e\n1513\t2085\t7381311371920572\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj\td0e9ce30b7b448a7\n16689\t17385\t7381311523673957\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj\t492123cbab514364\n29933\t30646\t7381311656106675\tesp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj\t2b55632e8704a51a\n4621\t5214\t7381311403014480\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj\tfb6582d32c10825f\n23793\t23961\t7381311595942932\tesp-idf/esp_mm/libesp_mm.a\t6bd9eb973faf8c76\n333\t898\t7381311360093019\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj\t18637d07f4b3577e\n3907\t4510\t7381311395822236\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj\tdafa87a8d7cc0348\n3601\t4174\t7381311392726031\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj\t7389db06bd34fffc\n1408\t1974\t7381311370827588\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj\t59c55ccc0ae2634\n353\t925\t7381311360302968\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj\td738c36c56359ea5\n3256\t3850\t7381311389376075\tesp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj\t3042b877c53ec7d0\n11942\t12515\t7381311476230431\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj\t414761f183a32243\n41\t250\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n373\t951\t7381311360462974\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj\t6b3678d9a3442c83\n14400\t14986\t7381311500774262\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj\t448e9277642df607\n15536\t16114\t7381311512120596\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj\t4fc3c05dd72657c\n398\t975\t7381311360763371\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj\t2d402e36efd6d71f\n10221\t10855\t7381311458985261\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj\te6c791df82f9a053\n12189\t12761\t7381311478659564\tesp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj\t8440aace1ff4251c\n420\t999\t7381311360973565\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/mbedtls_debug.c.obj\td6cfad08cb0f011d\n51\t2451\t7381311357804553\tpartition_table/partition-table.bin\td16b08fae4e67776\n12357\t12938\t7381311480364928\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj\ta1c422ed05aed445\n1377\t1946\t7381311370537607\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj\td4037de17aa80a08\n1088\t1649\t7381311367565391\tesp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj\t4f467e396a10a434\n467\t1058\t7381311361359784\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj\t658310100c461d90\n28125\t28704\t7381311638053567\tesp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj\t42c5bd81149bd6e1\n19045\t19167\t7381311547143798\tesp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_adc.c.obj\te1e8a29fb3fd2972\n5828\t6503\t7381311415020332\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha1.c.obj\t69e5c2cad3c88ce2\n443\t1033\t7381311361269462\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/net_sockets.c.obj\tfab008e09b8f8dd6\n3205\t3798\t7381311388742678\tesp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj\t399dd3aa8012993\n31593\t32178\t7381311672712218\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj\tc8979186a27c057\n737\t1325\t7381311364295335\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj\t9442dd329d5e70c4\n488\t1084\t7381311361579795\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj\t10c2afa528598856\n1239\t1805\t7381311369111035\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj\t412c1a108d78a2ff\n782\t1347\t7381311364565350\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj\tcd23378ae5d4bd66\n17431\t18028\t7381311531103952\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj\tb36e8d87198a9dc\n509\t1107\t7381311361809462\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_platform_time.c.obj\t3cd072b14d936fde\n10096\t10724\t7381311457698582\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj\td9144ca0570b2cf2\n31158\t31762\t7381311668270677\tesp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj\t6e60614c3c06834b\n1268\t1833\t7381311369402488\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj\t95d181fe299f8a71\n27414\t28003\t7381311630896959\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj\t705bb56f7faab135\n26769\t27324\t7381311624469521\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_pin_glitch_filter.c.obj\te4ba24f79a9e666\n3936\t4537\t7381311396093358\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj\t63aea9b6b9162a8f\n26705\t27233\t7381311623793982\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj\t62bbf5d5e5ef09c0\n532\t1130\t7381311364765335\tesp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj\t9ea21909d5b7fbb7\n4276\t4876\t7381311399593250\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj\tba0314fd785887b\n4486\t5078\t7381311401649295\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj\t9897521c8c0b707a\n33233\t33403\t7381311690200526\tesp-idf/st7789/libst7789.a\t4fb2b1ab54e082c7\n553\t1152\t7381311362254675\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj\t51785bcccb130d7\n2677\t3284\t7381311383545618\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj\tf9ee95101953328c\n5466\t6148\t7381311411482608\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj\t8fbeba44e0d528e5\n9121\t9737\t7381311447945844\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj\t6ead4d67c85db975\n27890\t28489\t7381311635721197\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj\t2c7125b9228ab127\n11560\t12183\t7381311472448013\tesp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj\t817f81f8ec148c11\n18170\t18738\t7381311538429962\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj\t92861359bb32ffd6\n1652\t2223\t7381311373241020\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj\tc6a5978e3a88c200\n608\t1203\t7381311362924835\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj\t233a1cfabb92a2c7\n14306\t14907\t7381311499889105\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj\t303e1d3e2c12bcc6\n32432\t32953\t7381311681101559\tesp-idf/main/CMakeFiles/__idf_main.dir/mcp342x.c.obj\tb7cc9a8c6c7384e3\n639\t1235\t7381311363200148\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj\te3bb402d142b3bc3\n671\t1265\t7381311363470522\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj\tadc8f7ec466eb205\n31877\t32486\t7381311675478520\tesp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj\t1f2050c600fd120b\n701\t1293\t7381311363850131\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj\t6e6b84ab33fdc0ac\n10061\t10693\t7381311457373351\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj\t6c4f3a50ea8318d5\n15421\t16002\t7381311511035310\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj\t2978e5c2b0836ef5\n901\t1459\t7381311365764457\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj\t32e667eff957e7ec\n954\t1509\t7381311366309805\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj\t5bb9c723d6d8d4cd\n7698\t8269\t7381311433724494\tesp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj\t6d92a8192d499fac\n5056\t5665\t7381311407279844\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj\t42cb6dcea4d235bc\n12887\t13490\t7381311485662714\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj\t15972c75343dd947\n978\t1541\t7381311366459800\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj\tdc3ffcc528529b4d\n29029\t29612\t7381311646987707\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj\tcadebede30608a0c\n1110\t1674\t7381311367805382\tesp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj\te4117d69d516e32b\n1002\t1569\t7381311366839792\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj\t6f778607239f4809\n12682\t13281\t7381311483572106\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj\tfabf5d6c612175ac\n14339\t14935\t7381311500199122\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj\t68c95aa87edf7a3b\n1037\t1594\t7381311367095383\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj\tbedba48dc35333a7\n1133\t1701\t7381311368005544\tesp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj\tb23577c5fce8eacb\n28181\t28757\t7381311638569265\tesp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj\t94463b6c98558b42\n1155\t1727\t7381311368230963\tesp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj\tb365f20e2e67c503\n1328\t1892\t7381311369962111\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj\tcdc60a0803b0d037\n1207\t1779\t7381311368870914\tesp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj\t3ef4b5c31b816479\n1296\t1865\t7381311369701917\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj\ted1388ce389c80b8\n20348\t20466\t7381311561002753\tesp-idf/esp_wifi/libesp_wifi.a\t7d62cacb54c455c1\n11642\t12274\t7381311473283245\tesp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj\te032616f959fd1bf\n26491\t26999\t7381311621681050\tesp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj\td60b0647a8da1f5f\n1435\t2000\t7381311371075716\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj\t644b9bde942437cd\n1677\t2252\t7381311373560981\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj\tc74eb00a48a0344\n1462\t2024\t7381311371344987\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj\t90e939de17a7b3a0\n2597\t3200\t7381311382686782\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj\ta81bf335d89c7b06\n37152\t37206\t7381311728424034\tbootloader-prefix/src/bootloader-stamp/bootloader-install\t5c8991367f68166\n1487\t2057\t7381311371594932\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj\t5d0d27e7212fe0f8\n28857\t29427\t7381311645296951\tesp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj\t81f62f2f4c3d83f4\n28354\t28916\t7381311640309263\tesp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj\t711b9ca3c98a66e9\n1572\t2137\t7381311372436265\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj\t3da551f4660fecbf\n1599\t2166\t7381311372715755\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj\tb3e02ffadb27ac4a\n1625\t2193\t7381311372965840\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj\t79d35db1e72e4382\n31621\t32209\t7381311672957664\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj\tc75c8a8c06f1010b\n29904\t30611\t7381311655786551\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj\te2988f49dd4cc60\n17018\t17733\t7381311526991566\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj\t1d33dc0c73fc7f80\n10190\t10826\t7381311458644880\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj\tf04569ae6d235767\n12491\t13082\t7381311481717256\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj\tdd6b395729476ad6\n1704\t2282\t7381311373780982\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj\t6ac7004ded6e5248\n32181\t32763\t7381311678565082\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj\t702bb1c2a085042c\n1730\t2311\t7381311374071046\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj\t2a5ad4a2ff4360b0\n27640\t28233\t7381311633117806\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj\t8f2973d8967afb69\n1757\t2341\t7381311374336231\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj\t98af7c53bb5969f9\n14658\t15232\t7381311503338053\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj\t908cdad1057dd59\n1782\t2369\t7381311374586169\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj\tabbf97394770d6b\n1836\t2424\t7381311375181914\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj\t71c19f3a5e7941a8\n4676\t5271\t7381311403500170\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj\t6f0e421b4e215050\n51\t2451\t7381311357804553\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin\td16b08fae4e67776\n1867\t2464\t7381311375471927\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj\t97bb7cd561eb9b1d\n1894\t2505\t7381311375691515\tesp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj\t83f8d44ff167128\n6024\t6703\t7381311417001854\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha512.c.obj\t98f446d482fee43e\n9171\t9805\t7381311448476027\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj\t78372a8e8e604ee9\n1950\t2566\t7381311376253505\tesp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj\t4663da7694415939\n8971\t9534\t7381311446383902\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj\t38e450c5b8044fe8\n14370\t14961\t7381311500489095\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj\t38cca0c2552f577d\n9224\t9864\t7381311448961437\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj\t579366b585920021\n1978\t2594\t7381311376513428\tesp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj\t4c6a04c121551558\n14005\t14681\t7381311496891912\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj\taf7c9f0eb02cc12e\n18252\t18820\t7381311539315257\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj\t2b0d2a5ee70dc7b6\n2029\t2645\t7381311377063500\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj\t24c547cb260fd385\n28298\t28853\t7381311639756085\tesp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj\t88526066444bd784\n13046\t13660\t7381311487363663\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj\t8aebc013e85ef541\n2062\t2673\t7381311377358581\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj\t7b47e3fd02738eed\n11678\t12301\t7381311473701688\tesp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj\t43aa590602d9425a\n2089\t2701\t7381311377618935\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj\t1ec8c8d34da96b28\n9277\t9929\t7381311449587025\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj\tf9d818a65d7019d5\n2115\t2727\t7381311377898596\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj\t88df1d78c1862964\n7671\t8242\t7381311433460485\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj\ta3a1d0ab47006e18\n12797\t13407\t7381311484732667\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj\te19192cf9e2796dd\n28264\t28835\t7381311639398560\tesp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj\t7e1d4c06c7bf2208\n19427\t19542\t7381311551785977\tesp-idf/esp_http_server/libesp_http_server.a\t38976b24ad5cd9c8\n2170\t2789\t7381311378447544\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj\t8e2c700c199f22d3\n11343\t12016\t7381311470224826\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj\t13d3f663990a0b1c\n2197\t2816\t7381311378743971\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj\te1f09b4697ec9f02\n15726\t16308\t7381311514022207\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj\t4095899d79692813\n2227\t2845\t7381311379101643\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj\tdf24cff42a444d40\n6801\t7458\t7381311424763002\tesp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj\t43dcc78db093888f\n18003\t18578\t7381311536779114\tesp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj\t7979040db3606321\n2256\t2873\t7381311379322955\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj\t94ba50a198cd0641\n2286\t2901\t7381311379642798\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj\ta8dd308db4815a12\n30513\t31128\t7381311661878900\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj\t8a7b708df09a673c\n27720\t28323\t7381311633993069\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj\t1a9ce7c0cf904726\n16454\t17042\t7381311521329455\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj\t2022cbf11d9f90f5\n2315\t2929\t7381311379920248\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj\t18f75702fc2a537d\n2345\t2959\t7381311380176705\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj\t7d4b38f07e9c24d5\n2401\t3018\t7381311380766754\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj\te5a20f55e4ce265\n2373\t2987\t7381311380446911\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj\t8c6c22846206addf\n7079\t7695\t7381311427620434\tesp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj\tf4b51bc85668c29c\n2429\t3050\t7381311381056558\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj\t32324cd3f3c0ab81\n7144\t7749\t7381311428175094\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj\t6523a29ff39ce1ca\n15836\t16423\t7381311515127540\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj\tc6f74d606d8ae8\n2452\t3075\t7381311381651614\tbootloader-prefix/src/bootloader-stamp/bootloader-mkdir\t4d9d925df7ea76bb\n2452\t3075\t7381311381651614\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir\t4d9d925df7ea76bb\n12970\t13572\t7381311486458037\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj\t6c369357006fe8a4\n2468\t3086\t7381311381621603\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj\td3eeaa8c57386f9b\n29250\t29841\t7381311649228771\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj\t42ded62d880635ad\n27130\t27717\t7381311628046257\tesp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj\ta660217f507fa9db\n24807\t25035\t7381311606684188\tesp-idf/mbedtls/mbedtls/library/libmbedtls.a\t55a76d1a795623d3\n2544\t3150\t7381311382136812\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj\tb6a836ec9d19a7bd\n6151\t6827\t7381311418311949\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj\tfc118e4150d7ed77\n2569\t3176\t7381311382436793\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj\t26650a081011d0d\n29494\t30115\t7381311651759265\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj\t527681661259f4b2\n2621\t3224\t7381311382926813\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj\tb916c86b275391a4\n12100\t12679\t7381311477753971\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj\t86c8f09a3d5c60fb\n2649\t3250\t7381311383265565\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj\t6027d841abdaab37\n2705\t3313\t7381311383786196\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj\t4604a2474910d4c\n18281\t18846\t7381311539505095\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj\t2b6938b5b75c2d11\n2731\t3346\t7381311384045723\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj\t3266f65c654d193c\n2763\t3374\t7381311384360811\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj\tcf63b547423fb6ba\n2793\t3404\t7381311384680801\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj\t1dc63c21d714b0d7\n3408\t3984\t7381311390835509\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj\t5cb08ebf80c46d56\n5920\t6600\t7381311416075985\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/sha.c.obj\t1ccb4b7245a64498\n17864\t18443\t7381311535443941\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj\t1b740aeb46dd1317\n2821\t3434\t7381311384960789\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj\tb4a742141045a0e2\n16575\t17179\t7381311522538448\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj\tedb616b080fe8b82\n2849\t3462\t7381311385226050\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj\t1908d8d332553d46\n2877\t3490\t7381311385516050\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj\t5b6ffa765e8b57ee\n4403\t4998\t7381311400833027\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj\t4e0966308bba11e\n2906\t3518\t7381311385766055\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj\t3920b947d168f6d0\n5435\t6115\t7381311411144311\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj\t8e39c37a40792c39\n10728\t11339\t7381311464050227\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj\ta58bc99da6d864dc\n52\t146\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n2964\t3572\t7381311386391748\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj\t1c66d0884809cc3d\n12765\t13376\t7381311484477260\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj\t3eced8c6d3bf5451\n26357\t26926\t7381311620825840\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj\tafdb4c1580fe2e1a\n8034\t8602\t7381311437053375\tesp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj\t7e43752f57ac39ab\n2992\t3597\t7381311386651593\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj\tb95fcd95f44fae4\n13209\t13797\t7381311488844756\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj\ta168561678b739d7\n3023\t3625\t7381311386972703\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj\t958c564fac56af45\n5275\t5916\t7381311409473346\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj\tc8d096ed241a5716\n3054\t3651\t7381311387217312\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj\t962ed66858a25d43\n5136\t5758\t7381311408132279\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj\te5e2e081a3ebb91a\n27386\t27976\t7381311630627326\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj\ta74b7519c6740c08\n3076\t3675\t7381311387858166\tbootloader-prefix/src/bootloader-stamp/bootloader-download\t26174c0e6b746122\n17795\t18386\t7381311534802905\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj\t4136bd9704d3ed9c\n3076\t3675\t7381311387858166\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-download\t26174c0e6b746122\n13888\t14565\t7381311495651233\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj\t13357200b1acf6ba\n7509\t7693\t7403416837708139\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n16482\t17069\t7381311521619548\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj\t1947005a65c8a269\n3091\t3686\t7381311387637201\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj\t5029643cc41373ac\n15592\t16168\t7381311512700818\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj\ta49a8b2b85653458\n3122\t3721\t7381311387997360\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj\tb0138d43d38d442e\n5189\t5824\t7381311408628182\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj\t7230d84ceb50fe09\n3155\t3748\t7381311388262676\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj\t4b2ea016f5f1fe3b\n3180\t3773\t7381311388482703\tesp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj\te6c1bbfda8a5dc0a\n15110\t15669\t7381311507835417\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj\t7f7f32bcfb253e35\n3227\t3825\t7381311389002192\tesp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj\t190fd99930f6d770\n3289\t3878\t7381311389665137\tesp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj\te1b005b9a68d9fb\n3318\t3903\t7381311389959859\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj\td0e16a2f65cdd268\n8190\t8785\t7381311438684189\tesp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj\tdc91fbda655d3d28\n3351\t3932\t7381311390245537\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj\tdcae9c46d52dd2fc\n28884\t29455\t7381311645692145\tesp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj\t4dfeddc8dd59cf0e\n16172\t16769\t7381311518473836\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj\t3ac9eeddeb9e8fa0\n3752\t4346\t7381311394216502\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj\t8c3b421403ff1e01\n30388\t31031\t7381311660627237\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj\t7229f3dcf486fc07\n22344\t22470\t7381311581061519\tesp-idf/soc/libsoc.a\t1545000f44ebe4a8\n3378\t3960\t7381311390515590\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj\t46d2663705196797\n13285\t13884\t7381311489717978\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj\te9a96e01bb58bc75\n15562\t16141\t7381311512420612\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj\tc11a7a7130c1b59\n3440\t4011\t7381311391135659\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj\tabba19f5b7adefd4\n3467\t4040\t7381311391400855\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj\tbc4aed5fcd8ba261\n12916\t13517\t7381311485948049\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj\t74a944b0e7254d58\n3494\t4068\t7381311391680851\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj\tcb8f0c4993e2b04\n3523\t4093\t7381311391950834\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj\td2af3c7d7eb66fe6\n3549\t4119\t7381311392206016\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj\t8216c6b27d1cb1e3\n3576\t4148\t7381311392466011\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj\t721a638551142ce3\n26746\t27296\t7381311624224410\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj\t1e6cc1f98ca90415\n3629\t4199\t7381311393016111\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj\t2e4380d04be696ec\n7434\t8032\t7381311431097772\tesp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj\t2e69a026396a8afe\n3654\t4226\t7381311393251659\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj\tf2a111c38e8db7a5\n3675\t4254\t7381311393821264\tbootloader-prefix/src/bootloader-stamp/bootloader-update\tbd28f22e5a7da68f\n3675\t4254\t7381311393821264\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-update\tbd28f22e5a7da68f\n13692\t14366\t7381311493685059\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj\t52283ff4694c2f3\n13775\t14451\t7381311494510196\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj\t6f8b746a0812cb76\n3689\t4273\t7381311393691284\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj\t7850527cc19d717f\n13086\t13688\t7381311487643811\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj\ta8b86508a9d450e2\n13664\t14335\t7381311493415011\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj\t8b03dc03708de491\n14513\t15106\t7381311501891057\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj\tf64d889379a4c985\n3724\t4303\t7381311393971246\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj\te8ef9781589f5242\n15864\t16450\t7381311515427544\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj\tf07e636cc6db8815\n3777\t4373\t7381311394466864\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj\ta433af37bfd88381\n11204\t11888\t7381311468747519\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj\td8ad1397d33016be\n3801\t4400\t7381311394746524\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj\t77fdabefa984e6ee\n17460\t18057\t7381311531403937\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj\t34953874b8edd73a\n3828\t4428\t7381311395006570\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj\t2b24e1582f3c3494\n3853\t4456\t7381311395282624\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj\tb9558c7d290a3d77\n4097\t4700\t7381311397754999\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj\t5d1f76cead5eb2d0\n16799\t17511\t7381311524799228\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj\t1515cb8af5b5ce63\n3881\t4483\t7381311395532228\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj\t17773db20bdea5e3\n18795\t19134\t7381311544683678\tesp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj\t80a08dc051a35419\n3963\t4564\t7381311396359403\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj\tbb5019ba6cd9f863\n31738\t32332\t7381311674133563\tesp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj\t66d27684e339dd2d\n23577\t23791\t7381311594261286\tesp-idf/spi_flash/libspi_flash.a\t7b71f9d5cc09fa48\n3988\t4590\t7381311396619367\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj\ted82f9d7b6269b1f\n9666\t10337\t7381311453494929\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj\t18ea4bc6320f3a6b\n19069\t19172\t7381311547493831\tesp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj\tf1f9b6f158055c28\n12545\t13156\t7381311482296821\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj\t9697050673c65af2\n4014\t4618\t7381311396909338\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj\t861e11273bfc40a0\n6831\t7484\t7381311425143003\tesp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj\t7f001e405d384761\n17571\t18167\t7381311532459210\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj\tf466464ea85daad6\n4044\t4646\t7381311397169841\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj\t2d60cdf62483dca1\n14852\t15417\t7381311505349028\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj\teb34f8b175aa98fb\n4071\t4672\t7381311397445430\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj\ta769deeda8c20cce\n4567\t5159\t7381311402454470\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj\t59528ddaf94e4b16\n4123\t4729\t7381311397974991\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj\td5423f58a1689b0b\n7201\t7809\t7381311428775649\tesp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj\t984291a1e206383d\n4151\t4755\t7381311398220651\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj\t46452db3178b3ea0\n9331\t9996\t7381311450087067\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj\t99971538ba2444\n29310\t29900\t7381311649919647\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj\t9526d036b0bb97a5\n4177\t4781\t7381311398490641\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj\t2daa329a21921295\n4202\t4807\t7381311398790645\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj\t52beb24d46a404f3\n4810\t5405\t7381311404905378\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj\t18bae3ea115aaf4d\n28954\t29527\t7381311646222187\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj\t3dd27554dc55b80f\n4229\t4836\t7381311399075322\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj\te24b5e01416b7709\n17152\t17860\t7381311528337058\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj\t6ecf82aec9ebe22e\n4255\t4864\t7381311399756255\tbootloader-prefix/src/bootloader-stamp/bootloader-patch\tb2d6d2caa4165914\n7865\t8446\t7381311435379896\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj\t8f0cdf39ef7c4c42\n29677\t30351\t7381311653514656\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj\t813686e806cc891a\n4255\t4864\t7381311399756255\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch\tb2d6d2caa4165914\n4306\t4910\t7381311400009676\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj\tf47e982bbcc7a7c7\n4349\t4938\t7381311400219399\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj\t6de7cf6a245a8ace\n4377\t4972\t7381311400499388\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj\t1dde0f24739beb9e\n4432\t5025\t7381311401043009\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj\t25a3840ddbd7e63d\n15754\t16337\t7381311514291850\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj\t3a437afac8bb49fb\n4514\t5103\t7381311401929585\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj\t63dd1773c3daf77\n4541\t5133\t7381311402189342\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj\tbd7f3d9c06e3baac\n6735\t7405\t7381311424078070\tesp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj\tf86c1858b38de488\n4593\t5185\t7381311402714463\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj\td9e1424675d7334c\n5701\t6374\t7381311413853008\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes.c.obj\ta9d0e99d178e2130\n10513\t11153\t7381311461869848\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj\t5ccd985fbb59789e\n4649\t5241\t7381311403230075\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj\t5c03698cf31f0ea9\n6540\t7229\t7381311422224332\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj\te5a62abe22cca292\n28437\t28999\t7381311641104664\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj\ta065cbc9a3eb215f\n7574\t8162\t7381311432516285\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj\t87696deb56f469b3\n4703\t5298\t7381311403850574\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj\tce2831b64313089b\n29340\t29929\t7381311650159590\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj\ta83d16057b969250\n4732\t5323\t7381311404100249\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj\t3e50eb484757e08\n6468\t7169\t7381311421535451\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj\t4d6f915be261ddd9\n4758\t5350\t7381311404295383\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj\t72145fd3a292b750\n10250\t10892\t7381311459324889\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj\t1ebbc41d79ea78ab\n4785\t5378\t7381311404615764\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj\t86104cd9658c9568\n4839\t5432\t7381311405185447\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj\t79bd75f1f3528dd4\n9248\t9900\t7381311449361608\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj\te9a0901ad47b4a69\n10540\t11177\t7381311462159867\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj\t83bad7fd5c7dbb3a\n4880\t5462\t7381311405649463\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj\t6c267c1d684007af\n4914\t5495\t7381311405939806\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj\t9f7f9925d687f516\n31105\t31708\t7381311667801133\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj\tb76fe26da535e3d0\n28920\t29490\t7381311645972191\tesp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj\t6f5d9e81aac03e15\n18447\t19019\t7381311541196039\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj\taf34ecab2ba98cf5\n4975\t5553\t7381311406514626\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj\t589bf18d5d8a55c1\n18418\t18986\t7381311540960848\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj\t642d6fe5aa292db4\n4942\t5524\t7381311406254619\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj\te254f6586620bffe\n12577\t13181\t7381311482526880\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj\te0d798925d07de71\n32575\t33163\t7381311684498637\tesp-idf/unity/libunity.a\t8d06f712296861a3\n5001\t5599\t7381311406804656\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj\td6cc5f4cb12da8f0\n5029\t5639\t7381311407074618\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj\t1000a2dc9c83ec17\n5081\t5698\t7381311407569835\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj\tc22026f46794f25f\n5106\t5729\t7381311407809850\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj\t4f9284bd83c27298\n5162\t5787\t7381311408388629\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj\t542d8fe18946e5c5\n8085\t8668\t7381311437589329\tesp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj\taf83fd8946248c8e\n5217\t5852\t7381311408948184\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj\tef5f3302d0e70843\n9198\t9834\t7381311448741445\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj\t77d886badaa79851\n12278\t12849\t7381311479529857\tesp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj\te9f291be3fda6e46\n29079\t29673\t7381311647477825\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj\t6f7db55f2e051064\n5244\t5880\t7381311409218242\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj\te1140767d2ba3981\n5301\t5954\t7381311409733371\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj\t53339453f266b6b5\n5327\t5989\t7381311409983367\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj\t197badc5cf2b8e81\n8638\t9196\t7381311443174172\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj\tb7cfad962ad0492d\n10032\t10657\t7381311457073646\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj\td2194f2a9f8e9e6f\n28237\t28808\t7381311639167820\tesp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj\t85179f9ed3422328\n5353\t6020\t7381311410288571\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj\t46df5348f816bd7\n5382\t6049\t7381311410548965\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj\tc0f3cd2637175bde\n41\t250\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n5409\t6084\t7381311410818963\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj\tfc07d6aabea2d674\n5499\t6176\t7381311411734030\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj\tdc7dfbc1a275ab94\n11589\t12215\t7381311472643244\tesp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj\tbcfe21f9b1bd88f4\n5528\t6215\t7381311412032338\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj\t35c62f5c12914fd3\n5557\t6243\t7381311412487724\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_hardware.c.obj\t4896a48732c002bf\n5602\t6277\t7381311412876163\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj\tfc87e852a73fdead\n5642\t6313\t7381311413216527\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_timing.c.obj\tec7e4a826cd8823a\n23007\t23173\t7381311588097375\tesp-idf/esp_rom/libesp_rom.a\tc8c4d3fb04539883\n13801\t14483\t7381311494801118\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj\t3048c80b48160264\n5669\t6340\t7381311413479465\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_xts.c.obj\t5bfdc78ed4fe1bd9\n5733\t6409\t7381311414072992\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_mem.c.obj\t129ab7be027ac5d0\n8995\t9568\t7381311446609282\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj\t42c9ae972d5968e3\n9701\t10365\t7381311453919076\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_cpu.c.obj\te9cee8fed3c8ac78\n18224\t18791\t7381311539025101\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj\te13f3d36eb46fd36\n5762\t6437\t7381311414368951\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_common.c.obj\t9e0ffa8562fd2873\n10698\t11304\t7381311463759897\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj\t1f875f0188f0cf3f\n5790\t6465\t7381311414778593\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_bignum.c.obj\t8e495f252c523ee5\n9904\t10536\t7381311455787748\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_hmac.c.obj\t3196cb0efa90ad97\n5855\t6536\t7381311415375976\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj\td06256b6eb9b9770\n12437\t13017\t7381311481131230\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj\t50d1373f421c7e53\n5883\t6566\t7381311415675990\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/esp_sha.c.obj\t9de648f89901f9bc\n6968\t7599\t7381311426524070\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj\tc818a89fa3aa0a00\n18555\t19103\t7381311542241343\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj\t92126e4dd70aed44\n15978\t16571\t7381311516553179\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj\t7e56255d4558fc61\n5957\t6632\t7381311416401493\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp32s3/bignum.c.obj\t1a416fe082eca89\n10154\t10792\t7381311458328583\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj\t177a4517ca483ca\n14939\t15505\t7381311506124322\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj\tc868b6f18d60bd70\n10396\t11039\t7381311460731093\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj\ta6319f6569972709\n5992\t6661\t7381311416701496\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/md/esp_md.c.obj\t45576f1331adda90\n6052\t6732\t7381311417356755\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_gcm.c.obj\tee5898aea7f04c6b\n31483\t32076\t7381311671536910\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj\tf88adf8c14e4992b\n30277\t30957\t7381311659677229\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj\t11f4a2b3f5181f53\n11229\t11913\t7381311469007502\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj\t3d7a43c3ebd0b257\n11534\t12150\t7381311472128017\tesp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj\t17c08dcee7e3db4f\n32052\t32625\t7381311677289594\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj\tbb3b95a3879a9d6a\n6087\t6759\t7381311417666757\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha256.c.obj\t4103d0480bf3dd57\n6119\t6798\t7381311418036764\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj\tceecc2c469626c98\n8552\t9119\t7381311442222920\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj\tf738cf41b3f47d3b\n6180\t6865\t7381311418712032\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj\t302941a9e76109f3\n12628\t13229\t7381311483052061\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj\t34810aba72ed8d3a\n6218\t6896\t7381311419052033\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj\tf8a79e64434ecdc6\n7268\t7862\t7381311429412547\tesp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj\t6413378868e7a0fe\n6247\t6936\t7381311419317237\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj\t94219aea60b308ac\n6281\t6965\t7381311419679754\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj\t9ba84c8566a5453c\n16746\t17457\t7381311524219211\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj\t4fc5b66d1f517b22\n6316\t7002\t7381311419949761\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj\tc569508d65efadcc\n6343\t7037\t7381311420289824\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj\tdc420e02c88c57a8\n6377\t7075\t7381311420644990\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj\t933c9dc3e639de12\n32882\t33223\t7381311687889047\tesp-idf/touch_element/libtouch_element.a\ta164b832e7822a48\n6413\t7111\t7381311420855033\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj\t7437f41b09bb1b2a\n7509\t7693\t7403416837708139\t.bin_timestamp\t800023535603c814\n6441\t7140\t7381311421205078\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj\tba6018fd46363486\n6507\t7198\t7381311421847561\tesp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj\t28201671cf7618e7\n6569\t7266\t7381311422493965\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj\tf9cddd46c05c312e\n15509\t16085\t7381311511850611\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj\t663184ae138cc186\n6603\t7293\t7381311422773872\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj\t36164c18f94fa597\n6635\t7322\t7381311423112495\tesp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj\tbabd586144c6c49\n13944\t14623\t7381311496246443\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj\t8edb45efaae97495\n16859\t17567\t7381311525364366\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj\tb6e3854c60da0902\n6665\t7345\t7381311423527747\tesp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj\t635613aeab4194cd\n10797\t11416\t7381311464734096\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj\t4300ead7625b7728\n6707\t7370\t7381311423807750\tesp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj\t3f5da8fffd3a834\n6763\t7431\t7381311424473000\tesp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj\tbe09f48bd2529907\n30451\t31077\t7381311661252719\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj\t40454de23e2f89f4\n6868\t7509\t7381311425449231\tesp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj\t238eb1c406980c3b\n31057\t31648\t7381311667305182\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj\t742f36b6d3099b7f\n6900\t7545\t7381311425848898\tesp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj\t830a81becee90afc\n13522\t14155\t7381311491979799\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj\t8611e6da7fae5cfa\n6939\t7572\t7381311426139107\tesp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj\tc2e7b87bce391450\n7005\t7632\t7381311426884084\tesp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj\t54b000ffad3c39fb\n30420\t31054\t7381311660912366\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj\tea96e93c54d2ada0\n29531\t30152\t7381311651989323\tesp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj\t8a6dbf613092bc6f\n7041\t7668\t7381311427264128\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj\t25cbc5f85ea5f9c\n11460\t12097\t7381311471462915\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj\td6fe3b01b079e6c4\n37207\t37295\t7381311729169762\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader-complete\t63389758a99136f0\n15134\t15696\t7381311508075416\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj\t1205b157ef39d2dc\n13441\t14034\t7381311491194636\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj\tcd6aa756a9092410\n25517\t25718\t7381311613535851\tesp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\tbc4ecf3669081925\n7115\t7723\t7381311427880404\tesp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj\td955f8f167c119d0\n7173\t7782\t7381311428465659\tesp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj\t881a41853aea2874\n7233\t7836\t7381311429135644\tesp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj\t42f5dabfaffd6ef5\n7325\t7921\t7381311429942519\tesp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj\td59ddd431e415672\n7347\t7950\t7381311430182586\tesp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj\t34dc105670a6008\n7372\t7978\t7381311430537755\tesp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj\tf95c40ae276844bf\n7407\t8006\t7381311430787778\tesp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj\t8a0cdb135a717107\n11419\t12070\t7381311471082862\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj\t4894202ff1b9efb9\n14455\t15039\t7381311501365401\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj\t6d5f7bb7e1d7a835\n41\t250\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n7461\t8056\t7381311431307862\tesp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj\tbd817c316e9a415a\n12153\t12735\t7381311478413989\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj\t1dca8da797547e05\n7486\t8082\t7381311431582973\tesp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj\t2e8fa689ccc21ae4\n7602\t8188\t7381311432793521\tesp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj\t2b1cb17c698a1164\n27749\t28350\t7381311634273454\tesp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj\tf48adcffa2c0f152\n9048\t9624\t7381311447179248\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj\t6746b74fea685058\n7512\t8110\t7381311431924466\tesp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj\t87a0d6756d2bed88\n12384\t12966\t7381311480606103\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj\t59af5d2a84815bbd\n7548\t8135\t7381311432194459\tesp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj\tc14ab0a0c74b97c0\n7635\t8216\t7381311433162625\tesp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj\td04e4a894e51b28d\n8892\t9450\t7381311445632636\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj\t9f5327ce8a89d642\n10342\t10986\t7381311460170838\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj\t96abead925cf5db3\n7725\t8302\t7381311433994484\tesp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj\tb5a00a36763f4bb\n7751\t8329\t7381311434314546\tesp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj\t2dee97cd03fd97ae\n8362\t8942\t7381311440350744\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj\tb145b4e1dbbcbfc\n29459\t30073\t7381311651454013\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj\tf745954926cec274\n7785\t8359\t7381311434579743\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj\tf31f5343af6c0486\n7811\t8386\t7381311434859709\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj\t5fdb8767497a0e64\n32271\t32821\t7381311679440399\tesp-idf/main/CMakeFiles/__idf_main.dir/pngle.c.obj\tc432b2bfab4e487a\n7839\t8421\t7381311435109783\tesp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj\ta73de476879a92c1\n11125\t11795\t7381311468011996\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj\t73f41a4c88370341\n30320\t30981\t7381311660027732\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj\t3e7df33d26568263\n26468\t26974\t7381311621405907\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj\t8d06a5766a23286\n7890\t8472\t7381311435695351\tesp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj\t48aaf2ff1d150406\n7924\t8495\t7381311436005337\tesp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj\t69eaa0b00a95841d\n15336\t15918\t7381311510096322\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj\tabd6abed1facc4ae\n7953\t8522\t7381311436266193\tesp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj\tf16b2fa30524e87f\n7981\t8549\t7381311436543329\tesp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj\te5f24a313409beb9\n8008\t8575\t7381311436803668\tesp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj\t85f3872b58ea197b\n11098\t11753\t7381311467701994\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj\te336948a9f10ef12\n8059\t8635\t7381311437303442\tesp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj\t6dd785a8c76e2020\n8245\t8837\t7381311439204612\tesp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj\tfad9a5d63183e81f\n8138\t8730\t7381311438108940\tesp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj\t62e8ce6454fc4b36\n8164\t8758\t7381311438359039\tesp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj\ta48eaded4877d5dd\n8218\t8811\t7381311438944193\tesp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj\t95e741b05b59e733\n8271\t8864\t7381311439520676\tesp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj\t5513eeced17837b6\n8305\t8889\t7381311439760683\tesp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj\t78c52de2c34692be\n8331\t8915\t7381311440080705\tesp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj\tf7c232769196a11a\n14038\t14708\t7381311497311897\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj\t57fc858e7b83f61e\n8389\t8969\t7381311440676550\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj\tae8ffa466605ab38\n12853\t13464\t7381311485372977\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj\td5cc948ca9b9b37\n8423\t8992\t7381311440936946\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj\t66d3f53aa5e4cab8\n9838\t10478\t7381311455097427\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj\t4641faa1bd2a97e8\n9741\t10392\t7381311454261994\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_impl_gdma.c.obj\tfe4a5437c9e1a225\n8474\t9045\t7381311441426607\tesp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj\t2052cdc96d530bf9\n31712\t32295\t7381311673863140\tesp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj\tb2df08bd98001bd7\n8498\t9069\t7381311441691746\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj\t97782f1951d5f85b\n8578\t9145\t7381311442498293\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj\t5c80385be1deee7c\n8525\t9093\t7381311441961747\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj\tdd0776205da488d\n27049\t27636\t7381311627250794\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj\t7fb7ce85c8f0fd77\n8604\t9169\t7381311442817040\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj\t251fcc0fa124e1dc\n8671\t9221\t7381311443418911\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj\taf3e2e3120267939\n12127\t12703\t7381311478134002\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj\t449fd86cacaeee17\n8699\t9245\t7381311443768594\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj\t9345164a3cb708e3\n8733\t9275\t7381311444060252\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj\t1279a0f108f4a412\n8788\t9329\t7381311444597417\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj\t8206273971bb295a\n27103\t27688\t7381311627796247\tesp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj\tc8f9490cb45e44fa\n8814\t9362\t7381311444837346\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj\t4b92bc83dcbc80af\n16941\t17646\t7381311526169926\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/scan.c.obj\t1f6a54ebd75da1ca\n23174\t23385\t7381311590202895\tesp-idf/esp_system/libesp_system.a\t72a6938361f46689\n10629\t11252\t7381311463095217\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj\tb166c84bff8a188c\n8839\t9394\t7381311445108412\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj\t6978dc39792a8416\n8867\t9424\t7381311445367457\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj\t75e989c1c6cb1c8\n12073\t12652\t7381311477488857\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj\tf5245e9a2b69da\n8918\t9480\t7381311445902999\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj\t7afb16182dc4b888\n8944\t9508\t7381311446162670\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj\tadf16254d83f9a50\n32241\t32792\t7381311679200397\tesp-idf/main/CMakeFiles/__idf_main.dir/bme680.c.obj\t5733afd1fe8201dc\n9018\t9595\t7381311446939241\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj\t13ee56c556feb1b2\n9072\t9661\t7381311447419318\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj\td92350b0ccab92ef\n29734\t30415\t7381311654099864\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj\t71215c1de28d20cb\n9096\t9697\t7381311447674864\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj\t95847b432bc3a91b\n19022\t19164\t7381311546968510\tesp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj\tc021eafc52adbee6\n9148\t9774\t7381311448175858\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj\t9a2386db1d346960\n13233\t13825\t7381311489084780\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj\td1ef772ba82370c4\n18115\t18683\t7381311537885200\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj\t20b30da6f9f89ee4\n9364\t10027\t7381311450479486\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj\t34d5c256c63450bc\n9398\t10057\t7381311450704646\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj\tc2a5011210014ed6\n9427\t10091\t7381311451024660\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj\tfbe45008e1657b1d\n30027\t30744\t7381311658606877\tesp-idf/driver/libdriver.a\t62bcd2fd23fefa6d\n33164\t33363\t7381311689144620\tesp-idf/cmock/libcmock.a\ta6c72d61a0d7468e\n9453\t10120\t7381311451314717\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj\taf0d45b2a7293001\n15780\t16364\t7381311514572234\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj\t13e2285e6bc3dedd\n18879\t19145\t7381311545571016\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj\tab7043d7d7d918e9\n9483\t10150\t7381311451600181\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj\tc9604a3adfd21b59\n10313\t10952\t7381311459900825\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj\tde131ab403b677d3\n10124\t10753\t7381311457998607\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj\tff8d7b0357d27329\n9510\t10185\t7381311451840206\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj\tffa95e2a78281f03\n16283\t16882\t7381311519618990\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj\tcd6b1d1bff206431\n13609\t14261\t7381311492874993\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj\t8a3afe158eadd5c5\n9537\t10217\t7381311452220629\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj\tce117d3d7a8a9b6d\n15951\t16542\t7381311516273188\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj\taaeaf2e3dc1e4c45\n29616\t30271\t7381311652884702\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj\te977b0a4529dfb0d\n14230\t14847\t7381311499142306\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj\t14bb330ff31f9678\n9571\t10246\t7381311452430441\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj\t918540bf3a41d2a\n30904\t31479\t7381311665790024\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj\t7cbfde1bba231a7\n9597\t10280\t7381311452732820\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj\tbfcd6219d99414d0\n14081\t14733\t7381311497701977\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj\te311f2fcb34be8f1\n9628\t10308\t7381311453151863\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj\t2d4078d18cac42de\n9778\t10421\t7381311454577431\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_ds.c.obj\t5cc605359a0e89a5\n13719\t14396\t7381311493970187\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj\t9f10fa23c88d6ad4\n9809\t10451\t7381311454857438\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj\tab1e5508c155707b\n9868\t10509\t7381311455517514\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/mspi_timing_config.c.obj\tbe42e633b06fdae2\n250\t15318\t0\tCMakeFiles/flash\teabf156acce8dac7\n9933\t10563\t7381311456127746\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj\t4876df74f82a5b5b\n10000\t10624\t7381311456763303\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj\tb0b72fba0d1a116\n10284\t10926\t7381311459590883\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj\t966ec0aa99fb283e\n10369\t11011\t7381311460445955\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj\t8f489130f7194dae\n10425\t11068\t7381311461021176\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj\t8eb21b01fc72cb82\n10455\t11095\t7381311461301249\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj\t11a62e1973b8bd46\n13319\t13911\t7381311490071451\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj\t4f08ce3f4362ca48\n10482\t11122\t7381311461596370\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj\t3fddce4aa62fb3c3\n10990\t11611\t7381311466645383\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj\tfd7b1a303851a313\n10568\t11201\t7381311462450001\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj\t437ca26dc6814cf2\n10598\t11226\t7381311462755156\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj\t31afa8731db81cba\n24587\t24806\t7381311604411092\tesp-idf/esp_app_format/libesp_app_format.a\t6fca4c21cd0f9b2d\n31011\t31589\t7381311666835195\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj\te7f54ae9216336ca\n10662\t11281\t7381311463406977\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj\tade8ecf6d9c8b6a5\n27355\t27949\t7381311630369819\tesp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj\tb2d61d7d837119da\n32652\t33184\t7381311685414060\tesp-idf/protobuf-c/libprotobuf-c.a\t97cd304a1039e548\n10757\t11370\t7381311464408895\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj\t49e7dfb96f5ec101\n10859\t11497\t7381311465434147\tesp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj\tafe1c6090effaebd\n18529\t19100\t7381311541986215\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj\t85eaa3314a517eca\n10896\t11530\t7381311465809318\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj\te7bc95f0f910f2e9\n11966\t12542\t7381311476504057\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj\t4310b6ded0137871\n10929\t11556\t7381311466050357\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj\td2ae89d99d3e1191\n10955\t11585\t7381311466399343\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj\tc07659bfb43e5d40\n11756\t12354\t7381311474486902\tesp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj\t8d234bda0dcdce60\n26639\t27151\t7381311623086562\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj\tc0d1ebfb9611bb50\n11014\t11640\t7381311466885360\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj\t91b87af8221e91e0\n11043\t11675\t7381311467175999\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj\tb59f224d7c993b8d\n11070\t11717\t7381311467466579\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj\t98032ae6fe75a142\n11156\t11838\t7381311468252031\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj\t4c714d44df2c8be4\n11255\t11939\t7381311469287500\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj\td679c4a9051e5461\n18605\t19110\t7381311542892798\tesp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj\t451d96cb04b6f000\n24372\t24585\t7381311602208222\tesp-idf/bootloader_support/libbootloader_support.a\t2be3903901906998\n29055\t29642\t7381311647227743\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj\t64784b069d61393f\n11284\t11964\t7381311469517725\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj\t63da8bed82288eeb\n17737\t18329\t7381311534150075\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj\te531b5a3416270b6\n12942\t13545\t7381311486218099\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj\t19e80aa5e716b79d\n11307\t11991\t7381311469872983\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj\t6f222e2e580ca48\n11373\t12042\t7381311470642876\tesp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj\t42dbcebb2482a88c\n11501\t12124\t7381311471798027\tesp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj\td6b8349a59fbee25\n22766\t23005\t7381311586401903\tesp-idf/hal/libhal.a\tc85e68b9cd3fb807\n11616\t12243\t7381311472913248\tesp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj\t647dbd3522a5f9be\n11798\t12382\t7381311474895256\tesp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj\tb631fb4357c5ee57\n11841\t12407\t7381311475135245\tesp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj\tdc6b6782814e5f98\n28761\t29337\t7381311644341142\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj\t529dde65d1e99de0\n11865\t12433\t7381311475515304\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj\t5ed6a8367055bb82\n11891\t12461\t7381311475710432\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj\ta50997133156c9c3\n27924\t28514\t7381311636011207\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj\tcb8daaf27ea49b67\n11916\t12488\t7381311476010443\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj\ta6cf8c4603f13a5e\n32158\t32742\t7381311678255529\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj\td40439e841595c03\n37207\t37295\t7381311729169762\tCMakeFiles/bootloader-complete\t63389758a99136f0\n11994\t12573\t7381311476749142\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj\taf7c4a7ced5f6f36\n31792\t32397\t7381311674713291\tesp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj\t86a0ba4f861b8640\n12019\t12599\t7381311477039152\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj\t7e1dd0593415f624\n17119\t17827\t7381311528017064\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj\tc0bef4b3ad970b5d\n28708\t29273\t7381311643811560\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj\ta01c7c3ba2d4a3ee\n12045\t12625\t7381311477318795\tesp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj\tae940d9380bb755c\n12247\t12819\t7381311479219581\tesp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj\t2b289157481733a\n12305\t12882\t7381311479814920\tesp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj\t1499b4941c29e16b\n52\t146\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n12331\t12912\t7381311480085318\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj\t609b68b7b425a338\n12410\t12992\t7381311480891224\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj\tb5df4932364970c9\n28838\t29415\t7381311645852128\tesp-idf/mbedtls/libmbedtls.a\t8d462f1a28497416\n12463\t13042\t7381311481411603\tesp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj\t84ae1d8db6bf702f\n12518\t13110\t7381311481966812\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj\t66311b75597b0dd5\n12602\t13205\t7381311482792051\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj\t524a2389ca845f26\n12654\t13256\t7381311483312117\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj\t3f4266e5074156b1\n12706\t13315\t7381311483917222\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj\te1fe95fc58bb2c5d\n12738\t13346\t7381311484142892\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj\t2826c1d9a65b0cbe\n12996\t13605\t7381311486713670\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj\t19ce3351640fa6a5\n13021\t13634\t7381311486943630\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj\ta2dc1465b97a4bc4\n13113\t13715\t7381311488119226\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj\t6f257935169b2c59\n13161\t13744\t7381311488339206\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj\tf1620506b6bd55fd\n17597\t18193\t7381311532729196\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj\t43d2ff7ef31d87f9\n26793\t27351\t7381311624699510\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj\tdfc127cd67132b11\n27865\t28462\t7381311635398757\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj\t6ad1d5d1fc5460e8\n32544\t33161\t7381311683373293\tesp-idf/app_trace/libapp_trace.a\t4a708be788625102\n13185\t13771\t7381311488599422\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj\t217fd107a929c590\n28062\t28649\t7381311637376750\tesp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj\te9ad2f8b2ad6536a\n13260\t13855\t7381311489365909\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj\te457783c22f33458\n14159\t14792\t7381311498467136\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj\tdf18fea4a6067844\n13380\t13970\t7381311490624731\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj\t2b00d81babb51d96\n27237\t27833\t7381311629105859\tesp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj\t85ddef403614a85d\n14569\t15154\t7381311502491460\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj\t8200b03c2f3d9844\n13411\t14001\t7381311490924640\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj\tfb7a2e681db4cb6\n26817\t27381\t7381311624999540\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj\t70d1231f46d56825\n13468\t14077\t7381311491454630\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj\t215311b4173a9ccb\n13549\t14193\t7381311492269804\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj\tae91ff26c3e8610e\n28979\t29551\t7381311646482341\tesp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj\td5ff808c51750a7b\n13576\t14226\t7381311492589847\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj\tc41ad8190ec8b74\n26929\t27497\t7381311626055163\tesp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj\t8a5a990a732019b6\n13638\t14302\t7381311493164994\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj\t9d4017070a655625\n15157\t15722\t7381311508315410\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj\t55bdc884a74d9857\n27328\t27920\t7381311630039416\tesp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj\t4ae912e955eb9ee3\n13748\t14424\t7381311494250536\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj\t1c4cc6c7f6edf148\n13974\t14653\t7381311496556382\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj\tf2d186ab601ad4b6\n13829\t14509\t7381311495091147\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj\t93820b3d1a2857a3\n13859\t14536\t7381311495391088\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj\ta0e51118b21ca0e2\n13915\t14596\t7381311495936372\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj\t2737fde9fafd278d\n14120\t14763\t7381311498087133\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj\te47d09d5d038b16a\n14196\t14820\t7381311498802297\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj\t2f87d96ca78beeb2\n14266\t14880\t7381311499567131\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj\t7b77fdb8aadde70a\n20004\t20128\t7381311557626342\tesp-idf/esp_adc/libesp_adc.a\t4b194b83cc1cea8\n14428\t15013\t7381311501054528\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj\t6a378e90b6720f32\n14487\t15065\t7381311501625310\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj\t3e993d72e1c20cec\n26550\t27047\t7381311622201071\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj\te2f53a857179a6d9\n14540\t15130\t7381311502191435\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj\t983e4d0bde1532a4\n30684\t31276\t7381311663649217\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj\t490a4d525cdfd641\n14600\t15177\t7381311502762913\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj\tb000fd3c97787dcb\n14627\t15203\t7381311503068387\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj\tc0b3ebcd9f797ef1\n19772\t19887\t7381311555206514\tesp-idf/esp_gdbstub/libesp_gdbstub.a\t1e8358383cba6e15\n14685\t15256\t7381311503618115\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj\td82a81459041d99d\n17706\t18302\t7381311533864913\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj\t6316aa233c391502\n14712\t15281\t7381311503913418\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj\tc943cde5a0a5212a\n30119\t30827\t7381311658066867\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj\tef2bd8156d80004b\n31338\t31927\t7381311670907323\tesp-idf/esp_ringbuf/libesp_ringbuf.a\t8da019a4928ce958\n14737\t15307\t7381311504173407\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj\tde957b2d279362c6\n14766\t15332\t7381311504453344\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj\td1c97d4748f75462\n28089\t28677\t7381311637763755\tesp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj\t85c64c934349058c\n14797\t15356\t7381311504733806\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj\tc54be6544c72be15\n30932\t31505\t7381311666089688\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj\t33c6e22bba8e2b60\n14823\t15380\t7381311505019108\tesp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj\t323b1cc4c1e31521\n30077\t30793\t7381311657642655\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj\tcb4fc4e86812c23d\n14912\t15477\t7381311505864244\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj\t8b7a068cf1795537\n18905\t19149\t7381311545850995\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj\t35560f8c9f3eb3aa\n14965\t15533\t7381311506344321\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj\t8e240504b1c61034\n14991\t15558\t7381311506684511\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj\t1b9955bf0c9a0df7\n15017\t15589\t7381311506959867\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj\te3e5b4ca8b437adb\n15043\t15616\t7381311507179943\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj\tf5051423ae1dc6f8\n20569\t20746\t7381311563808481\tesp-idf/wpa_supplicant/libwpa_supplicant.a\td67fb4d05b94978f\n15069\t15643\t7381311507599931\tesp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj\t5af406f115e7255\n15181\t15749\t7381311508565386\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj\t1eaa96a049388c29\n15208\t15776\t7381311508860869\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj\t79a6a3235a0b6387\n19888\t20004\t7381311556411168\tesp-idf/esp_eth/libesp_eth.a\t38e4e272666fd352\n27002\t27579\t7381311626750772\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj\t61b7bbb3746a4b9e\n15236\t15804\t7381311509100864\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj\t97030a18be7312a\n15261\t15831\t7381311509360853\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj\t581da812427f6057\n16912\t17619\t7381311525904561\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/bss.c.obj\tfe15b371ca208a41\n15285\t15860\t7381311509610871\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj\t8677816baf5523d1\n15311\t15889\t7381311509866275\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj\tdc1f502f21bfc23c\n15360\t15947\t7381311510349379\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj\tb0a4ec07fe8860bc\n18032\t18602\t7381311537174298\tesp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj\ta46704c0a296d4b9\n15384\t15974\t7381311510720158\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj\t807b3195f4f4325d\n15453\t16028\t7381311511305309\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj\tdc1cd7e7d02b4763\n15480\t16059\t7381311511595304\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj\t8202c0e1715afdc8\n27583\t28177\t7381311632587966\tesp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag_connection_monitor.c.obj\te1717965c6244e69\n15619\t16194\t7381311512966236\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj\t1d89a0df8c560b5b\n15646\t16224\t7381311513226197\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj\ta17b523162874b6e\n27527\t28121\t7381311632032110\tesp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj\tfa024ab14f50b9e5\n15672\t16251\t7381311513486204\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj\ta5a94c0162e9a003\n15698\t16279\t7381311513747167\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj\tddfa2c869a47d7f\n15808\t16393\t7381311514847477\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj\tff8dbde7945aaa94\n15893\t16478\t7381311515707946\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj\t781a36039f954872\n25211\t25516\t7381311611515136\tesp-idf/mbedtls/mbedtls/library/libmbedcrypto.a\t225c0f2884c285c3\n15922\t16507\t7381311516003198\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj\t73bbba28f28451d1\n16633\t17276\t7381311523093975\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj\t7e9cd9acb9b55808\n17832\t18413\t7381311535133937\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj\t59ab9694eb9e7d3e\n18198\t18764\t7381311538739970\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj\tb2b35160c2f20f41\n32490\t33345\t7381311688934617\tesp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_calibration.c.obj\tda03047a16c6d095\n16006\t16600\t7381311516813374\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj\tc711d08ee4d587c2\n16032\t16629\t7381311517118520\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj\tebd570af8dabcc94\n27554\t28151\t7381311632332211\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj\tba1bed2fe1a2a276\n29590\t30234\t7381311652644660\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj\t4e36c744caef9a53\n781\t5159\t7403416812207712\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n16062\t16656\t7381311517398525\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj\t295a0ca1cfb52c42\n31538\t32129\t7381311672142591\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj\tab3de7014cb36d82\n16145\t16742\t7381311518223844\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj\te5d959c094335cd7\n16199\t16796\t7381311518783912\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj\t9b365a9b4097c7f5\n16228\t16826\t7381311519068996\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj\tfabd90f3edd44518\n16255\t16855\t7381311519339001\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj\td3326e1e5839757f\n16312\t16908\t7381311519914188\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj\ta17ef66d113bf22a\n16660\t17331\t7381311523393934\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj\t1c1dfd397083d2bf\n26310\t26898\t7381311620056131\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj\tdf3cbf1ad14ff3e\n16341\t16937\t7381311520174179\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj\t14019abec62c59bd\n16368\t16963\t7381311520474168\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj\td8b9fe3ff1d1f3af\n16398\t16989\t7381311520774219\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj\t697055c15574723b\n16427\t17014\t7381311521029455\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj\tc3540eadd907d009\n16546\t17147\t7381311522238495\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj\td801a72f079b9123\n16604\t17222\t7381311522828605\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj\t5430ec1971bcc7f5\n16717\t17426\t7381311523960168\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj\t280535d7680218e1\n22590\t22766\t7381311584015736\tesp-idf/log/liblog.a\ta9b83aff0a4fde9a\n16772\t17483\t7381311524489184\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj\tedbda6c01ecb3e18\n31950\t32556\t7381311676294046\tesp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj\t1c404377cf7b2bd3\n16830\t17540\t7381311525084458\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj\t90ebcf3378f4d56e\n16968\t17676\t7381311526429979\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_scan.c.obj\t44ac2928b0e4bbf3\n16993\t17702\t7381311526759987\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj\taae918c4c5528171\n17046\t17762\t7381311527171612\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj\te136a3834854e4c5\n29994\t30713\t7381311656742045\tesp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj\t9830dbc41889615d\n17074\t17791\t7381311527691591\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj\t719dbf67cd9419d7\n33387\t33599\t7381311692342138\tesp-idf/wifi_provisioning/libwifi_provisioning.a\t6f024149c9eafbbb\n17183\t17888\t7381311528817211\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj\tcb9c9a0d7c3225be\n17227\t17919\t7381311529323374\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj\t34d1f530bc132e35\n28155\t28730\t7381311638263557\tesp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj\t4c31a64ca9058c52\n17280\t17947\t7381311529863542\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj\t39e1dc42fba18b01\n27300\t27886\t7381311629781568\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj\te5fbc1cc498622b7\n29875\t30576\t7381311655511440\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj\t774012ccbb947156\n17344\t17972\t7381311530458861\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj\t770b6c8bee0a9ceb\n17393\t17999\t7381311530848839\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj\t37f72c7ed7982bd8\n17488\t18084\t7381311531663957\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj\tbc1e741218930cf5\n19543\t19655\t7381311552891521\tesp-idf/esp_http_client/libesp_http_client.a\t4bcb86cd104b1620\n17515\t18111\t7381311531979105\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj\t61375e8fd1355734\n32369\t33257\t7381311688934617\tesp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_api.c.obj\t4b49c7538c7721cc\n17544\t18140\t7381311532199191\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj\t7fc9fac2fb57208f\n17623\t18220\t7381311532984492\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj\tf911ae80122b297f\n17650\t18248\t7381311533284550\tesp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj\t1eabf8533c6d3734\n17680\t18276\t7381311533544559\tesp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj\tc0fd894d0b56ace6\n18850\t19141\t7381311545300578\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj\t74434b651043dee3\n250\t15318\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n17765\t18358\t7381311534442948\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj\ted1a1d57cdddbfd6\n41\t250\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n17892\t18471\t7381311535743944\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj\t58a95129a58520bd\n17923\t18495\t7381311535953983\tesp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj\t67c0f806e4bc6a89\n28036\t28624\t7381311637106532\tesp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor/temperature_sensor.c.obj\t8daeb47eb3c1d82b\n706\t780\t7403416768522837\tesp-idf/main/libmain.a\t68f787ce7000df5d\n17951\t18527\t7381311536199104\tesp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj\tc0a7c2f0d3eac891\n29104\t29704\t7381311647843324\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj\tc927fcc71eb1e783\n29845\t30539\t7381311655241334\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj\te132c0d9a75ebc17\n17976\t18552\t7381311536609098\tesp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj\t9d1f01f78face461\n18061\t18629\t7381311537374324\tesp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj\tcdfa0ca4040c45db\n18088\t18656\t7381311537594316\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj\te99c2fc3dfd99d17\n18143\t18711\t7381311538209912\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj\t6867564c42db5cc0\n28681\t29247\t7381311643525947\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj\td96b7ae7e13281dc\n18307\t18875\t7381311539765120\tesp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj\tcf7a546855d38125\n27953\t28539\t7381311636291238\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave_hd.c.obj\t3f1eda1aaa04d669\n18333\t18901\t7381311540110857\tesp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj\td0dad888358df6bd\n29791\t30477\t7381311654661831\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj\taf8a5987a4d6cb74\n18362\t18930\t7381311540390777\tesp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj\t9028a3293d0f2156\n18391\t18961\t7381311540660765\tesp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj\t883fe421df1baaf1\n30717\t31303\t7381311663964400\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj\te5481b68211eaea1\n18475\t19042\t7381311541446093\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj\t6699f01819985c90\n18500\t19066\t7381311541746046\tesp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj\tac46325d74158549\n18581\t19106\t7381311542631346\tesp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj\t73b7abc1454714f4\n31383\t31976\t7381311670661684\tesp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj\t555885060e13e075\n18632\t19113\t7381311543098521\tesp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj\t137f73a02bec1cde\n18660\t19117\t7381311543448531\tesp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj\t784f0089cbd3db02\n21211\t21333\t7381311569693256\tesp-idf/esp_phy/libesp_phy.a\ta0c5abc97f1eb767\n18687\t19120\t7381311543698503\tesp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj\tb5e607393882dfc7\n18715\t19124\t7381311543978556\tesp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj\tea621b8fc7435df1\n18742\t19127\t7381311544123671\tesp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj\tef5977b658b5eeef\n18768\t19131\t7381311544453668\tesp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj\t1c55b354f4428755\n18824\t19138\t7381311545004906\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj\ta25aa98062e5565c\n18934\t19152\t7381311546148365\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj\t85415e45de34a508\n18965\t19156\t7381311546468343\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj\t73e077cf92b36eb0\n18989\t19160\t7381311546738459\tesp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj\tb4bd7e8312056494\n19176\t19315\t7381311549519270\tesp-idf/ulp/libulp.a\t678fc92afb845cf\n27177\t27774\t7381311628591610\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj\t39215366be12ca8c\n19316\t19427\t7381311550610447\tesp-idf/esp_https_ota/libesp_https_ota.a\t1761c669f550d2db\n19655\t19771\t7381311554071135\tesp-idf/tcp_transport/libtcp_transport.a\t451d3eeea8ff3f92\n20129\t20238\t7381311558739291\tesp-idf/esp-tls/libesp-tls.a\ted74896e5fa41059\n32678\t33196\t7381311686209583\tesp-idf/espcoredump/libespcoredump.a\t99279a82ddca4835\n20238\t20348\t7381311559844505\tesp-idf/http_parser/libhttp_parser.a\t391ac483b1ce4bee\n31216\t31820\t7381311668936052\tesp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj\t5d9510d519bcd996\n31682\t32267\t7381311673618404\tesp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj\t929923d96141c50a\n20467\t20568\t7381311562037575\tesp-idf/esp_coex/libesp_coex.a\teb18ecac1cc8ae9\n20747\t20871\t7381311565064873\tesp-idf/esp_netif/libesp_netif.a\tf43e831c024ed0c0\n20871\t21062\t7381311566985263\tesp-idf/lwip/liblwip.a\t9f289af432220aea\n21066\t21211\t7381311568446310\tesp-idf/vfs/libvfs.a\t203ab0063b44457c\n25718\t25930\t7381311615636751\tesp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\t145c5a6eaad8336f\n21333\t21467\t7381311570988624\tesp-idf/nvs_flash/libnvs_flash.a\t9fca5d25e31b118d\n21468\t21591\t7381311572269065\tesp-idf/esp_event/libesp_event.a\t44ef1a154941bd22\n21591\t21700\t7381311573364298\tesp-idf/esp_timer/libesp_timer.a\tf6c1b3e3ad6bee75\n21700\t21817\t7381311574519483\tesp-idf/esp_common/libesp_common.a\t21986d3374f0e2ac\n21817\t21925\t7381311575604803\tesp-idf/cxx/libcxx.a\tbabb5211992677ee\n21926\t22048\t7381311576839973\tesp-idf/newlib/libnewlib.a\te82e159badba0419\n22049\t22181\t7381311578155664\tesp-idf/freertos/libfreertos.a\tce32130d0218537f\n31652\t32237\t7381311673297628\tesp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj\tcc6ad8009f2f0591\n22183\t22342\t7381311579764755\tesp-idf/esp_hw_support/libesp_hw_support.a\t811ca00d24ecc5d5\n27611\t28206\t7381311632887876\tesp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag.c.obj\tb24d1a57dfb6227c\n4864\t22489\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-configure\t8ccde03e4d6533a2\n4864\t22489\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure\t8ccde03e4d6533a2\n22472\t22589\t7381311582250490\tesp-idf/heap/libheap.a\tb6c5e1971c2e9372\n23387\t23576\t7381311592118887\tesp-idf/pthread/libpthread.a\tde5811475b0e3fc1\n28327\t28880\t7381311640016841\tesp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj\tf1f7ca115dd79330\n32855\t33222\t7381311687733738\tesp-idf/spiffs/libspiffs.a\tb34f40f65cb10889\n23961\t24165\t7381311598013008\tesp-idf/app_update/libapp_update.a\tf8f62309fbc52942\n24165\t24371\t7381311600054291\tesp-idf/esp_partition/libesp_partition.a\t767ff908ee630029\n25037\t25210\t7381311608436675\tesp-idf/mbedtls/mbedtls/library/libmbedx509.a\tde059aacaa3ac8df\n25931\t26156\t7381311617727450\tesp-idf/mbedtls/x509_crt_bundle\t168d747360d02401\n32336\t32875\t7381311680170249\tesp-idf/main/CMakeFiles/__idf_main.dir/i2cdev.c.obj\ta8487901759bf1aa\n25931\t26156\t7381311617727450\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/x509_crt_bundle\t168d747360d02401\n26157\t26310\t7381311619435203\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/x509_crt_bundle.S\t39fae335d6bfba84\n27154\t27745\t7381311628266213\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj\tc18bd50c22b0cb84\n32560\t33162\t7381311684178646\tesp-idf/console/libconsole.a\tb09e20c040fc9e80\n26430\t26951\t7381311621135825\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj\t96612cabd1a7d199\n26516\t27023\t7381311622001067\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj\ta8a0d1f4315dbe7\n28734\t29307\t7381311644081757\tesp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj\t135da9ea8abb8a25\n26571\t27072\t7381311622426474\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj\t8a3f40c4bdb2da98\n26593\t27100\t7381311622666990\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj\tf29c2874634693b9\n26617\t27126\t7381311622896611\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj\t86ed9a8461a0271b\n26659\t27174\t7381311623357045\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj\t647309257b05ef60\n26683\t27204\t7381311623554017\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj\td096b8dafe4ceaff\n26725\t27257\t7381311623953960\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj\t67f14f0d7abf8cf6\n31183\t31789\t7381311668600816\tesp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj\td5a0495a4cbcd87f\n26845\t27410\t7381311625299606\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj\t5d2d8a9c43c23ffa\n26876\t27436\t7381311625535572\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj\t4680f1ef66055446\n32520\t33154\t7381311681956784\tesp-idf/main/CMakeFiles/__idf_main.dir/icm42670.c.obj\t72ee8034cb990218\n26901\t27466\t7381311625785183\tesp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj\t82b7390df9f3f378\n26954\t27523\t7381311626305343\tesp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj\tf3789b8cdb1a6470\n26977\t27550\t7381311626540686\tesp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj\t60dde08bd1ccb98a\n27026\t27607\t7381311626980754\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj\t5d545bb5feb0bb87\n27075\t27661\t7381311627536244\tesp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj\t43dbe37db8ba724\n27207\t27801\t7381311628862059\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj\t963e717c959a0a5d\n27261\t27860\t7381311629506903\tesp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj\t98e637631cab73b7\n27440\t28032\t7381311631186948\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj\t57aa29799f2cb763\n27501\t28085\t7381311631772109\tesp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj\t24be98f1730abddb\n27665\t28260\t7381311633407873\tesp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj\ta9e4cf09239f490a\n27692\t28294\t7381311633703039\tesp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj\t26f6e05cb0fe5e47\n27778\t28378\t7381311634568533\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj\tc6b4061d7bc6eb3b\n27805\t28408\t7381311634788571\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj\t71e78c809e555307\n27837\t28433\t7381311635148551\tesp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj\t209a5516af090932\n27980\t28570\t7381311636556475\tesp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj\tdaae22f622685ba\n28006\t28596\t7381311636856477\tesp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj\tc00d2cafe0a701dc\n28210\t28783\t7381311638868894\tesp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj\t7fc132a5881e8674\n28383\t28950\t7381311640594617\tesp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj\t62ae331ada3749a1\n28412\t28974\t7381311640804672\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj\t86213782fefa6ea6\n32400\t32914\t7381311680801569\tesp-idf/main/CMakeFiles/__idf_main.dir/RdWr_Byte.c.obj\td1f448a814de8290\n28466\t29025\t7381311641374667\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj\te1de430b627fe83f\n28493\t29051\t7381311641620205\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj\t5a151be2df5d27f9\n31131\t31734\t7381311668090687\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj\t61f4603c1b965432\n28518\t29075\t7381311641870189\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj\t24d2e714e123147d\n28543\t29100\t7381311642180166\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj\ta2bf3d0ab9921dff\n28574\t29136\t7381311642440211\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj\t9f98f4a15cfe54f6\n28600\t29160\t7381311642715314\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj\t725bf7e666d0295e\n28629\t29191\t7381311642985713\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj\t989f1b6751701d76\n28653\t29222\t7381311643295328\tesp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj\t5634597554b2380f\n28812\t29389\t7381311644826950\tesp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj\t72ae2df08617ea79\n29003\t29586\t7381311646727704\tesp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj\t8654de3f071c01c5\n37207\t37295\t7381311729169762\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-done\t63389758a99136f0\n29140\t29731\t7381311648083300\tesp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj\tc2bcf56ace2b0d2\n29164\t29758\t7381311648423292\tesp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj\t70b7176f7eb69c0a\n30766\t31352\t7381311664458228\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj\t2652bebf276b6e4d\n29195\t29788\t7381311648738716\tesp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj\t90226678635ab8e3\n29225\t29814\t7381311648978734\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj\t89b46581f755ca32\n31903\t32516\t7381311675783968\tesp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj\ta1f67b6e3b582c0f\n29366\t29958\t7381311650419576\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj\t582aeb8693609cf2\n29392\t29990\t7381311650674024\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj\ta5ccc6657b9b3fcc\n29416\t30026\t7381311651639316\tesp-idf/esp_pm/libesp_pm.a\t6a1fb422607e6b66\n29431\t30047\t7381311651124008\tesp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj\tc3622a5fc6b74992\n29555\t30193\t7381311652329225\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj\t92a65a6ddace2387\n29646\t30315\t7381311653204648\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj\tce3e1f025819168b\n29708\t30383\t7381311653789801\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj\tb8e2dc06aec3bdfd\n29818\t30508\t7381311654961358\tesp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj\t3f7082c1427e966b\n29962\t30681\t7381311656426603\tesp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj\t946e7c9b43b39785\n30051\t30762\t7381311657262015\tesp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj\tf83b108f21052368\n30155\t30869\t7381311658506931\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj\td4b625ef501e215\n30199\t30899\t7381311658882358\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj\t8d3a5c7d23025722\n30239\t30927\t7381311659242115\tesp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj\t2156986d75a7ffd0\n30356\t31009\t7381311660326458\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj\t7cfa050224c86910\n30482\t31101\t7381311661572871\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj\t1dc52d89b19d0689\n30545\t31155\t7381311662248918\tesp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj\te8d75857103bed32\n30581\t31178\t7381311662619786\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj\t5177a97885d8da71\n30616\t31212\t7381311662984724\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj\tcb9359b39f76153a\n30651\t31241\t7381311663324742\tesp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj\t8f31fa916ebb444f\n30747\t31337\t7381311665023780\tesp-idf/efuse/libefuse.a\t5376fe118b9f2e85\n30798\t31380\t7381311664803826\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj\t327d33444e94cd7e\n30832\t31417\t7381311665173981\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj\t6a3588f7213d265e\n30874\t31454\t7381311665473424\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj\t1268e572cedcd4ef\n30961\t31534\t7381311666329696\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj\td1982ebef1ce86f\n31034\t31617\t7381311667065173\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj\t32d7d0bd506857fa\n31080\t31678\t7381311667565319\tesp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj\tbd9ae476c1ec9da5\n31246\t31845\t7381311669286074\tesp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj\ta684d71b5c6cf32c\n31280\t31873\t7381311669671333\tesp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj\t67655df3239e45cc\n31307\t31900\t7381311669903342\tesp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj\t286a51fb61fa127a\n31356\t31947\t7381311670283261\tesp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj\t3e027b1b2fe60c2a\n31420\t32010\t7381311671016896\tesp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj\t61ced8022457c49d\n31458\t32050\t7381311671266900\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj\tbf85e826f6a5e87b\n31509\t32104\t7381311671812108\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj\t4c915986a4fde2a2\n31566\t32154\t7381311672372136\tesp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj\te7ab2e7583c0f9bc\n31765\t32365\t7381311674423182\tesp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj\t876d12b9a385e1f5\n31824\t32428\t7381311674968482\tesp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj\tffd5ec2b0f2a1611\n31848\t32458\t7381311675258435\tesp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj\t6d5d23e6182a5791\n31927\t32544\t7381311676809630\tesp-idf/xtensa/libxtensa.a\tdcb11c71346a25cd\n31978\t32572\t7381311676644231\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj\ta4cebc80d0fbe629\n40045\t40073\t7381311757110941\tCMakeFiles/main.elf.dir/project_elf_src_esp32s3.c.obj\td0a61c7f651b5fe5\n32012\t32598\t7381311677019597\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj\tc19c5ad26f9d277a\n32079\t32649\t7381311677509584\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj\t77b17da666042e8e\n32107\t32675\t7381311677759774\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj\te08e82cb39452475\n33102\t33229\t7381311688019047\tesp-idf/st7789/CMakeFiles/__idf_st7789.dir/fontx.c.obj\tcd2743be4e0055\n32132\t32708\t7381311678075070\tesp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj\t74c4b67e6c2de133\n32299\t32848\t7381311679801291\tesp-idf/main/CMakeFiles/__idf_main.dir/decode_png.c.obj\te4baf9bda33894ec\n32462\t33092\t7381311681391551\tesp-idf/main/CMakeFiles/__idf_main.dir/ds3231.c.obj\t1cf2e71c17b14c40\n32601\t33182\t7381311684698818\tesp-idf/esp_hid/libesp_hid.a\t3013ff8c9bde7ff\n32629\t33183\t7381311684984130\tesp-idf/esp_lcd/libesp_lcd.a\t7208b5b7165f7e76\n32712\t33197\t7381311686803921\tesp-idf/wear_levelling/libwear_levelling.a\t87c44b6dfc1baf81\n32746\t33197\t7381311686623755\tesp-idf/sdmmc/libsdmmc.a\t5e7b124ba2e49550\n32768\t33212\t7381311687243577\tesp-idf/json/libjson.a\t8ce97aed1de39779\n47\t698\t7403416767624189\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n32799\t33220\t7381311687093554\tesp-idf/mqtt/libmqtt.a\t7c06d6ab0177c2d1\n32830\t33221\t7381311687533589\tesp-idf/perfmon/libperfmon.a\t971e2f8289bbaf24\n32922\t33224\t7381311688169047\tesp-idf/usb/libusb.a\t6408f2d23e5a1eaa\n32961\t33224\t7381311687463503\tesp-idf/st7789/CMakeFiles/__idf_st7789.dir/st7789.c.obj\t9b987371d32d772d\n33184\t33364\t7381311689638710\tesp-idf/protocomm/libprotocomm.a\tf30eac7788417ea8\n33198\t33403\t7381311689748444\tesp-idf/fatfs/libfatfs.a\te938f29d939cd352\n33371\t33559\t7381311691952143\tesp-idf/esp_local_ctrl/libesp_local_ctrl.a\t6a96f5cf0582d63b\n41\t250\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t250\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t250\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t250\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n37207\t37295\t7381311729169762\tbootloader-prefix/src/bootloader-stamp/bootloader-done\t63389758a99136f0\n781\t5159\t7403416812207712\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n31\t116\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t116\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t162\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t162\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n49\t710\t7403418462363727\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n717\t798\t7403418463374977\tesp-idf/main/libmain.a\t68f787ce7000df5d\n798\t5271\t7403418507950661\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n798\t5271\t7403418507950661\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5273\t7868\t7403418533938765\tmain.elf\t3a942194b5bb43f9\n7868\t8056\t7403418535969589\t.bin_timestamp\t800023535603c814\n7868\t8056\t7403418535969589\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8057\t8119\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8057\t8119\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n34\t167\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t167\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n101\t191\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n101\t191\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n69\t243\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n69\t243\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n243\t15373\t0\tCMakeFiles/flash\teabf156acce8dac7\n243\t15373\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t125\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t170\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t170\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t710\t7403418987281035\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n718\t784\t7403418988161421\tesp-idf/main/libmain.a\t68f787ce7000df5d\n785\t5254\t7403419032704764\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n785\t5254\t7403419032704764\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5256\t7637\t7403419056552964\tmain.elf\t3a942194b5bb43f9\n7638\t7821\t7403419058536436\t.bin_timestamp\t800023535603c814\n7638\t7821\t7403419058536436\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7822\t7877\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7822\t7877\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t149\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t149\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t224\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t224\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n224\t15294\t0\tCMakeFiles/flash\teabf156acce8dac7\n224\t15294\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t174\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n50\t744\t7403422470586818\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n751\t824\t7403422471515147\tesp-idf/main/libmain.a\t68f787ce7000df5d\n825\t5346\t7403422516575222\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n825\t5346\t7403422516575222\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5348\t7718\t7403422540306236\tmain.elf\t3a942194b5bb43f9\n7719\t7919\t7403422542456205\t.bin_timestamp\t800023535603c814\n7719\t7919\t7403422542456205\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7919\t7978\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7919\t7978\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n65\t136\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n65\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n34\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n51\t182\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n51\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n183\t15256\t0\tCMakeFiles/flash\teabf156acce8dac7\n183\t15256\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t128\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n38\t165\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n38\t165\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t692\t7403423099996074\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n699\t766\t7403423100847445\tesp-idf/main/libmain.a\t68f787ce7000df5d\n766\t5267\t7403423145718855\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n766\t5267\t7403423145718855\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5269\t7596\t7403423169001669\tmain.elf\t3a942194b5bb43f9\n7596\t7781\t7403423171001938\t.bin_timestamp\t800023535603c814\n7596\t7781\t7403423171001938\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7782\t7840\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7782\t7840\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n56\t136\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n56\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n45\t228\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t228\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n228\t15376\t0\tCMakeFiles/flash\teabf156acce8dac7\n228\t15376\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t117\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t117\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t167\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t690\t7403423896308878\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n698\t768\t7403423897222155\tesp-idf/main/libmain.a\t68f787ce7000df5d\n769\t5173\t7403423941107356\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n769\t5173\t7403423941107356\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5175\t7528\t7403423964672638\tmain.elf\t3a942194b5bb43f9\n7528\t7729\t7403423966828582\t.bin_timestamp\t800023535603c814\n7528\t7729\t7403423966828582\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7729\t7791\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7729\t7791\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t121\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t121\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n51\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n51\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t196\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n196\t15338\t0\tCMakeFiles/flash\teabf156acce8dac7\n196\t15338\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n34\t132\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t132\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n48\t176\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n48\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n59\t739\t7403424224320054\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n746\t825\t7403424225317131\tesp-idf/main/libmain.a\t68f787ce7000df5d\n826\t5225\t7403424269131420\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n826\t5225\t7403424269131420\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5227\t7578\t7403424292665806\tmain.elf\t3a942194b5bb43f9\n7579\t7772\t7403424294791247\t.bin_timestamp\t800023535603c814\n7579\t7772\t7403424294791247\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7773\t7828\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7773\t7828\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n52\t128\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n52\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t176\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n176\t15301\t0\tCMakeFiles/flash\teabf156acce8dac7\n176\t15301\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t115\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t115\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t167\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n47\t720\t7403428237698389\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n727\t799\t7403428238620781\tesp-idf/main/libmain.a\t68f787ce7000df5d\n800\t5346\t7403428283937458\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n800\t5346\t7403428283937458\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5348\t7728\t7403428307749481\tmain.elf\t3a942194b5bb43f9\n7732\t7922\t7403428309853118\t.bin_timestamp\t800023535603c814\n7732\t7922\t7403428309853118\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7922\t7984\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7922\t7984\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t125\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n49\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n49\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n39\t195\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n195\t15290\t0\tCMakeFiles/flash\teabf156acce8dac7\n195\t15290\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t134\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n47\t192\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n59\t768\t7403429241752543\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n775\t848\t7403429242710062\tesp-idf/main/libmain.a\t68f787ce7000df5d\n848\t5376\t7403429287831288\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n848\t5376\t7403429287831288\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5378\t7759\t7403429311698039\tmain.elf\t3a942194b5bb43f9\n7759\t7953\t7403429313772575\t.bin_timestamp\t800023535603c814\n7759\t7953\t7403429313772575\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7953\t8011\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7953\t8011\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t129\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t129\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t205\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t205\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n205\t15318\t0\tCMakeFiles/flash\teabf156acce8dac7\n205\t15318\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t166\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n50\t723\t7403429948787092\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n731\t822\t7403429949937088\tesp-idf/main/libmain.a\t68f787ce7000df5d\n823\t5334\t7403429994881611\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n823\t5334\t7403429994881611\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5336\t7687\t7403430018460687\tmain.elf\t3a942194b5bb43f9\n7688\t7877\t7403430020490008\t.bin_timestamp\t800023535603c814\n7688\t7877\t7403430020490008\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7877\t7933\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7877\t7933\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t133\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t133\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n50\t145\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n50\t145\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t185\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n185\t15254\t0\tCMakeFiles/flash\teabf156acce8dac7\n185\t15254\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t114\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t114\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t159\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t159\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t697\t7403430950396849\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n704\t772\t7403430951279503\tesp-idf/main/libmain.a\t68f787ce7000df5d\n772\t5246\t7403430995854299\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n772\t5246\t7403430995854299\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5248\t7616\t7403431019559246\tmain.elf\t3a942194b5bb43f9\n7617\t7799\t7403431021557357\t.bin_timestamp\t800023535603c814\n7617\t7799\t7403431021557357\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7800\t7862\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7800\t7862\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t142\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t142\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t200\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n201\t15311\t0\tCMakeFiles/flash\teabf156acce8dac7\n201\t15311\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t116\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t116\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t175\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t699\t7403432437216010\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n706\t774\t7403432438104119\tesp-idf/main/libmain.a\t68f787ce7000df5d\n775\t5224\t7403432482408215\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n775\t5224\t7403432482408215\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5226\t7614\t7403432506375699\tmain.elf\t3a942194b5bb43f9\n7615\t7811\t7403432508468553\t.bin_timestamp\t800023535603c814\n7615\t7811\t7403432508468553\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7811\t7870\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7811\t7870\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t125\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t129\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t129\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n43\t174\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n174\t15349\t0\tCMakeFiles/flash\teabf156acce8dac7\n174\t15349\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n44\t173\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t173\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n55\t725\t7403433835328479\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n732\t802\t7403433836243932\tesp-idf/main/libmain.a\t68f787ce7000df5d\n803\t5269\t7403433880743465\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n803\t5269\t7403433880743465\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5271\t7626\t7403433904334027\tmain.elf\t3a942194b5bb43f9\n7626\t7816\t7403433906389846\t.bin_timestamp\t800023535603c814\n7626\t7816\t7403433906389846\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7817\t7873\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7817\t7873\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t120\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t120\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n49\t125\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n49\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t167\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t167\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n167\t15269\t0\tCMakeFiles/flash\teabf156acce8dac7\n167\t15269\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t116\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t116\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t172\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t172\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t705\t7403434952528126\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n713\t782\t7403434953413621\tesp-idf/main/libmain.a\t68f787ce7000df5d\n782\t5177\t7403434997203058\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n782\t5177\t7403434997203058\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5179\t7507\t7403435020546961\tmain.elf\t3a942194b5bb43f9\n7507\t7723\t7403435022831529\t.bin_timestamp\t800023535603c814\n7507\t7723\t7403435022831529\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7723\t7788\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7723\t7788\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t139\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n49\t160\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n49\t160\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t193\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n194\t15365\t0\tCMakeFiles/flash\teabf156acce8dac7\n194\t15365\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t112\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t112\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t156\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t156\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t710\t7403435708762686\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n718\t792\t7403435709724169\tesp-idf/main/libmain.a\t68f787ce7000df5d\n793\t5172\t7403435753365506\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n793\t5172\t7403435753365506\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5174\t7804\t7403435779712720\tmain.elf\t3a942194b5bb43f9\n7805\t7992\t7403435781726542\t.bin_timestamp\t800023535603c814\n7805\t7992\t7403435781726542\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7993\t8050\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7993\t8050\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t139\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n184\t15286\t0\tCMakeFiles/flash\teabf156acce8dac7\n184\t15286\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t123\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t123\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t168\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t168\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n53\t713\t7403438235067813\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n721\t800\t7403438236077451\tesp-idf/main/libmain.a\t68f787ce7000df5d\n801\t5477\t7403438281932952\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n801\t5477\t7403438281932952\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5480\t8072\t7403438308636878\tmain.elf\t3a942194b5bb43f9\n8072\t8269\t7403438310775153\t.bin_timestamp\t800023535603c814\n8072\t8269\t7403438310775153\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8270\t8329\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8270\t8329\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t119\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t119\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n52\t124\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n52\t124\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t166\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t166\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n166\t15308\t0\tCMakeFiles/flash\teabf156acce8dac7\n166\t15308\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t111\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t111\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t163\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t163\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n48\t732\t7403439062452958\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n740\t816\t7403439063452063\tesp-idf/main/libmain.a\t68f787ce7000df5d\n817\t5311\t7403439108230932\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n817\t5311\t7403439108230932\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5313\t7670\t7403439131844493\tmain.elf\t3a942194b5bb43f9\n7670\t7897\t7403439134158323\t.bin_timestamp\t800023535603c814\n7670\t7897\t7403439134158323\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7897\t7958\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7897\t7958\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n51\t128\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n51\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t179\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t179\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n179\t15324\t0\tCMakeFiles/flash\teabf156acce8dac7\n179\t15324\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n52\t117\t7403439492795823\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n31\t131\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t131\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t174\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t174\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n125\t195\t7403439493570047\tesp-idf/main/libmain.a\t68f787ce7000df5d\n196\t4675\t7403439538207986\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n196\t4675\t7403439538207986\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n4677\t7032\t7403439561783691\tmain.elf\t3a942194b5bb43f9\n7032\t7227\t7403439563888891\t.bin_timestamp\t800023535603c814\n7032\t7227\t7403439563888891\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7227\t7285\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7227\t7285\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n58\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n58\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t137\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t137\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t181\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t181\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n181\t15326\t0\tCMakeFiles/flash\teabf156acce8dac7\n181\t15326\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t131\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t131\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t171\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t171\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t724\t7403442492855862\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n731\t799\t7403442493879052\tesp-idf/main/libmain.a\t68f787ce7000df5d\n800\t5219\t7403442537917011\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n800\t5219\t7403442537917011\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5221\t7570\t7403442561431542\tmain.elf\t3a942194b5bb43f9\n7571\t7765\t7403442563533723\t.bin_timestamp\t800023535603c814\n7571\t7765\t7403442563533723\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7765\t7821\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7765\t7821\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t118\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t118\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n50\t125\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n50\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n39\t164\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t164\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n165\t15381\t0\tCMakeFiles/flash\teabf156acce8dac7\n165\t15381\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n35\t147\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n35\t147\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n49\t210\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n49\t210\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n59\t941\t7404327667345365\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n948\t1032\t7404327668411250\tesp-idf/main/libmain.a\t68f787ce7000df5d\n1033\t5968\t7404327717594425\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n1033\t5968\t7404327717594425\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5971\t8783\t7404327745786613\tmain.elf\t3a942194b5bb43f9\n8784\t9024\t7404327748351395\t.bin_timestamp\t800023535603c814\n8784\t9024\t7404327748351395\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n9027\t9098\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n9027\t9098\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n36\t241\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n36\t241\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n84\t275\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n84\t275\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n68\t495\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n68\t495\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n33\t133\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t133\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t195\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n32\t145\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t145\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t149\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t149\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t213\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t213\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t172\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t172\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t174\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t174\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t225\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t225\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n35\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n35\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n62\t144\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n62\t144\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n50\t218\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n50\t218\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n218\t15175\t0\tCMakeFiles/flash\teabf156acce8dac7\n218\t15175\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n45\t197\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n55\t757\t7404335978163120\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n764\t838\t7404335979110835\tesp-idf/main/libmain.a\t68f787ce7000df5d\n839\t5577\t7404336026343621\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n839\t5577\t7404336026343621\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5579\t7931\t7404336049899959\tmain.elf\t3a942194b5bb43f9\n7932\t8123\t7404336051966270\t.bin_timestamp\t800023535603c814\n7932\t8123\t7404336051966270\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8124\t8189\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8124\t8189\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t129\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t129\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t843\t7404687062957759\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n850\t939\t7404687064068046\tesp-idf/main/libmain.a\t68f787ce7000df5d\n940\t5846\t7404687112947983\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n940\t5846\t7404687112947983\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5848\t8234\t7404687136873903\tmain.elf\t3a942194b5bb43f9\n8235\t8476\t7404687139348930\t.bin_timestamp\t800023535603c814\n8235\t8476\t7404687139348930\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8476\t8539\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8476\t8539\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t181\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t181\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n77\t187\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n77\t187\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n63\t253\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n63\t253\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n253\t15460\t0\tCMakeFiles/flash\teabf156acce8dac7\n253\t15460\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n34\t145\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t145\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t197\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t197\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n52\t385\t7404687390482777\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n392\t474\t7404687391427819\tesp-idf/main/libmain.a\t68f787ce7000df5d\n474\t5161\t7404687438113306\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n474\t5161\t7404687438113306\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5163\t7525\t7404687461715836\tmain.elf\t3a942194b5bb43f9\n7526\t7730\t7404687463991161\t.bin_timestamp\t800023535603c814\n7526\t7730\t7404687463991161\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7730\t7789\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7730\t7789\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n36\t187\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n36\t187\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n63\t207\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n63\t207\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n47\t294\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t294\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n295\t15461\t0\tCMakeFiles/flash\teabf156acce8dac7\n295\t15461\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n54\t141\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t141\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t143\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t143\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t190\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n67\t163\t7405980736782303\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n44\t180\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n44\t180\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t206\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n55\t206\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n171\t272\t7405980737872003\tesp-idf/main/libmain.a\t68f787ce7000df5d\n273\t5286\t7405980787827910\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n273\t5286\t7405980787827910\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5288\t7943\t7405980814433622\tmain.elf\t3a942194b5bb43f9\n7944\t8158\t7405980816736322\t.bin_timestamp\t800023535603c814\n7944\t8158\t7405980816736322\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8159\t8230\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8159\t8230\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t125\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t177\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n30\t123\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t123\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t175\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t175\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n53\t835\t7406043887371939\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n842\t928\t7406043888477198\tesp-idf/main/libmain.a\t68f787ce7000df5d\n929\t5467\t7406043933678904\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n929\t5467\t7406043933678904\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5470\t8203\t7406043961005721\tmain.elf\t3a942194b5bb43f9\n8203\t8412\t7406043963323859\t.bin_timestamp\t800023535603c814\n8203\t8412\t7406043963323859\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8413\t8484\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8413\t8484\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n34\t140\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t140\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n60\t156\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n60\t156\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n43\t209\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t209\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n209\t15082\t0\tCMakeFiles/flash\teabf156acce8dac7\n209\t15082\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n34\t144\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t144\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n45\t194\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t194\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n58\t742\t7406051283314519\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n749\t841\t7406051284440146\tesp-idf/main/libmain.a\t68f787ce7000df5d\n841\t5355\t7406051329416303\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n841\t5355\t7406051329416303\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5357\t7934\t7406051355222697\tmain.elf\t3a942194b5bb43f9\n7934\t8139\t7406051357415270\t.bin_timestamp\t800023535603c814\n7934\t8139\t7406051357415270\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8140\t8207\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8140\t8207\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t191\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n192\t15185\t0\tCMakeFiles/flash\teabf156acce8dac7\n192\t15185\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t127\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n55\t133\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t133\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n34\t136\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n45\t188\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n188\t15153\t0\tCMakeFiles/flash\teabf156acce8dac7\n188\t15153\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t140\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t140\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t141\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t141\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t190\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t190\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n31\t124\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t124\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t133\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t133\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t189\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t189\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n189\t15186\t0\tCMakeFiles/flash\teabf156acce8dac7\n189\t15186\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n55\t130\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t130\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n30\t135\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t186\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n31\t135\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n52\t139\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n52\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t193\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n194\t15119\t0\tCMakeFiles/flash\teabf156acce8dac7\n194\t15119\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n36\t141\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n36\t141\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n59\t146\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n59\t146\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n46\t198\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n46\t198\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n42\t162\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t162\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n69\t175\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n69\t175\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n56\t299\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n56\t299\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n299\t15240\t0\tCMakeFiles/flash\teabf156acce8dac7\n299\t15240\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t183\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n55\t741\t7406056090142436\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n750\t836\t7406056091222594\tesp-idf/main/libmain.a\t68f787ce7000df5d\n836\t5325\t7406056135963382\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n836\t5325\t7406056135963382\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5327\t7825\t7406056160980675\tmain.elf\t3a942194b5bb43f9\n7825\t8036\t7406056163234734\t.bin_timestamp\t800023535603c814\n7825\t8036\t7406056163234734\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8037\t8104\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8037\t8104\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n52\t130\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n52\t130\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t130\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t130\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n43\t183\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n184\t15172\t0\tCMakeFiles/flash\teabf156acce8dac7\n184\t15172\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t134\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t185\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n52\t727\t7406057020688435\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n734\t822\t7406057021781764\tesp-idf/main/libmain.a\t68f787ce7000df5d\n823\t5452\t7406057067915225\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n823\t5452\t7406057067915225\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5454\t7793\t7406057091345119\tmain.elf\t3a942194b5bb43f9\n7794\t8004\t7406057093595118\t.bin_timestamp\t800023535603c814\n7794\t8004\t7406057093595118\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8004\t8074\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8004\t8074\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t138\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t138\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n59\t139\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n59\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n48\t195\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n48\t195\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n195\t15125\t0\tCMakeFiles/flash\teabf156acce8dac7\n195\t15125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n33\t139\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n44\t196\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t196\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n58\t749\t7406059329676592\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n756\t845\t7406059330761796\tesp-idf/main/libmain.a\t68f787ce7000df5d\n846\t5426\t7406059376423133\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n846\t5426\t7406059376423133\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5428\t7797\t7406059400133001\tmain.elf\t3a942194b5bb43f9\n7798\t8012\t7406059402433010\t.bin_timestamp\t800023535603c814\n7798\t8012\t7406059402433010\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8012\t8078\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8012\t8078\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t137\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t137\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t183\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n184\t15165\t0\tCMakeFiles/flash\teabf156acce8dac7\n184\t15165\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n35\t123\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n35\t123\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n46\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n46\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n58\t735\t7406059852524245\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n742\t826\t7406059853571509\tesp-idf/main/libmain.a\t68f787ce7000df5d\n827\t5589\t7406059901044841\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n827\t5589\t7406059901044841\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5591\t7932\t7406059924457089\tmain.elf\t3a942194b5bb43f9\n7933\t8143\t7406059926747091\t.bin_timestamp\t800023535603c814\n7933\t8143\t7406059926747091\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8143\t8213\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8143\t8213\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t135\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n44\t188\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n188\t15147\t0\tCMakeFiles/flash\teabf156acce8dac7\n188\t15147\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t123\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t123\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t187\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t750\t7406060304475994\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n758\t839\t7406060305517905\tesp-idf/main/libmain.a\t68f787ce7000df5d\n840\t5445\t7406060351423667\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n840\t5445\t7406060351423667\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5447\t7783\t7406060374823112\tmain.elf\t3a942194b5bb43f9\n7784\t7996\t7406060377095431\t.bin_timestamp\t800023535603c814\n7784\t7996\t7406060377095431\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7997\t8064\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7997\t8064\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n56\t131\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n56\t131\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n43\t187\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t187\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n187\t15180\t0\tCMakeFiles/flash\teabf156acce8dac7\n187\t15180\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t185\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t748\t7406063340971733\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n756\t844\t7406063342069070\tesp-idf/main/libmain.a\t68f787ce7000df5d\n845\t5788\t7406063391356016\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n845\t5788\t7406063391356016\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5790\t8107\t7406063414547774\tmain.elf\t3a942194b5bb43f9\n8108\t8316\t7406063416786892\t.bin_timestamp\t800023535603c814\n8108\t8316\t7406063416786892\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8317\t8391\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8317\t8391\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t121\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t121\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t128\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t177\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t177\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n177\t15448\t0\tCMakeFiles/flash\teabf156acce8dac7\n177\t15448\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t128\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t725\t7406064510709137\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n732\t819\t7406064511771946\tesp-idf/main/libmain.a\t68f787ce7000df5d\n820\t5359\t7406064557011401\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n820\t5359\t7406064557011401\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5361\t7670\t7406064580137060\tmain.elf\t3a942194b5bb43f9\n7670\t7886\t7406064582432849\t.bin_timestamp\t800023535603c814\n7670\t7886\t7406064582432849\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7886\t7953\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7886\t7953\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t124\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t124\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t129\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t129\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t186\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n186\t15405\t0\tCMakeFiles/flash\teabf156acce8dac7\n186\t15405\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t124\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t124\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t182\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t746\t7406066010935385\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n754\t846\t7406066012080212\tesp-idf/main/libmain.a\t68f787ce7000df5d\n846\t5403\t7406066057486457\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n846\t5403\t7406066057486457\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5405\t7694\t7406066080413510\tmain.elf\t3a942194b5bb43f9\n7695\t7901\t7406066082626424\t.bin_timestamp\t800023535603c814\n7695\t7901\t7406066082626424\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7901\t7972\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7901\t7972\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t133\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t133\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t134\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n43\t193\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n193\t15339\t0\tCMakeFiles/flash\teabf156acce8dac7\n193\t15339\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t123\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t123\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t180\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t723\t7406066743510477\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n730\t813\t7406066744567812\tesp-idf/main/libmain.a\t68f787ce7000df5d\n814\t5441\t7406066790662310\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n814\t5441\t7406066790662310\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5443\t7888\t7406066815172303\tmain.elf\t3a942194b5bb43f9\n7888\t8099\t7406066817420008\t.bin_timestamp\t800023535603c814\n7888\t8099\t7406066817420008\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8100\t8168\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8100\t8168\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n37\t135\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n37\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n62\t143\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n62\t143\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n47\t200\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n47\t200\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n200\t15439\t0\tCMakeFiles/flash\teabf156acce8dac7\n200\t15439\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t130\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t130\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t183\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t183\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n52\t746\t7406067616544006\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n753\t842\t7406067617644069\tesp-idf/main/libmain.a\t68f787ce7000df5d\n843\t5404\t7406067663103116\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n843\t5404\t7406067663103116\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5406\t7708\t7406067686166787\tmain.elf\t3a942194b5bb43f9\n7709\t7915\t7406067688374234\t.bin_timestamp\t800023535603c814\n7709\t7915\t7406067688374234\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7915\t7979\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7915\t7979\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n41\t186\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t186\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n186\t15406\t0\tCMakeFiles/flash\teabf156acce8dac7\n186\t15406\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n29\t121\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n29\t121\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n39\t176\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n39\t176\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t723\t7406068281878186\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n731\t825\t7406068283028791\tesp-idf/main/libmain.a\t68f787ce7000df5d\n826\t5490\t7406068329516848\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n826\t5490\t7406068329516848\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5493\t7811\t7406068352738102\tmain.elf\t3a942194b5bb43f9\n7811\t8022\t7406068355000376\t.bin_timestamp\t800023535603c814\n7811\t8022\t7406068355000376\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8023\t8088\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8023\t8088\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n33\t134\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n33\t134\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t188\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n188\t15414\t0\tCMakeFiles/flash\teabf156acce8dac7\n188\t15414\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t180\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t724\t7406068863719285\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n731\t819\t7406068864811225\tesp-idf/main/libmain.a\t68f787ce7000df5d\n820\t5325\t7406068909706218\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n820\t5325\t7406068909706218\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5327\t7624\t7406068932705205\tmain.elf\t3a942194b5bb43f9\n7624\t7834\t7406068934944728\t.bin_timestamp\t800023535603c814\n7624\t7834\t7406068934944728\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7834\t7904\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7834\t7904\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t138\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t138\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t185\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t185\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n185\t15430\t0\tCMakeFiles/flash\teabf156acce8dac7\n185\t15430\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t182\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t182\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n53\t731\t7406069409927282\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n738\t827\t7406069411017697\tesp-idf/main/libmain.a\t68f787ce7000df5d\n828\t5414\t7406069456730191\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n828\t5414\t7406069456730191\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5416\t7702\t7406069479620205\tmain.elf\t3a942194b5bb43f9\n7702\t7905\t7406069481803945\t.bin_timestamp\t800023535603c814\n7702\t7905\t7406069481803945\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7906\t7975\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7906\t7975\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t140\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t140\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n56\t144\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n56\t144\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n45\t193\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n45\t193\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n34\t128\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t128\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n56\t140\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n56\t140\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n43\t191\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n43\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n31\t127\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t127\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n54\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n54\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t188\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n30\t219\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t219\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n51\t228\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n51\t228\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n40\t436\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t436\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n32\t131\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t131\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t131\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t131\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n184\t15426\t0\tCMakeFiles/flash\teabf156acce8dac7\n184\t15426\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n32\t125\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t125\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n41\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n41\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n55\t727\t7406070145086775\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n735\t820\t7406070146130425\tesp-idf/main/libmain.a\t68f787ce7000df5d\n820\t5413\t7406070191898601\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n820\t5413\t7406070191898601\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5415\t7762\t7406070215396882\tmain.elf\t3a942194b5bb43f9\n7762\t7988\t7406070217806705\t.bin_timestamp\t800023535603c814\n7762\t7988\t7406070217806705\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7989\t8064\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7989\t8064\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n55\t135\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n55\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t188\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t188\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n188\t15415\t0\tCMakeFiles/flash\teabf156acce8dac7\n188\t15415\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n89\t181\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n89\t181\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n102\t242\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n102\t242\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n32\t717\t7406070697480732\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n724\t806\t7406070698488779\tesp-idf/main/libmain.a\t68f787ce7000df5d\n806\t5382\t7406070744086096\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n806\t5382\t7406070744086096\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5384\t7666\t7406070766957319\tmain.elf\t3a942194b5bb43f9\n7667\t7878\t7406070769212119\t.bin_timestamp\t800023535603c814\n7667\t7878\t7406070769212119\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7879\t7949\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7879\t7949\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n32\t132\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n32\t132\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n53\t136\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n53\t136\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n42\t191\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n192\t15382\t0\tCMakeFiles/flash\teabf156acce8dac7\n192\t15382\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n31\t122\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t122\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n40\t180\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n40\t180\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n51\t738\t7406072465042872\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n745\t831\t7406072466121371\tesp-idf/main/libmain.a\t68f787ce7000df5d\n832\t5466\t7406072512313462\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n832\t5466\t7406072512313462\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5468\t7763\t7406072535293208\tmain.elf\t3a942194b5bb43f9\n7763\t7978\t7406072537581928\t.bin_timestamp\t800023535603c814\n7763\t7978\t7406072537581928\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n7979\t8046\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n7979\t8046\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n31\t135\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n31\t135\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n57\t139\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n57\t139\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t191\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t191\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n192\t15434\t0\tCMakeFiles/flash\teabf156acce8dac7\n192\t15434\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n30\t126\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n30\t126\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n42\t184\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n42\t184\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n54\t743\t7406075159767786\tesp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\tea40eb29f7cf4ea0\n750\t840\t7406075160854006\tesp-idf/main/libmain.a\t68f787ce7000df5d\n841\t5504\t7406075207335604\tesp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n841\t5504\t7406075207335604\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld\t88888fdd75ceb711\n5506\t7827\t7406075230585601\tmain.elf\t3a942194b5bb43f9\n7828\t8039\t7406075232840234\t.bin_timestamp\t800023535603c814\n7828\t8039\t7406075232840234\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\t800023535603c814\n8040\t8112\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n8040\t8112\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n34\t140\t0\tCMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n34\t140\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin\t6d2e89e523825cce\n57\t143\t0\tesp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n57\t143\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size\teebda9665c8fd6de\n44\t192\t7381311581245259\tbootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tbootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tbootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tbootloader/bootloader.map\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\ta0122a8befbdf5b0\n44\t192\t7381311581245259\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map\ta0122a8befbdf5b0\n192\t15350\t0\tCMakeFiles/flash\teabf156acce8dac7\n192\t15350\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash\teabf156acce8dac7\n"
  },
  {
    "path": "Code/build/CMakeCache.txt",
    "content": "# This is the CMakeCache file.\n# For build in directory: c:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\n# It was generated by CMake: C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe\n# You can edit this file to change values found and used by cmake.\n# If you do not want to change any of the values, simply exit the editor.\n# If you do want to change a value, simply edit, save, and exit the editor.\n# The syntax for the file is as follows:\n# KEY:TYPE=VALUE\n# KEY is the name of a variable in the cache.\n# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.\n# VALUE is the current value for the KEY.\n\n########################\n# EXTERNAL cache entries\n########################\n\n//No help, variable specified on the command line.\nCCACHE_ENABLE:UNINITIALIZED=1\n\n//Path to a program.\nCCACHE_FOUND:FILEPATH=C:/Espressif/tools/ccache/4.8/ccache-4.8-windows-x86_64/ccache.exe\n\n//Path to a program.\nCMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-addr2line.exe\n\n//Path to a program.\nCMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//ASM Compiler Base Flags\nCMAKE_ASM_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the ASM compiler during DEBUG builds.\nCMAKE_ASM_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the ASM compiler during MINSIZEREL builds.\nCMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the ASM compiler during RELEASE builds.\nCMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the ASM compiler during RELWITHDEBINFO builds.\nCMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//Choose the type of build, options are: None Debug Release RelWithDebInfo\n// MinSizeRel ...\nCMAKE_BUILD_TYPE:STRING=\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//C++ Compiler Base Flags\nCMAKE_CXX_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the CXX compiler during DEBUG builds.\nCMAKE_CXX_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the CXX compiler during MINSIZEREL builds.\nCMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the CXX compiler during RELEASE builds.\nCMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the CXX compiler during RELWITHDEBINFO builds.\nCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//C Compiler Base Flags\nCMAKE_C_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the C compiler during DEBUG builds.\nCMAKE_C_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the C compiler during MINSIZEREL builds.\nCMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the C compiler during RELEASE builds.\nCMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the C compiler during RELWITHDEBINFO builds.\nCMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//Path to a program.\nCMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND\n\n//Flags used by the linker during all build types.\nCMAKE_EXE_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during DEBUG builds.\nCMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during MINSIZEREL builds.\nCMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during RELEASE builds.\nCMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during RELWITHDEBINFO builds.\nCMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//No help, variable specified on the command line.\nCMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON\n\n//Value Computed by CMake.\nCMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/pkgRedirects\n\n//User executables (bin)\nCMAKE_INSTALL_BINDIR:PATH=bin\n\n//Read-only architecture-independent data (DATAROOTDIR)\nCMAKE_INSTALL_DATADIR:PATH=\n\n//Read-only architecture-independent data root (share)\nCMAKE_INSTALL_DATAROOTDIR:PATH=share\n\n//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)\nCMAKE_INSTALL_DOCDIR:PATH=\n\n//C header files (include)\nCMAKE_INSTALL_INCLUDEDIR:PATH=include\n\n//Info documentation (DATAROOTDIR/info)\nCMAKE_INSTALL_INFODIR:PATH=\n\n//Object code libraries (lib)\nCMAKE_INSTALL_LIBDIR:PATH=lib\n\n//Program executables (libexec)\nCMAKE_INSTALL_LIBEXECDIR:PATH=libexec\n\n//Locale-dependent data (DATAROOTDIR/locale)\nCMAKE_INSTALL_LOCALEDIR:PATH=\n\n//Modifiable single-machine data (var)\nCMAKE_INSTALL_LOCALSTATEDIR:PATH=var\n\n//Man documentation (DATAROOTDIR/man)\nCMAKE_INSTALL_MANDIR:PATH=\n\n//C header files for non-gcc (/usr/include)\nCMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include\n\n//Install path prefix, prepended onto install directories.\nCMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/main\n\n//Run-time variable data (LOCALSTATEDIR/run)\nCMAKE_INSTALL_RUNSTATEDIR:PATH=\n\n//System admin executables (sbin)\nCMAKE_INSTALL_SBINDIR:PATH=sbin\n\n//Modifiable architecture-independent data (com)\nCMAKE_INSTALL_SHAREDSTATEDIR:PATH=com\n\n//Read-only single-machine data (etc)\nCMAKE_INSTALL_SYSCONFDIR:PATH=etc\n\n//Path to a program.\nCMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\n\n//Program used to build from build.ninja files.\nCMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.10.2/ninja.exe\n\n//Flags used by the linker during the creation of modules during\n// all build types.\nCMAKE_MODULE_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of modules during\n// DEBUG builds.\nCMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of modules during\n// MINSIZEREL builds.\nCMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of modules during\n// RELEASE builds.\nCMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of modules during\n// RELWITHDEBINFO builds.\nCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//Path to a program.\nCMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-nm.exe\n\n//Path to a program.\nCMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objcopy.exe\n\n//Path to a program.\nCMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\n\n//Value Computed by CMake\nCMAKE_PROJECT_DESCRIPTION:STATIC=\n\n//Value Computed by CMake\nCMAKE_PROJECT_HOMEPAGE_URL:STATIC=\n\n//Value Computed by CMake\nCMAKE_PROJECT_NAME:STATIC=main\n\n//Path to a program.\nCMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\n\n//Path to a program.\nCMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-readelf.exe\n\n//Flags used by the linker during the creation of shared libraries\n// during all build types.\nCMAKE_SHARED_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during DEBUG builds.\nCMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during MINSIZEREL builds.\nCMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during RELEASE builds.\nCMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during RELWITHDEBINFO builds.\nCMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//If set, runtime paths are not added when installing shared libraries,\n// but are added when building.\nCMAKE_SKIP_INSTALL_RPATH:BOOL=NO\n\n//If set, runtime paths are not added when using shared libraries.\nCMAKE_SKIP_RPATH:BOOL=NO\n\n//Flags used by the linker during the creation of static libraries\n// during all build types.\nCMAKE_STATIC_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during DEBUG builds.\nCMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during MINSIZEREL builds.\nCMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during RELEASE builds.\nCMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during RELWITHDEBINFO builds.\nCMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//Path to a program.\nCMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-strip.exe\n\n//The CMake toolchain file\nCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake\n\n//If this value is on, makefiles will be generated without the\n// .SILENT directive, and all commands will be echoed to the console\n// during the make.  This is useful for debugging only. With Visual\n// Studio IDE projects all commands are done without /nologo.\nCMAKE_VERBOSE_MAKEFILE:BOOL=FALSE\n\n//Disable package configuration, target export and installation\nDISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON\n\n//Build Mbed TLS programs.\nENABLE_PROGRAMS:BOOL=\n\n//Build Mbed TLS tests.\nENABLE_TESTING:BOOL=\n\n//Generate the auto-generated files as needed\nGEN_FILES:BOOL=\n\n//Git command line client\nGIT_EXECUTABLE:FILEPATH=C:/Espressif/Git/cmd/git.exe\n\n//IDF Build Target\nIDF_TARGET:STRING=esp32s3\n\n//IDF Build Toolchain Type\nIDF_TOOLCHAIN:STRING=gcc\n\n//Install Mbed TLS headers.\nINSTALL_MBEDTLS_HEADERS:BOOL=ON\n\n//Explicitly link Mbed TLS library to pthread.\nLINK_WITH_PTHREAD:BOOL=OFF\n\n//Explicitly link Mbed TLS library to trusted_storage.\nLINK_WITH_TRUSTED_STORAGE:BOOL=OFF\n\n//Mbed TLS config file (overrides default).\nMBEDTLS_CONFIG_FILE:FILEPATH=\n\n//Compiler warnings treated as errors\nMBEDTLS_FATAL_WARNINGS:BOOL=ON\n\n//Mbed TLS user config file (appended to default).\nMBEDTLS_USER_CONFIG_FILE:FILEPATH=\n\n//Value Computed by CMake\nMbed TLS_BINARY_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls\n\n//Value Computed by CMake\nMbed TLS_IS_TOP_LEVEL:STATIC=OFF\n\n//Value Computed by CMake\nMbed TLS_SOURCE_DIR:STATIC=C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls\n\n//Allow unsafe builds. These builds ARE NOT SECURE.\nUNSAFE_BUILD:BOOL=OFF\n\n//Build Mbed TLS shared library.\nUSE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF\n\n//Build Mbed TLS static library.\nUSE_STATIC_MBEDTLS_LIBRARY:BOOL=ON\n\n//Value Computed by CMake\nesp-idf_BINARY_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf\n\n//Value Computed by CMake\nesp-idf_IS_TOP_LEVEL:STATIC=OFF\n\n//Value Computed by CMake\nesp-idf_SOURCE_DIR:STATIC=C:/Espressif/frameworks/esp-idf-v5.1.2\n\n//Dependencies for the target\neverest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;\n\n//Value Computed by CMake\nmain_BINARY_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\n\n//Value Computed by CMake\nmain_IS_TOP_LEVEL:STATIC=ON\n\n//Value Computed by CMake\nmain_SOURCE_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway\n\n//Dependencies for the target\nmbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;everest;general;p256m;\n\n//Dependencies for the target\nmbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedx509;\n\n//Dependencies for the target\nmbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedcrypto;\n\n//Dependencies for the target\np256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;\n\n\n########################\n# INTERNAL cache entries\n########################\n\n//ADVANCED property for variable: CMAKE_ADDR2LINE\nCMAKE_ADDR2LINE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_AR\nCMAKE_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR\nCMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB\nCMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1\nCMAKE_ASM_COMPILER_WORKS:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS\nCMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG\nCMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL\nCMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE\nCMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO\nCMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//This is the directory where this CMakeCache.txt was created\nCMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\n//Major version of cmake used to create the current loaded cache\nCMAKE_CACHE_MAJOR_VERSION:INTERNAL=3\n//Minor version of cmake used to create the current loaded cache\nCMAKE_CACHE_MINOR_VERSION:INTERNAL=24\n//Patch version of cmake used to create the current loaded cache\nCMAKE_CACHE_PATCH_VERSION:INTERNAL=0\n//Path to CMake executable.\nCMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe\n//Path to cpack program executable.\nCMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cpack.exe\n//Path to ctest program executable.\nCMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/ctest.exe\n//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR\nCMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB\nCMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS\nCMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG\nCMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL\nCMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE\nCMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO\nCMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_COMPILER_AR\nCMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB\nCMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS\nCMAKE_C_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG\nCMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL\nCMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE\nCMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO\nCMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_DLLTOOL\nCMAKE_DLLTOOL-ADVANCED:INTERNAL=1\n//Path to cache edit program executable.\nCMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cmake-gui.exe\n//Executable file format\nCMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS\nCMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG\nCMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL\nCMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE\nCMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//Name of external makefile project generator.\nCMAKE_EXTRA_GENERATOR:INTERNAL=\n//Name of generator.\nCMAKE_GENERATOR:INTERNAL=Ninja\n//Generator instance identifier.\nCMAKE_GENERATOR_INSTANCE:INTERNAL=\n//Name of generator platform.\nCMAKE_GENERATOR_PLATFORM:INTERNAL=\n//Name of generator toolset.\nCMAKE_GENERATOR_TOOLSET:INTERNAL=\n//Source directory with the top level CMakeLists.txt file for this\n// project\nCMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway\n//ADVANCED property for variable: CMAKE_INSTALL_BINDIR\nCMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_DATADIR\nCMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR\nCMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR\nCMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR\nCMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_INFODIR\nCMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR\nCMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR\nCMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR\nCMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR\nCMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_MANDIR\nCMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR\nCMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR\nCMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR\nCMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR\nCMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR\nCMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_LINKER\nCMAKE_LINKER-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MAKE_PROGRAM\nCMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS\nCMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG\nCMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL\nCMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE\nCMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_NM\nCMAKE_NM-ADVANCED:INTERNAL=1\n//number of local generators\nCMAKE_NUMBER_OF_MAKEFILES:INTERNAL=88\n//ADVANCED property for variable: CMAKE_OBJCOPY\nCMAKE_OBJCOPY-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_OBJDUMP\nCMAKE_OBJDUMP-ADVANCED:INTERNAL=1\n//Platform information initialized\nCMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_RANLIB\nCMAKE_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_READELF\nCMAKE_READELF-ADVANCED:INTERNAL=1\n//Path to CMake installation.\nCMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS\nCMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG\nCMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL\nCMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE\nCMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH\nCMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SKIP_RPATH\nCMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS\nCMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG\nCMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL\nCMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE\nCMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STRIP\nCMAKE_STRIP-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE\nCMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1\n//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS\nC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1\n//Details about finding Git\nFIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Espressif/Git/cmd/git.exe][v2.44.0.windows.1()]\n//Details about finding Python3\nFIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Program Files/Python312/python.exe][cfound components: Interpreter ][v3.12.2()]\n//ADVANCED property for variable: GIT_EXECUTABLE\nGIT_EXECUTABLE-ADVANCED:INTERNAL=1\n//Have include stddef.h\nHAVE_STDDEF_H:INTERNAL=1\n//Have include stdint.h\nHAVE_STDINT_H:INTERNAL=1\n//Have include sys/types.h\nHAVE_SYS_TYPES_H:INTERNAL=1\n//Result of TRY_COMPILE\nHAVE_TIME_T_SIZE:INTERNAL=TRUE\n//CHECK_TYPE_SIZE: sizeof(time_t)\nTIME_T_SIZE:INTERNAL=8\n//CMAKE_INSTALL_PREFIX during last run\n_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/main\n//Path to a program.\n_Python3_EXECUTABLE:INTERNAL=C:/Program Files/Python312/python.exe\n//Python3 Properties\n_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;2;32;;;C:\\Program Files\\Python312\\Lib;C:\\Program Files\\Python312\\Lib;C:\\Program Files\\Python312\\Lib\\site-packages;C:\\Program Files\\Python312\\Lib\\site-packages\n_Python3_INTERPRETER_SIGNATURE:INTERNAL=b67e63c914684d935e04574da3c80d4a\n\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake",
    "content": "set(CMAKE_ASM_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\")\nset(CMAKE_ASM_COMPILER_ARG1 \"\")\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_ASM_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_ASM_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_ASM_COMPILER_LOADED 1)\nset(CMAKE_ASM_COMPILER_ID \"GNU\")\nset(CMAKE_ASM_COMPILER_VERSION \"\")\nset(CMAKE_ASM_COMPILER_ENV_VAR \"ASM\")\n\n\n\n\nset(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)\nset(CMAKE_ASM_LINKER_PREFERENCE 0)\n\n\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake",
    "content": "set(CMAKE_C_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\")\nset(CMAKE_C_COMPILER_ARG1 \"\")\nset(CMAKE_C_COMPILER_ID \"GNU\")\nset(CMAKE_C_COMPILER_VERSION \"12.2.0\")\nset(CMAKE_C_COMPILER_VERSION_INTERNAL \"\")\nset(CMAKE_C_COMPILER_WRAPPER \"\")\nset(CMAKE_C_STANDARD_COMPUTED_DEFAULT \"17\")\nset(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT \"ON\")\nset(CMAKE_C_COMPILE_FEATURES \"c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23\")\nset(CMAKE_C90_COMPILE_FEATURES \"c_std_90;c_function_prototypes\")\nset(CMAKE_C99_COMPILE_FEATURES \"c_std_99;c_restrict;c_variadic_macros\")\nset(CMAKE_C11_COMPILE_FEATURES \"c_std_11;c_static_assert\")\nset(CMAKE_C17_COMPILE_FEATURES \"c_std_17\")\nset(CMAKE_C23_COMPILE_FEATURES \"c_std_23\")\n\nset(CMAKE_C_PLATFORM_ID \"\")\nset(CMAKE_C_SIMULATE_ID \"\")\nset(CMAKE_C_COMPILER_FRONTEND_VARIANT \"\")\nset(CMAKE_C_SIMULATE_VERSION \"\")\n\n\n\n\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_C_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_C_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_COMPILER_IS_GNUCC 1)\nset(CMAKE_C_COMPILER_LOADED 1)\nset(CMAKE_C_COMPILER_WORKS TRUE)\nset(CMAKE_C_ABI_COMPILED TRUE)\n\nset(CMAKE_C_COMPILER_ENV_VAR \"CC\")\n\nset(CMAKE_C_COMPILER_ID_RUN 1)\nset(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)\nset(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)\nset(CMAKE_C_LINKER_PREFERENCE 10)\n\n# Save compiler ABI information.\nset(CMAKE_C_SIZEOF_DATA_PTR \"4\")\nset(CMAKE_C_COMPILER_ABI \"ELF\")\nset(CMAKE_C_BYTE_ORDER \"LITTLE_ENDIAN\")\nset(CMAKE_C_LIBRARY_ARCHITECTURE \"\")\n\nif(CMAKE_C_SIZEOF_DATA_PTR)\n  set(CMAKE_SIZEOF_VOID_P \"${CMAKE_C_SIZEOF_DATA_PTR}\")\nendif()\n\nif(CMAKE_C_COMPILER_ABI)\n  set(CMAKE_INTERNAL_PLATFORM_ABI \"${CMAKE_C_COMPILER_ABI}\")\nendif()\n\nif(CMAKE_C_LIBRARY_ARCHITECTURE)\n  set(CMAKE_LIBRARY_ARCHITECTURE \"\")\nendif()\n\nset(CMAKE_C_CL_SHOWINCLUDES_PREFIX \"\")\nif(CMAKE_C_CL_SHOWINCLUDES_PREFIX)\n  set(CMAKE_CL_SHOWINCLUDES_PREFIX \"${CMAKE_C_CL_SHOWINCLUDES_PREFIX}\")\nendif()\n\n\n\n\n\nset(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include\")\nset(CMAKE_C_IMPLICIT_LINK_LIBRARIES \"gcc;c;nosys;c;gcc\")\nset(CMAKE_C_IMPLICIT_LINK_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib\")\nset(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES \"\")\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake",
    "content": "set(CMAKE_CXX_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe\")\nset(CMAKE_CXX_COMPILER_ARG1 \"\")\nset(CMAKE_CXX_COMPILER_ID \"GNU\")\nset(CMAKE_CXX_COMPILER_VERSION \"12.2.0\")\nset(CMAKE_CXX_COMPILER_VERSION_INTERNAL \"\")\nset(CMAKE_CXX_COMPILER_WRAPPER \"\")\nset(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT \"17\")\nset(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT \"ON\")\nset(CMAKE_CXX_COMPILE_FEATURES \"cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23\")\nset(CMAKE_CXX98_COMPILE_FEATURES \"cxx_std_98;cxx_template_template_parameters\")\nset(CMAKE_CXX11_COMPILE_FEATURES \"cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates\")\nset(CMAKE_CXX14_COMPILE_FEATURES \"cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates\")\nset(CMAKE_CXX17_COMPILE_FEATURES \"cxx_std_17\")\nset(CMAKE_CXX20_COMPILE_FEATURES \"cxx_std_20\")\nset(CMAKE_CXX23_COMPILE_FEATURES \"cxx_std_23\")\n\nset(CMAKE_CXX_PLATFORM_ID \"\")\nset(CMAKE_CXX_SIMULATE_ID \"\")\nset(CMAKE_CXX_COMPILER_FRONTEND_VARIANT \"\")\nset(CMAKE_CXX_SIMULATE_VERSION \"\")\n\n\n\n\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_CXX_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_CXX_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_COMPILER_IS_GNUCXX 1)\nset(CMAKE_CXX_COMPILER_LOADED 1)\nset(CMAKE_CXX_COMPILER_WORKS TRUE)\nset(CMAKE_CXX_ABI_COMPILED TRUE)\n\nset(CMAKE_CXX_COMPILER_ENV_VAR \"CXX\")\n\nset(CMAKE_CXX_COMPILER_ID_RUN 1)\nset(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)\nset(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)\n\nforeach (lang C OBJC OBJCXX)\n  if (CMAKE_${lang}_COMPILER_ID_RUN)\n    foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)\n      list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})\n    endforeach()\n  endif()\nendforeach()\n\nset(CMAKE_CXX_LINKER_PREFERENCE 30)\nset(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)\n\n# Save compiler ABI information.\nset(CMAKE_CXX_SIZEOF_DATA_PTR \"4\")\nset(CMAKE_CXX_COMPILER_ABI \"ELF\")\nset(CMAKE_CXX_BYTE_ORDER \"LITTLE_ENDIAN\")\nset(CMAKE_CXX_LIBRARY_ARCHITECTURE \"\")\n\nif(CMAKE_CXX_SIZEOF_DATA_PTR)\n  set(CMAKE_SIZEOF_VOID_P \"${CMAKE_CXX_SIZEOF_DATA_PTR}\")\nendif()\n\nif(CMAKE_CXX_COMPILER_ABI)\n  set(CMAKE_INTERNAL_PLATFORM_ABI \"${CMAKE_CXX_COMPILER_ABI}\")\nendif()\n\nif(CMAKE_CXX_LIBRARY_ARCHITECTURE)\n  set(CMAKE_LIBRARY_ARCHITECTURE \"\")\nendif()\n\nset(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX \"\")\nif(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)\n  set(CMAKE_CL_SHOWINCLUDES_PREFIX \"${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}\")\nendif()\n\n\n\n\n\nset(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include\")\nset(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES \"stdc++;m;gcc;c;nosys;c;gcc\")\nset(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib\")\nset(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES \"\")\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CMakeSystem.cmake",
    "content": "set(CMAKE_HOST_SYSTEM \"Windows-10.0.22631\")\nset(CMAKE_HOST_SYSTEM_NAME \"Windows\")\nset(CMAKE_HOST_SYSTEM_VERSION \"10.0.22631\")\nset(CMAKE_HOST_SYSTEM_PROCESSOR \"AMD64\")\n\ninclude(\"C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake\")\n\nset(CMAKE_SYSTEM \"Generic\")\nset(CMAKE_SYSTEM_NAME \"Generic\")\nset(CMAKE_SYSTEM_VERSION \"\")\nset(CMAKE_SYSTEM_PROCESSOR \"\")\n\nset(CMAKE_CROSSCOMPILING \"TRUE\")\n\nset(CMAKE_SYSTEM_LOADED 1)\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c",
    "content": "#ifdef __cplusplus\n# error \"A C++ compiler has been selected for C.\"\n#endif\n\n#if defined(__18CXX)\n# define ID_VOID_MAIN\n#endif\n#if defined(__CLASSIC_C__)\n/* cv-qualifiers did not exist in K&R C */\n# define const\n# define volatile\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_C)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_C >= 0x5100\n   /* __SUNPRO_C = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# endif\n\n#elif defined(__HP_cc)\n# define COMPILER_ID \"HP\"\n  /* __HP_cc = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_cc     % 100)\n\n#elif defined(__DECC)\n# define COMPILER_ID \"Compaq\"\n  /* __DECC_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECC_VER         % 10000)\n\n#elif defined(__IBMC__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__TINYC__)\n# define COMPILER_ID \"TinyCC\"\n\n#elif defined(__BCC__)\n# define COMPILER_ID \"Bruce\"\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__)\n# define COMPILER_ID \"GNU\"\n# define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)\n# define COMPILER_ID \"SDCC\"\n# if defined(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)\n#  define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)\n# else\n  /* SDCC = VRP */\n#  define COMPILER_VERSION_MAJOR DEC(SDCC/100)\n#  define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)\n#  define COMPILER_VERSION_PATCH DEC(SDCC    % 10)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if !defined(__STDC__) && !defined(__clang__)\n# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)\n#  define C_VERSION \"90\"\n# else\n#  define C_VERSION\n# endif\n#elif __STDC_VERSION__ > 201710L\n# define C_VERSION \"23\"\n#elif __STDC_VERSION__ >= 201710L\n# define C_VERSION \"17\"\n#elif __STDC_VERSION__ >= 201000L\n# define C_VERSION \"11\"\n#elif __STDC_VERSION__ >= 199901L\n# define C_VERSION \"99\"\n#else\n# define C_VERSION \"90\"\n#endif\nconst char* info_language_standard_default =\n  \"INFO\" \":\" \"standard_default[\" C_VERSION \"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\n#ifdef ID_VOID_MAIN\nvoid main() {}\n#else\n# if defined(__CLASSIC_C__)\nint main(argc, argv) int argc; char *argv[];\n# else\nint main(int argc, char* argv[])\n# endif\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n  require += info_arch[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n#endif\n"
  },
  {
    "path": "Code/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp",
    "content": "/* This source file must have a .cpp extension so that all C++ compilers\n   recognize the extension without flags.  Borland does not know .cxx for\n   example.  */\n#ifndef __cplusplus\n# error \"A C compiler has been selected for C++.\"\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__COMO__)\n# define COMPILER_ID \"Comeau\"\n  /* __COMO_VERSION__ = VRR */\n# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)\n# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)\n\n#elif defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_CC)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_CC >= 0x5100\n   /* __SUNPRO_CC = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# endif\n\n#elif defined(__HP_aCC)\n# define COMPILER_ID \"HP\"\n  /* __HP_aCC = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_aCC     % 100)\n\n#elif defined(__DECCXX)\n# define COMPILER_ID \"Compaq\"\n  /* __DECCXX_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER         % 10000)\n\n#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__) || defined(__GNUG__)\n# define COMPILER_ID \"GNU\"\n# if defined(__GNUC__)\n#  define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L\n#  if defined(__INTEL_CXX11_MODE__)\n#    if defined(__cpp_aggregate_nsdmi)\n#      define CXX_STD 201402L\n#    else\n#      define CXX_STD 201103L\n#    endif\n#  else\n#    define CXX_STD 199711L\n#  endif\n#elif defined(_MSC_VER) && defined(_MSVC_LANG)\n#  define CXX_STD _MSVC_LANG\n#else\n#  define CXX_STD __cplusplus\n#endif\n\nconst char* info_language_standard_default = \"INFO\" \":\" \"standard_default[\"\n#if CXX_STD > 202002L\n  \"23\"\n#elif CXX_STD > 201703L\n  \"20\"\n#elif CXX_STD >= 201703L\n  \"17\"\n#elif CXX_STD >= 201402L\n  \"14\"\n#elif CXX_STD >= 201103L\n  \"11\"\n#else\n  \"98\"\n#endif\n\"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\nint main(int argc, char* argv[])\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n"
  },
  {
    "path": "Code/build/CMakeFiles/CMakeOutput.log",
    "content": "The target system is: Generic -  - \r\nThe host system is: Windows - 10.0.22631 - AMD64\r\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" succeeded.\r\nCompiler: C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe \r\nBuild flags: -mlongcalls;\r\nId flags:  \r\n\r\nThe output was:\r\n0\r\n\r\n\r\nCompilation of the C compiler identification source \"CMakeCCompilerId.c\" produced \"a.out\"\r\n\r\nThe C compiler identification is GNU, found in \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/3.24.0/CompilerIdC/a.out\"\r\n\r\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" succeeded.\r\nCompiler: C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe \r\nBuild flags: -mlongcalls;\r\nId flags:  \r\n\r\nThe output was:\r\n0\r\n\r\n\r\nCompilation of the CXX compiler identification source \"CMakeCXXCompilerId.cpp\" produced \"a.out\"\r\n\r\nThe CXX compiler identification is GNU, found in \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out\"\r\n\r\nChecking whether the ASM compiler is GNU using \"--version\" matched \"(GNU assembler)|(GCC)|(Free Software Foundation)\":\r\nxtensa-esp32s3-elf-gcc.exe (crosstool-NG esp-12.2.0_20230208) 12.2.0\r\nCopyright (C) 2022 Free Software Foundation, Inc.\r\nThis is free software; see the source for copying conditions.  There is NO\r\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\r\n\r\nDetecting C compiler ABI info compiled with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_55982 && [1/2] Building C object CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_55982.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y824f.s\r\r\nGNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"\r\r\n#include \"...\" search starts here:\r\r\n#include <...> search starts here:\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\r\r\nEnd of search list.\r\r\nGNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nCompiler executable checksum: b69a94acee987b4de6aaaa336cf1fbde\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y824f.s\r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.'\r\r\n[2/2] Linking C executable cmTC_55982\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe\r\r\nCOLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_55982' '-dumpdir' 'cmTC_55982.'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccRn6bPm.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_55982 c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_55982' '-dumpdir' 'cmTC_55982.'\r\r\n\r\n\r\n\r\nParsed C implicit include dir info from above output: rv=done\r\n  found start of include info\r\n  found start of implicit include info\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  end of search list found\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n  implicit include dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n\r\n\r\nParsed C implicit link information from above output:\r\n  link line regex: [^( *|.*[/\\])(xtensa-esp32s3-elf-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]\r\n  ignore line: [Change Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp]\r\n  ignore line: []\r\n  ignore line: [Run Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_55982 && [1/2] Building C object CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_55982.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y824f.s]\r\n  ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"]\r\n  ignore line: [#include \"...\" search starts here:]\r\n  ignore line: [#include <...> search starts here:]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  ignore line: [End of search list.]\r\n  ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [Compiler executable checksum: b69a94acee987b4de6aaaa336cf1fbde]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y824f.s]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.']\r\n  ignore line: [[2/2] Linking C executable cmTC_55982]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe]\r\n  ignore line: [COLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_55982' '-dumpdir' 'cmTC_55982.']\r\n  link line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccRn6bPm.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_55982 c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe] ==> ignore\r\n    arg [-plugin] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll] ==> ignore\r\n    arg [-plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe] ==> ignore\r\n    arg [-plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccRn6bPm.res] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lnosys] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-o] ==> ignore\r\n    arg [cmTC_55982] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib]\r\n    arg [CMakeFiles/cmTC_55982.dir/CMakeCCompilerABI.c.obj] ==> ignore\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lnosys] ==> lib [nosys]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit libs: [gcc;c;nosys;c;gcc]\r\n  implicit objs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  implicit dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit fwks: []\r\n\r\n\r\nDetecting CXX compiler ABI info compiled with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_08d6f && [1/2] Building CXX object CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_08d6f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cchLTPvD.s\r\r\nGNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"\r\r\n#include \"...\" search starts here:\r\r\n#include <...> search starts here:\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\r\r\nEnd of search list.\r\r\nGNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nCompiler executable checksum: 4b9c7c36b27f0814815d9daed1ed2832\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cchLTPvD.s\r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.'\r\r\n[2/2] Linking CXX executable cmTC_08d6f\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe\r\r\nCOLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_08d6f' '-dumpdir' 'cmTC_08d6f.'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccTsHVmJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_08d6f c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_08d6f' '-dumpdir' 'cmTC_08d6f.'\r\r\n\r\n\r\n\r\nParsed CXX implicit include dir info from above output: rv=done\r\n  found start of include info\r\n  found start of implicit include info\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  end of search list found\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n  implicit include dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n\r\n\r\nParsed CXX implicit link information from above output:\r\n  link line regex: [^( *|.*[/\\])(xtensa-esp32s3-elf-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]\r\n  ignore line: [Change Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp]\r\n  ignore line: []\r\n  ignore line: [Run Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_08d6f && [1/2] Building CXX object CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_08d6f.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cchLTPvD.s]\r\n  ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"]\r\n  ignore line: [#include \"...\" search starts here:]\r\n  ignore line: [#include <...> search starts here:]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  ignore line: [End of search list.]\r\n  ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [Compiler executable checksum: 4b9c7c36b27f0814815d9daed1ed2832]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cchLTPvD.s]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.']\r\n  ignore line: [[2/2] Linking CXX executable cmTC_08d6f]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe]\r\n  ignore line: [COLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_08d6f' '-dumpdir' 'cmTC_08d6f.']\r\n  link line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccTsHVmJ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_08d6f c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe] ==> ignore\r\n    arg [-plugin] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll] ==> ignore\r\n    arg [-plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe] ==> ignore\r\n    arg [-plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccTsHVmJ.res] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lnosys] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-o] ==> ignore\r\n    arg [cmTC_08d6f] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib]\r\n    arg [CMakeFiles/cmTC_08d6f.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore\r\n    arg [-lstdc++] ==> lib [stdc++]\r\n    arg [-lm] ==> lib [m]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lnosys] ==> lib [nosys]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]\r\n  implicit objs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  implicit dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit fwks: []\r\n\r\n\r\nDetermining if the include file sys/types.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_d819e && [1/2] Building C object CMakeFiles/cmTC_d819e.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_d819e\r\r\n\r\n\r\n\r\nDetermining if the include file stdint.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_42a74 && [1/2] Building C object CMakeFiles/cmTC_42a74.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_42a74\r\r\n\r\n\r\n\r\nDetermining if the include file stddef.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_9b5e9 && [1/2] Building C object CMakeFiles/cmTC_9b5e9.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_9b5e9\r\r\n\r\n\r\n\r\nDetermining size of time_t passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_e7ff1 && [1/2] Building C object CMakeFiles/cmTC_e7ff1.dir/TIME_T_SIZE.c.obj\r\r\n[2/2] Linking C executable cmTC_e7ff1\r\r\n\r\n\r\n\r\nPerforming C SOURCE FILE Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS succeeded with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_719d4 && [1/2] Building C object CMakeFiles/cmTC_719d4.dir/src.c.obj\r\r\n[2/2] Linking C executable cmTC_719d4\r\r\n\r\n\r\nSource file was:\r\nint main(void) { return 0; }\r\n"
  },
  {
    "path": "Code/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c",
    "content": "#include <sys/types.h>\n#include <stdint.h>\n#include <stddef.h>\n\n\n#undef KEY\n#if defined(__i386)\n# define KEY '_','_','i','3','8','6'\n#elif defined(__x86_64)\n# define KEY '_','_','x','8','6','_','6','4'\n#elif defined(__PPC64__)\n# define KEY '_','_','P','P','C','6','4','_','_'\n#elif defined(__ppc64__)\n# define KEY '_','_','p','p','c','6','4','_','_'\n#elif defined(__PPC__)\n# define KEY '_','_','P','P','C','_','_'\n#elif defined(__ppc__)\n# define KEY '_','_','p','p','c','_','_'\n#elif defined(__aarch64__)\n# define KEY '_','_','a','a','r','c','h','6','4','_','_'\n#elif defined(__ARM_ARCH_7A__)\n# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'\n#elif defined(__ARM_ARCH_7S__)\n# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'\n#endif\n\n#define SIZE (sizeof(time_t))\nstatic char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',\n  ('0' + ((SIZE / 10000)%10)),\n  ('0' + ((SIZE / 1000)%10)),\n  ('0' + ((SIZE / 100)%10)),\n  ('0' + ((SIZE / 10)%10)),\n  ('0' +  (SIZE    % 10)),\n  ']',\n#ifdef KEY\n  ' ','k','e','y','[', KEY, ']',\n#endif\n  '\\0'};\n\n#ifdef __CLASSIC_C__\nint main(argc, argv) int argc; char *argv[];\n#else\nint main(int argc, char *argv[])\n#endif\n{\n  int require = 0;\n  require += info_size[argc];\n  (void)argv;\n  return require;\n}\n"
  },
  {
    "path": "Code/build/CMakeFiles/TargetDirectories.txt",
    "content": "C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/menuconfig.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/confserver.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/save-defconfig.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/gen_project_binary.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/app.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/erase_flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/monitor.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/encrypted-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/_project_elf_src.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/main.elf.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/size.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/size-files.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/size-components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/dfu.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/dfu-list.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/dfu-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/uf2-app.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/uf2.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/spiffs_storage_bin.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/storage-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/encrypted-storage-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/__idf_driver.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/partition-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/partition_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/memory_ld.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/__idf_hal.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/__idf_log.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/__idf_heap.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/__idf_soc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/__idf_unity.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/__idf_console.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/__idf_json.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/__idf_usb.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/__idf_main.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/CMakeFiles/install/strip.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/__idf_st7789.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/list_install_components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/install.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/install/local.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/CMakeFiles/install/strip.dir\n"
  },
  {
    "path": "Code/build/CMakeFiles/bootloader-complete",
    "content": ""
  },
  {
    "path": "Code/build/CMakeFiles/bootloader.dir/Labels.json",
    "content": "{\n\t\"sources\" : \n\t[\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader-complete.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule\"\n\t\t},\n\t\t{\n\t\t\t\"file\" : \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule\"\n\t\t}\n\t],\n\t\"target\" : \n\t{\n\t\t\"labels\" : \n\t\t[\n\t\t\t\"bootloader\"\n\t\t],\n\t\t\"name\" : \"bootloader\"\n\t}\n}"
  },
  {
    "path": "Code/build/CMakeFiles/bootloader.dir/Labels.txt",
    "content": "# Target labels\n bootloader\n# Source files and their labels\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader-complete.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule\n"
  },
  {
    "path": "Code/build/CMakeFiles/clean_additional.cmake",
    "content": "# Additional clean files\ncmake_minimum_required(VERSION 3.16)\n\nif(\"${CONFIG}\" STREQUAL \"\" OR \"${CONFIG}\" STREQUAL \"\")\n  file(REMOVE_RECURSE\n  \"bootloader\\\\bootloader.bin\"\n  \"bootloader\\\\bootloader.elf\"\n  \"bootloader\\\\bootloader.map\"\n  \"config\\\\sdkconfig.cmake\"\n  \"config\\\\sdkconfig.h\"\n  \"esp-idf\\\\esptool_py\\\\flasher_args.json.in\"\n  \"esp-idf\\\\mbedtls\\\\x509_crt_bundle\"\n  \"flash_app_args\"\n  \"flash_bootloader_args\"\n  \"flash_project_args\"\n  \"flasher_args.json\"\n  \"ldgen_libraries\"\n  \"ldgen_libraries.in\"\n  \"main.bin\"\n  \"main.map\"\n  \"project_elf_src_esp32s3.c\"\n  \"storage.bin\"\n  \"x509_crt_bundle.S\"\n  )\nendif()\n"
  },
  {
    "path": "Code/build/CMakeFiles/cmake.check_cache",
    "content": "# This file is generated by cmake for dependency checking of the CMakeCache.txt file\n"
  },
  {
    "path": "Code/build/CMakeFiles/git-data/HEAD",
    "content": "482a8fb2d78e3b58eb21b26da8a5bedf90623213\n"
  },
  {
    "path": "Code/build/CMakeFiles/git-data/grabRef.cmake",
    "content": "#\n# Internal file for GetGitRevisionDescription.cmake\n#\n# Requires CMake 2.6 or newer (uses the 'function' command)\n#\n# Original Author:\n# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>\n# http://academic.cleardefinition.com\n# Iowa State University HCI Graduate Program/VRAC\n#\n# Copyright Iowa State University 2009-2010.\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at\n# http://www.boost.org/LICENSE_1_0.txt)\n\nset(HEAD_HASH)\n\nfile(READ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/git-data/HEAD\" HEAD_CONTENTS LIMIT 1024)\n\nstring(STRIP \"${HEAD_CONTENTS}\" HEAD_CONTENTS)\nset(GIT_DIR \"C:/Espressif/frameworks/esp-idf-v5.1.2/.git\")\n# handle git-worktree\nif(EXISTS \"${GIT_DIR}/commondir\")\n\tfile(READ \"${GIT_DIR}/commondir\" GIT_DIR_NEW LIMIT 1024)\n\tstring(STRIP \"${GIT_DIR_NEW}\" GIT_DIR_NEW)\n\tif(NOT IS_ABSOLUTE \"${GIT_DIR_NEW}\")\n\t\tget_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)\n\tendif()\n\tif(EXISTS \"${GIT_DIR_NEW}\")\n\t\tset(GIT_DIR \"${GIT_DIR_NEW}\")\n\tendif()\nendif()\nif(HEAD_CONTENTS MATCHES \"ref\")\n\t# named branch\n\tstring(REPLACE \"ref: \" \"\" HEAD_REF \"${HEAD_CONTENTS}\")\n\tif(EXISTS \"${GIT_DIR}/${HEAD_REF}\")\n\t\tconfigure_file(\"${GIT_DIR}/${HEAD_REF}\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/git-data/head-ref\" COPYONLY)\n\telseif(EXISTS \"${GIT_DIR}/logs/${HEAD_REF}\")\n\t\tconfigure_file(\"${GIT_DIR}/logs/${HEAD_REF}\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/git-data/head-ref\" COPYONLY)\n\t\tset(HEAD_HASH \"${HEAD_REF}\")\n\tendif()\nelse()\n\t# detached HEAD\n\tconfigure_file(\"${GIT_DIR}/HEAD\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/git-data/head-ref\" COPYONLY)\nendif()\n\nif(NOT HEAD_HASH)\n\tfile(READ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/git-data/head-ref\" HEAD_HASH LIMIT 1024)\n\tstring(STRIP \"${HEAD_HASH}\" HEAD_HASH)\nendif()\n"
  },
  {
    "path": "Code/build/CMakeFiles/git-data/head-ref",
    "content": "482a8fb2d78e3b58eb21b26da8a5bedf90623213\n"
  },
  {
    "path": "Code/build/CMakeFiles/rules.ninja",
    "content": "# CMAKE generated file: DO NOT EDIT!\n# Generated by \"Ninja\" Generator, CMake Version 3.24\n\n# This file contains all the rules used to get the outputs files\n# built from the input files.\n# It is included in the main 'build.ninja'.\n\n# =============================================================================\n# Project: main\n# Configurations: \n# =============================================================================\n# =============================================================================\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__main.2eelf_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX executable.\n\nrule CXX_EXECUTABLE_LINKER__main.2eelf_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE  && $POST_BUILD\"\n  description = Linking CXX executable $TARGET_FILE\n  rspfile = $RSP_FILE\n  rspfile_content = $in $LINK_PATH $LINK_LIBRARIES\n  restat = $RESTAT\n\n\n#############################################\n# Rule for running custom commands.\n\nrule CUSTOM_COMMAND\n  command = $COMMAND\n  description = $DESC\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_xtensa_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_xtensa_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_xtensa_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_ringbuf_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_efuse_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_efuse_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_driver_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_driver_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_pm_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_pm_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_mbedtls_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_mbedtls_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_mbedtls_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__everest_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX static library.\n\nrule CXX_STATIC_LIBRARY_LINKER__everest_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking CXX static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__p256m_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX static library.\n\nrule CXX_STATIC_LIBRARY_LINKER__p256m_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking CXX static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__mbedcrypto_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX static library.\n\nrule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking CXX static library $TARGET_FILE\n  rspfile = $RSP_FILE\n  rspfile_content = $in $LINK_PATH $LINK_LIBRARIES\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__mbedx509_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX static library.\n\nrule CXX_STATIC_LIBRARY_LINKER__mbedx509_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking CXX static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__mbedtls_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking CXX static library.\n\nrule CXX_STATIC_LIBRARY_LINKER__mbedtls_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking CXX static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_app_format_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_bootloader_support_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_partition_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_partition_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_app_update_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_app_update_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_mm_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_mm_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_spi_flash_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_spi_flash_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_pthread_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_pthread_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_esp_system_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_system_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_system_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_esp_rom_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_rom_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_rom_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_hal_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_hal_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_log_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_log_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_heap_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_heap_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_soc_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_soc_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_hw_support_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_freertos_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_freertos_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_freertos_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_newlib_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_newlib_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling CXX files.\n\nrule CXX_COMPILER____idf_cxx_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building CXX object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_cxx_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_common_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_common_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_timer_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_timer_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_app_trace_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_app_trace_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_event_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_event_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling CXX files.\n\nrule CXX_COMPILER____idf_nvs_flash_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building CXX object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_nvs_flash_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_phy_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_phy_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_vfs_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_vfs_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_lwip_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_lwip_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_netif_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_netif_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_wpa_supplicant_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  rspfile = $RSP_FILE\n  rspfile_content = $in $LINK_PATH $LINK_LIBRARIES\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_coex_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_coex_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_wifi_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_wifi_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_unity_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_unity_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_cmock_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_cmock_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_console_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_console_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_http_parser_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_http_parser_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp-tls_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp-tls_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_adc_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_adc_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_eth_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_eth_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_esp_gdbstub_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_gdbstub_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_hid_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_hid_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_tcp_transport_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_tcp_transport_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_http_client_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_http_client_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_http_server_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_http_server_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_https_ota_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_lcd_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_lcd_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_protobuf-c_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_protobuf-c_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_protocomm_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_protocomm_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_local_ctrl_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_espcoredump_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_espcoredump_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling CXX files.\n\nrule CXX_COMPILER____idf_wear_levelling_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building CXX object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_wear_levelling_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_sdmmc_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_sdmmc_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_fatfs_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_fatfs_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_json_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_json_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_mqtt_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_mqtt_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_perfmon_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_perfmon_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_spiffs_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_spiffs_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_touch_element_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_touch_element_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_ulp_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_ulp_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_usb_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_usb_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_wifi_provisioning_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_main_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_main_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_st7789_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = ccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_st7789_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for re-running cmake.\n\nrule RERUN_CMAKE\n  command = C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\n  description = Re-running CMake...\n  generator = 1\n\n\n#############################################\n# Rule for cleaning additional files.\n\nrule CLEAN_ADDITIONAL\n  command = C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\\clean_additional.cmake\n  description = Cleaning additional files...\n\n\n#############################################\n# Rule for cleaning all built files.\n\nrule CLEAN\n  command = C:\\Espressif\\tools\\ninja\\1.10.2\\ninja.exe $FILE_ARG -t clean $TARGETS\n  description = Cleaning all built files...\n\n\n#############################################\n# Rule for printing all primary targets available.\n\nrule HELP\n  command = C:\\Espressif\\tools\\ninja\\1.10.2\\ninja.exe -t targets\n  description = All primary targets available:\n\n"
  },
  {
    "path": "Code/build/app-flash_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x10000 main.bin\n"
  },
  {
    "path": "Code/build/bootloader/.bin_timestamp",
    "content": "fdd9b252cbc1fd8666e56d634234d349  C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\n"
  },
  {
    "path": "Code/build/bootloader/.ninja_log",
    "content": "# ninja log v5\n3518\t11780\t7381311619761461\tesp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj\t5c3c7736d02b13f8\n2524\t10732\t7381311610536250\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj\te3af8170c210dacd\n79\t1304\t7381311584850982\tesp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj\tadb4d7c11087d7b8\n2585\t10891\t7381311610373302\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj\t91597b9f77fcd674\n2\t1139\t7381311582420459\tproject_elf_src_esp32s3.c\t32fc590e42b255c3\n2\t1139\t7381311582420459\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/project_elf_src_esp32s3.c\t32fc590e42b255c3\n1305\t2648\t7381311597147375\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj\t4fc3ff22ec7aa7e8\n3439\t11629\t7381311618057374\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj\tda31f3cfc7bc9748\n286\t1489\t7381311586871897\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj\t7d7b83e8841b11bc\n574\t1811\t7381311589798872\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj\t6fa13dd32261059e\n3185\t11407\t7381311616086815\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj\tcec153ce20e8bd4e\n496\t1733\t7381311589604126\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj\t444290b69c19cb8a\n127\t1344\t7381311585646157\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj\t4ebf17cba1dca4ab\n16\t1193\t7381311583695730\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj\t2666c327fe5a0b35\n1734\t3157\t7381311602537456\tesp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj\t25bcadf51eda689d\n49\t1238\t7381311584291367\tesp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj\tb69aa56234563831\n178\t1398\t7381311586016215\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj\tcc6ec938c65606be\n3026\t11318\t7381311614681072\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj\t40f617cae96d3333\n3318\t11542\t7381311617141993\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj\tf3e8adeb969eb580\n239\t1445\t7381311586711907\tesp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj\t3ba41708e08a34fb\n2678\t10952\t7381311611715140\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj\tca8933be863aa04c\n12898\t13003\t7381311711996875\tesp-idf/esp_system/libesp_system.a\t74ca33a2fe54370a\n858\t2125\t7381311592753678\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj\t51e2cd6950c8ecdd\n10844\t12119\t7381311693048262\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj\ta7b093920f3f0f01\n336\t1544\t7381311587357380\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj\tb4fc93a23b09f8a1\n376\t1604\t7381311587997428\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj\t460d5693c580962c\n617\t1882\t7381311590472876\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj\t6949ba8c53ac4a83\n1085\t2394\t7381311594846501\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj\tb42f441aa99d8e87\n11194\t12329\t7381311696455246\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj\tfc92f20cbf43eb82\n428\t1696\t7381311588442840\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj\tfecc6699329f184a\n1345\t2730\t7381311597713035\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj\t7924f686601b8a52\n14295\t14503\t7381311727003064\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/.bin_timestamp\t14cd74c5c0d370bc\n673\t1939\t7381311590952871\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj\t4f36a8a8cc375b5f\n735\t1990\t7381311591638071\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj\t9e85ba1d33cd98f7\n782\t2073\t7381311592228502\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj\t785d848d0088799f\n904\t2200\t7381311593278929\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj\t72d4b9b75ce1e3ea\n982\t2263\t7381311593818936\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj\tfa02c22fd6972034\n1048\t2342\t7381311594356501\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj\t9dc6b0e2565b6a56\n1140\t2470\t7381311595301684\tCMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj\t325a29d7e96cb89c\n10892\t12166\t7381311693839002\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj\t5ce5c099064144e6\n3565\t11829\t7381311620414297\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj\tc71be04141d39e77\n1940\t3369\t7381311604581026\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj\t6e66881d7b974a4a\n1194\t2523\t7381311595841682\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj\tc3bac1f6d00300ff\n1247\t2584\t7381311596411441\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj\t6aebf683ae462717\n2881\t11135\t7381311613385898\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj\t65bad3c0ec845989\n1399\t2791\t7381311598298168\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj\t3968dbaead5ce837\n1445\t2880\t7381311598674047\tesp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj\t6b68002651619e4f\n1490\t2921\t7381311603139364\tesp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj\t3143e640cde382c1\n1545\t2980\t7381311599896750\tesp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj\t146a74e2a4cc581a\n2342\t3672\t7381311608100958\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj\tc691c07cb04d862\n1622\t3025\t7381311600742405\tesp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj\tfb122c655632c49f\n1697\t3078\t7381311601707658\tesp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj\tba47fc69301667a6\n3079\t11352\t7381311615446766\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj\t1ad3b7c1efcb5584\n2394\t3739\t7381311608726680\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj\t2505a0f4ee7b40b2\n1833\t3228\t7381311603229477\tesp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj\t68df744da38fdbbb\n1883\t3317\t7381311603915800\tesp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj\t34dae2b5bd68865d\n2074\t3472\t7381311605858549\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj\t3e27240d7e459cba\n1990\t3438\t7381311604911032\tesp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj\t6ff0142362584f8c\n2126\t3517\t7381311606333894\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj\t64e8c439a5fb1a40\n11471\t12334\t7381311699384177\tesp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj\t1d41675d2090af90\n2201\t3564\t7381311606474099\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj\t894aee022c11595b\n2264\t3616\t7381311607144098\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj\tcbcb04a6ceb8ea79\n2470\t3850\t7381311610818819\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj\t179faa9dae36d6af\n2731\t11004\t7381311612580550\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj\t15237eebba2b0a67\n3229\t11470\t7381311616701984\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj\td0aea232f537526f\n2792\t11051\t7381311613250657\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj\t18833157bb9f1ac3\n2922\t11193\t7381311614931085\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj\tffc1e78790b99d0\n2981\t11262\t7381311615696830\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj\t494a71da43767289\n3396\t11572\t7381311618652836\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj\t82e9f3e03f6d2b15\n3473\t11712\t7381311619295301\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj\tc464e9a4a56d3efd\n3617\t11871\t7381311620946192\tesp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj\tcde0bfb9f6c3615d\n3673\t11937\t7381311621305884\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj\td920f9cd336ee973\n3740\t12029\t7381311621831055\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj\t419b91c48c5377bb\n10693\t12068\t7381311690890757\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj\t1c3ea69e905785f8\n10953\t12218\t7381311694594398\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj\ta301ebdc2188af0d\n11005\t12271\t7381311695179627\tesp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj\t9a3a19514939684f\n11062\t12327\t7381311696175288\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj\t73a925823b474a37\n11137\t12328\t7381311696696990\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj\tfa63b37c5f3865b3\n11263\t12330\t7381311697202497\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj\t18fd33e00cc9260d\n11319\t12331\t7381311697292493\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj\tf03a10b161d58180\n11354\t12332\t7381311698237768\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj\tb9ee9b3d6924b0f1\n11408\t12333\t7381311698914697\tesp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj\tced081dfe83457a6\n11543\t12335\t7381311699684543\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj\td896ebb3c7e8400c\n11573\t12336\t7381311699775060\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj\t2042a327fc3a7709\n11630\t12337\t7381311700993269\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj\td25dbf3ace2819d8\n11712\t12338\t7381311701874493\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj\t20eb54e6e7823210\n11781\t12339\t7381311702099622\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj\tef805d3e6dfa431b\n11830\t12340\t7381311702559630\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj\tb96ac6345cc5a855\n11872\t12341\t7381311702954818\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj\td5077c21b1788c42\n11938\t12342\t7381311703960043\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj\td96957581397a82a\n12030\t12343\t7381311704640058\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj\te2de303c519b0c7b\n12069\t12344\t7381311705085372\tesp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj\t1187649dffc359cd\n12121\t12355\t7381311705525421\tesp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj\tc0036dc632a94dd\n13004\t13116\t7381311713140134\tesp-idf/efuse/libefuse.a\t5376fe118b9f2e85\n12167\t12420\t7381311706160951\tesp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj\t3246e2c827be0d86\n12219\t12455\t7381311706520948\tesp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj\tce5fbdbfb37bae26\n12273\t12468\t7381311706640943\tesp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj\tc0ed2972b58f5aa5\n12456\t12554\t7381311707506385\tesp-idf/log/liblog.a\tb3430904d8bdac3e\n12554\t12654\t7381311708511932\tesp-idf/esp_rom/libesp_rom.a\tc8c4d3fb04539883\n12654\t12770\t7381311709667279\tesp-idf/esp_common/libesp_common.a\t21986d3374f0e2ac\n12771\t12898\t7381311710933349\tesp-idf/esp_hw_support/libesp_hw_support.a\t7c948ffdb7e99648\n13117\t13273\t7381311714685615\tesp-idf/bootloader_support/libbootloader_support.a\t8cc43cdb978441aa\n13274\t13400\t7381311715961315\tesp-idf/esp_app_format/libesp_app_format.a\t6fca4c21cd0f9b2d\n13401\t13514\t7381311717053861\tesp-idf/spi_flash/libspi_flash.a\t6b42bea1f12f2a1f\n13514\t13635\t7381311718289420\tesp-idf/hal/libhal.a\t344b5947eaac4ba9\n13635\t13747\t7381311719444587\tesp-idf/micro-ecc/libmicro-ecc.a\t7d211ba2b6bc709d\n13748\t13884\t7381311720781828\tesp-idf/soc/libsoc.a\t1545000f44ebe4a8\n13885\t13996\t7381311721915548\tesp-idf/xtensa/libxtensa.a\t7a670c4a38eb6ce7\n13997\t14107\t7381311723037261\tesp-idf/main/libmain.a\tc43eb01a0dd5faf1\n14108\t14294\t7381311724892154\tbootloader.elf\ta4f02222762fea6f\n14295\t14503\t7381311727003064\t.bin_timestamp\t14cd74c5c0d370bc\n6\t80\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t80\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t80\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t80\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t84\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t84\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t74\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t74\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t77\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t77\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t84\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t84\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t78\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t78\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t80\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t80\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t77\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t77\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t80\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t80\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t84\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n5\t84\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n7\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n7\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t83\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t83\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t310\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t310\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t81\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t83\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t83\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t79\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tesp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n6\t82\t0\tC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size\taaab6d25a9c1826f\n"
  },
  {
    "path": "Code/build/bootloader/CMakeCache.txt",
    "content": "# This is the CMakeCache file.\n# For build in directory: c:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\n# It was generated by CMake: C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe\n# You can edit this file to change values found and used by cmake.\n# If you do not want to change any of the values, simply exit the editor.\n# If you do want to change a value, simply edit, save, and exit the editor.\n# The syntax for the file is as follows:\n# KEY:TYPE=VALUE\n# KEY is the name of a variable in the cache.\n# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.\n# VALUE is the current value for the KEY.\n\n########################\n# EXTERNAL cache entries\n########################\n\n//Path to a program.\nCMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-addr2line.exe\n\n//Path to a program.\nCMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//ASM Compiler Base Flags\nCMAKE_ASM_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the ASM compiler during DEBUG builds.\nCMAKE_ASM_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the ASM compiler during MINSIZEREL builds.\nCMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the ASM compiler during RELEASE builds.\nCMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the ASM compiler during RELWITHDEBINFO builds.\nCMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//Choose the type of build, options are: None Debug Release RelWithDebInfo\n// MinSizeRel ...\nCMAKE_BUILD_TYPE:STRING=\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//C++ Compiler Base Flags\nCMAKE_CXX_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the CXX compiler during DEBUG builds.\nCMAKE_CXX_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the CXX compiler during MINSIZEREL builds.\nCMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the CXX compiler during RELEASE builds.\nCMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the CXX compiler during RELWITHDEBINFO builds.\nCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//A wrapper around 'ar' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\n\n//A wrapper around 'ranlib' adding the appropriate '--plugin' option\n// for the GCC compiler\nCMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\n\n//C Compiler Base Flags\nCMAKE_C_FLAGS:STRING='-mlongcalls '\n\n//Flags used by the C compiler during DEBUG builds.\nCMAKE_C_FLAGS_DEBUG:STRING=-g\n\n//Flags used by the C compiler during MINSIZEREL builds.\nCMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG\n\n//Flags used by the C compiler during RELEASE builds.\nCMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG\n\n//Flags used by the C compiler during RELWITHDEBINFO builds.\nCMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG\n\n//Path to a program.\nCMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND\n\n//Flags used by the linker during all build types.\nCMAKE_EXE_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during DEBUG builds.\nCMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during MINSIZEREL builds.\nCMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during RELEASE builds.\nCMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during RELWITHDEBINFO builds.\nCMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//Enable/Disable output of compile commands during generation.\nCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=\n\n//Value Computed by CMake.\nCMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/pkgRedirects\n\n//Install path prefix, prepended onto install directories.\nCMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader\n\n//Path to a program.\nCMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\n\n//Program used to build from build.ninja files.\nCMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.10.2/ninja.exe\n\n//Flags used by the linker during the creation of modules during\n// all build types.\nCMAKE_MODULE_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of modules during\n// DEBUG builds.\nCMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of modules during\n// MINSIZEREL builds.\nCMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of modules during\n// RELEASE builds.\nCMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of modules during\n// RELWITHDEBINFO builds.\nCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//Path to a program.\nCMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-nm.exe\n\n//Path to a program.\nCMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objcopy.exe\n\n//Path to a program.\nCMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\n\n//Value Computed by CMake\nCMAKE_PROJECT_DESCRIPTION:STATIC=\n\n//Value Computed by CMake\nCMAKE_PROJECT_HOMEPAGE_URL:STATIC=\n\n//Value Computed by CMake\nCMAKE_PROJECT_NAME:STATIC=bootloader\n\n//Path to a program.\nCMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\n\n//Path to a program.\nCMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-readelf.exe\n\n//Flags used by the linker during the creation of shared libraries\n// during all build types.\nCMAKE_SHARED_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during DEBUG builds.\nCMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during MINSIZEREL builds.\nCMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during RELEASE builds.\nCMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of shared libraries\n// during RELWITHDEBINFO builds.\nCMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//If set, runtime paths are not added when installing shared libraries,\n// but are added when building.\nCMAKE_SKIP_INSTALL_RPATH:BOOL=NO\n\n//If set, runtime paths are not added when using shared libraries.\nCMAKE_SKIP_RPATH:BOOL=NO\n\n//Flags used by the linker during the creation of static libraries\n// during all build types.\nCMAKE_STATIC_LINKER_FLAGS:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during DEBUG builds.\nCMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during MINSIZEREL builds.\nCMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during RELEASE builds.\nCMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=\n\n//Flags used by the linker during the creation of static libraries\n// during RELWITHDEBINFO builds.\nCMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=\n\n//Path to a program.\nCMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-strip.exe\n\n//The CMake toolchain file\nCMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake\n\n//If this value is on, makefiles will be generated without the\n// .SILENT directive, and all commands will be echoed to the console\n// during the make.  This is useful for debugging only. With Visual\n// Studio IDE projects all commands are done without /nologo.\nCMAKE_VERBOSE_MAKEFILE:BOOL=FALSE\n\n//No help, variable specified on the command line.\nEXTRA_COMPONENT_DIRS:UNINITIALIZED=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\n\n//Git command line client\nGIT_EXECUTABLE:FILEPATH=C:/Espressif/Git/cmd/git.exe\n\n//No help, variable specified on the command line.\nIDF_PATH:UNINITIALIZED=C:/Espressif/frameworks/esp-idf-v5.1.2\n\n//IDF Build Target\nIDF_TARGET:STRING=esp32s3\n\n//IDF Build Toolchain Type\nIDF_TOOLCHAIN:STRING=gcc\n\n//No help, variable specified on the command line.\nPROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway\n\n//No help, variable specified on the command line.\nPYTHON:UNINITIALIZED=python\n\n//No help, variable specified on the command line.\nPYTHON_DEPS_CHECKED:UNINITIALIZED=1\n\n//No help, variable specified on the command line.\nSDKCONFIG:UNINITIALIZED=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\n\n//Value Computed by CMake\nbootloader_BINARY_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\n\n//Value Computed by CMake\nbootloader_IS_TOP_LEVEL:STATIC=ON\n\n//Value Computed by CMake\nbootloader_SOURCE_DIR:STATIC=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\n\n//Value Computed by CMake\nesp-idf_BINARY_DIR:STATIC=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf\n\n//Value Computed by CMake\nesp-idf_IS_TOP_LEVEL:STATIC=OFF\n\n//Value Computed by CMake\nesp-idf_SOURCE_DIR:STATIC=C:/Espressif/frameworks/esp-idf-v5.1.2\n\n\n########################\n# INTERNAL cache entries\n########################\n\n//ADVANCED property for variable: CMAKE_ADDR2LINE\nCMAKE_ADDR2LINE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_AR\nCMAKE_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR\nCMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB\nCMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1\nCMAKE_ASM_COMPILER_WORKS:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS\nCMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG\nCMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL\nCMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE\nCMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO\nCMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//This is the directory where this CMakeCache.txt was created\nCMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\n//Major version of cmake used to create the current loaded cache\nCMAKE_CACHE_MAJOR_VERSION:INTERNAL=3\n//Minor version of cmake used to create the current loaded cache\nCMAKE_CACHE_MINOR_VERSION:INTERNAL=24\n//Patch version of cmake used to create the current loaded cache\nCMAKE_CACHE_PATCH_VERSION:INTERNAL=0\n//Path to CMake executable.\nCMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe\n//Path to cpack program executable.\nCMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cpack.exe\n//Path to ctest program executable.\nCMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/ctest.exe\n//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR\nCMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB\nCMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS\nCMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG\nCMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL\nCMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE\nCMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO\nCMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_COMPILER_AR\nCMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB\nCMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS\nCMAKE_C_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG\nCMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL\nCMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE\nCMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO\nCMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_DLLTOOL\nCMAKE_DLLTOOL-ADVANCED:INTERNAL=1\n//Path to cache edit program executable.\nCMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/3.24.0/bin/cmake-gui.exe\n//Executable file format\nCMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS\nCMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG\nCMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL\nCMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE\nCMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS\nCMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1\n//Name of external makefile project generator.\nCMAKE_EXTRA_GENERATOR:INTERNAL=\n//Name of generator.\nCMAKE_GENERATOR:INTERNAL=Ninja\n//Generator instance identifier.\nCMAKE_GENERATOR_INSTANCE:INTERNAL=\n//Name of generator platform.\nCMAKE_GENERATOR_PLATFORM:INTERNAL=\n//Name of generator toolset.\nCMAKE_GENERATOR_TOOLSET:INTERNAL=\n//Source directory with the top level CMakeLists.txt file for this\n// project\nCMAKE_HOME_DIRECTORY:INTERNAL=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\n//ADVANCED property for variable: CMAKE_LINKER\nCMAKE_LINKER-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MAKE_PROGRAM\nCMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS\nCMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG\nCMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL\nCMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE\nCMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_NM\nCMAKE_NM-ADVANCED:INTERNAL=1\n//number of local generators\nCMAKE_NUMBER_OF_MAKEFILES:INTERNAL=22\n//ADVANCED property for variable: CMAKE_OBJCOPY\nCMAKE_OBJCOPY-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_OBJDUMP\nCMAKE_OBJDUMP-ADVANCED:INTERNAL=1\n//Platform information initialized\nCMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_RANLIB\nCMAKE_RANLIB-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_READELF\nCMAKE_READELF-ADVANCED:INTERNAL=1\n//Path to CMake installation.\nCMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS\nCMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG\nCMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL\nCMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE\nCMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH\nCMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_SKIP_RPATH\nCMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS\nCMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG\nCMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL\nCMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE\nCMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO\nCMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_STRIP\nCMAKE_STRIP-ADVANCED:INTERNAL=1\n//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE\nCMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1\n//Details about finding Git\nFIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Espressif/Git/cmd/git.exe][v2.44.0.windows.1()]\n//ADVANCED property for variable: GIT_EXECUTABLE\nGIT_EXECUTABLE-ADVANCED:INTERNAL=1\n//Have include stddef.h\nHAVE_STDDEF_H:INTERNAL=1\n//Have include stdint.h\nHAVE_STDINT_H:INTERNAL=1\n//Have include sys/types.h\nHAVE_SYS_TYPES_H:INTERNAL=1\n//Result of TRY_COMPILE\nHAVE_TIME_T_SIZE:INTERNAL=TRUE\n//CHECK_TYPE_SIZE: sizeof(time_t)\nTIME_T_SIZE:INTERNAL=8\n\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake",
    "content": "set(CMAKE_ASM_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\")\nset(CMAKE_ASM_COMPILER_ARG1 \"\")\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_ASM_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_ASM_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_ASM_COMPILER_LOADED 1)\nset(CMAKE_ASM_COMPILER_ID \"GNU\")\nset(CMAKE_ASM_COMPILER_VERSION \"\")\nset(CMAKE_ASM_COMPILER_ENV_VAR \"ASM\")\n\n\n\n\nset(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)\nset(CMAKE_ASM_LINKER_PREFERENCE 0)\n\n\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake",
    "content": "set(CMAKE_C_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\")\nset(CMAKE_C_COMPILER_ARG1 \"\")\nset(CMAKE_C_COMPILER_ID \"GNU\")\nset(CMAKE_C_COMPILER_VERSION \"12.2.0\")\nset(CMAKE_C_COMPILER_VERSION_INTERNAL \"\")\nset(CMAKE_C_COMPILER_WRAPPER \"\")\nset(CMAKE_C_STANDARD_COMPUTED_DEFAULT \"17\")\nset(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT \"ON\")\nset(CMAKE_C_COMPILE_FEATURES \"c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23\")\nset(CMAKE_C90_COMPILE_FEATURES \"c_std_90;c_function_prototypes\")\nset(CMAKE_C99_COMPILE_FEATURES \"c_std_99;c_restrict;c_variadic_macros\")\nset(CMAKE_C11_COMPILE_FEATURES \"c_std_11;c_static_assert\")\nset(CMAKE_C17_COMPILE_FEATURES \"c_std_17\")\nset(CMAKE_C23_COMPILE_FEATURES \"c_std_23\")\n\nset(CMAKE_C_PLATFORM_ID \"\")\nset(CMAKE_C_SIMULATE_ID \"\")\nset(CMAKE_C_COMPILER_FRONTEND_VARIANT \"\")\nset(CMAKE_C_SIMULATE_VERSION \"\")\n\n\n\n\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_C_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_C_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_COMPILER_IS_GNUCC 1)\nset(CMAKE_C_COMPILER_LOADED 1)\nset(CMAKE_C_COMPILER_WORKS TRUE)\nset(CMAKE_C_ABI_COMPILED TRUE)\n\nset(CMAKE_C_COMPILER_ENV_VAR \"CC\")\n\nset(CMAKE_C_COMPILER_ID_RUN 1)\nset(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)\nset(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)\nset(CMAKE_C_LINKER_PREFERENCE 10)\n\n# Save compiler ABI information.\nset(CMAKE_C_SIZEOF_DATA_PTR \"4\")\nset(CMAKE_C_COMPILER_ABI \"ELF\")\nset(CMAKE_C_BYTE_ORDER \"LITTLE_ENDIAN\")\nset(CMAKE_C_LIBRARY_ARCHITECTURE \"\")\n\nif(CMAKE_C_SIZEOF_DATA_PTR)\n  set(CMAKE_SIZEOF_VOID_P \"${CMAKE_C_SIZEOF_DATA_PTR}\")\nendif()\n\nif(CMAKE_C_COMPILER_ABI)\n  set(CMAKE_INTERNAL_PLATFORM_ABI \"${CMAKE_C_COMPILER_ABI}\")\nendif()\n\nif(CMAKE_C_LIBRARY_ARCHITECTURE)\n  set(CMAKE_LIBRARY_ARCHITECTURE \"\")\nendif()\n\nset(CMAKE_C_CL_SHOWINCLUDES_PREFIX \"\")\nif(CMAKE_C_CL_SHOWINCLUDES_PREFIX)\n  set(CMAKE_CL_SHOWINCLUDES_PREFIX \"${CMAKE_C_CL_SHOWINCLUDES_PREFIX}\")\nendif()\n\n\n\n\n\nset(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include\")\nset(CMAKE_C_IMPLICIT_LINK_LIBRARIES \"gcc;c;nosys;c;gcc\")\nset(CMAKE_C_IMPLICIT_LINK_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib\")\nset(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES \"\")\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake",
    "content": "set(CMAKE_CXX_COMPILER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe\")\nset(CMAKE_CXX_COMPILER_ARG1 \"\")\nset(CMAKE_CXX_COMPILER_ID \"GNU\")\nset(CMAKE_CXX_COMPILER_VERSION \"12.2.0\")\nset(CMAKE_CXX_COMPILER_VERSION_INTERNAL \"\")\nset(CMAKE_CXX_COMPILER_WRAPPER \"\")\nset(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT \"17\")\nset(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT \"ON\")\nset(CMAKE_CXX_COMPILE_FEATURES \"cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23\")\nset(CMAKE_CXX98_COMPILE_FEATURES \"cxx_std_98;cxx_template_template_parameters\")\nset(CMAKE_CXX11_COMPILE_FEATURES \"cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates\")\nset(CMAKE_CXX14_COMPILE_FEATURES \"cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates\")\nset(CMAKE_CXX17_COMPILE_FEATURES \"cxx_std_17\")\nset(CMAKE_CXX20_COMPILE_FEATURES \"cxx_std_20\")\nset(CMAKE_CXX23_COMPILE_FEATURES \"cxx_std_23\")\n\nset(CMAKE_CXX_PLATFORM_ID \"\")\nset(CMAKE_CXX_SIMULATE_ID \"\")\nset(CMAKE_CXX_COMPILER_FRONTEND_VARIANT \"\")\nset(CMAKE_CXX_SIMULATE_VERSION \"\")\n\n\n\n\nset(CMAKE_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe\")\nset(CMAKE_CXX_COMPILER_AR \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe\")\nset(CMAKE_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe\")\nset(CMAKE_CXX_COMPILER_RANLIB \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe\")\nset(CMAKE_LINKER \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe\")\nset(CMAKE_MT \"\")\nset(CMAKE_COMPILER_IS_GNUCXX 1)\nset(CMAKE_CXX_COMPILER_LOADED 1)\nset(CMAKE_CXX_COMPILER_WORKS TRUE)\nset(CMAKE_CXX_ABI_COMPILED TRUE)\n\nset(CMAKE_CXX_COMPILER_ENV_VAR \"CXX\")\n\nset(CMAKE_CXX_COMPILER_ID_RUN 1)\nset(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)\nset(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)\n\nforeach (lang C OBJC OBJCXX)\n  if (CMAKE_${lang}_COMPILER_ID_RUN)\n    foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)\n      list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})\n    endforeach()\n  endif()\nendforeach()\n\nset(CMAKE_CXX_LINKER_PREFERENCE 30)\nset(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)\n\n# Save compiler ABI information.\nset(CMAKE_CXX_SIZEOF_DATA_PTR \"4\")\nset(CMAKE_CXX_COMPILER_ABI \"ELF\")\nset(CMAKE_CXX_BYTE_ORDER \"LITTLE_ENDIAN\")\nset(CMAKE_CXX_LIBRARY_ARCHITECTURE \"\")\n\nif(CMAKE_CXX_SIZEOF_DATA_PTR)\n  set(CMAKE_SIZEOF_VOID_P \"${CMAKE_CXX_SIZEOF_DATA_PTR}\")\nendif()\n\nif(CMAKE_CXX_COMPILER_ABI)\n  set(CMAKE_INTERNAL_PLATFORM_ABI \"${CMAKE_CXX_COMPILER_ABI}\")\nendif()\n\nif(CMAKE_CXX_LIBRARY_ARCHITECTURE)\n  set(CMAKE_LIBRARY_ARCHITECTURE \"\")\nendif()\n\nset(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX \"\")\nif(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)\n  set(CMAKE_CL_SHOWINCLUDES_PREFIX \"${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}\")\nendif()\n\n\n\n\n\nset(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include\")\nset(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES \"stdc++;m;gcc;c;nosys;c;gcc\")\nset(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib\")\nset(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES \"\")\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake",
    "content": "set(CMAKE_HOST_SYSTEM \"Windows-10.0.22631\")\nset(CMAKE_HOST_SYSTEM_NAME \"Windows\")\nset(CMAKE_HOST_SYSTEM_VERSION \"10.0.22631\")\nset(CMAKE_HOST_SYSTEM_PROCESSOR \"AMD64\")\n\ninclude(\"C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake\")\n\nset(CMAKE_SYSTEM \"Generic\")\nset(CMAKE_SYSTEM_NAME \"Generic\")\nset(CMAKE_SYSTEM_VERSION \"\")\nset(CMAKE_SYSTEM_PROCESSOR \"\")\n\nset(CMAKE_CROSSCOMPILING \"TRUE\")\n\nset(CMAKE_SYSTEM_LOADED 1)\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c",
    "content": "#ifdef __cplusplus\n# error \"A C++ compiler has been selected for C.\"\n#endif\n\n#if defined(__18CXX)\n# define ID_VOID_MAIN\n#endif\n#if defined(__CLASSIC_C__)\n/* cv-qualifiers did not exist in K&R C */\n# define const\n# define volatile\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_C)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_C >= 0x5100\n   /* __SUNPRO_C = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# endif\n\n#elif defined(__HP_cc)\n# define COMPILER_ID \"HP\"\n  /* __HP_cc = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_cc     % 100)\n\n#elif defined(__DECC)\n# define COMPILER_ID \"Compaq\"\n  /* __DECC_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECC_VER         % 10000)\n\n#elif defined(__IBMC__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__TINYC__)\n# define COMPILER_ID \"TinyCC\"\n\n#elif defined(__BCC__)\n# define COMPILER_ID \"Bruce\"\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__)\n# define COMPILER_ID \"GNU\"\n# define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)\n# define COMPILER_ID \"SDCC\"\n# if defined(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)\n#  define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)\n# else\n  /* SDCC = VRP */\n#  define COMPILER_VERSION_MAJOR DEC(SDCC/100)\n#  define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)\n#  define COMPILER_VERSION_PATCH DEC(SDCC    % 10)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if !defined(__STDC__) && !defined(__clang__)\n# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)\n#  define C_VERSION \"90\"\n# else\n#  define C_VERSION\n# endif\n#elif __STDC_VERSION__ > 201710L\n# define C_VERSION \"23\"\n#elif __STDC_VERSION__ >= 201710L\n# define C_VERSION \"17\"\n#elif __STDC_VERSION__ >= 201000L\n# define C_VERSION \"11\"\n#elif __STDC_VERSION__ >= 199901L\n# define C_VERSION \"99\"\n#else\n# define C_VERSION \"90\"\n#endif\nconst char* info_language_standard_default =\n  \"INFO\" \":\" \"standard_default[\" C_VERSION \"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\n#ifdef ID_VOID_MAIN\nvoid main() {}\n#else\n# if defined(__CLASSIC_C__)\nint main(argc, argv) int argc; char *argv[];\n# else\nint main(int argc, char* argv[])\n# endif\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n  require += info_arch[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n#endif\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp",
    "content": "/* This source file must have a .cpp extension so that all C++ compilers\n   recognize the extension without flags.  Borland does not know .cxx for\n   example.  */\n#ifndef __cplusplus\n# error \"A C compiler has been selected for C++.\"\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__COMO__)\n# define COMPILER_ID \"Comeau\"\n  /* __COMO_VERSION__ = VRR */\n# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)\n# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)\n\n#elif defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_CC)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_CC >= 0x5100\n   /* __SUNPRO_CC = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# endif\n\n#elif defined(__HP_aCC)\n# define COMPILER_ID \"HP\"\n  /* __HP_aCC = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_aCC     % 100)\n\n#elif defined(__DECCXX)\n# define COMPILER_ID \"Compaq\"\n  /* __DECCXX_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER         % 10000)\n\n#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__) || defined(__GNUG__)\n# define COMPILER_ID \"GNU\"\n# if defined(__GNUC__)\n#  define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L\n#  if defined(__INTEL_CXX11_MODE__)\n#    if defined(__cpp_aggregate_nsdmi)\n#      define CXX_STD 201402L\n#    else\n#      define CXX_STD 201103L\n#    endif\n#  else\n#    define CXX_STD 199711L\n#  endif\n#elif defined(_MSC_VER) && defined(_MSVC_LANG)\n#  define CXX_STD _MSVC_LANG\n#else\n#  define CXX_STD __cplusplus\n#endif\n\nconst char* info_language_standard_default = \"INFO\" \":\" \"standard_default[\"\n#if CXX_STD > 202002L\n  \"23\"\n#elif CXX_STD > 201703L\n  \"20\"\n#elif CXX_STD >= 201703L\n  \"17\"\n#elif CXX_STD >= 201402L\n  \"14\"\n#elif CXX_STD >= 201103L\n  \"11\"\n#else\n  \"98\"\n#endif\n\"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\nint main(int argc, char* argv[])\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/CMakeOutput.log",
    "content": "The target system is: Generic -  - \r\nThe host system is: Windows - 10.0.22631 - AMD64\r\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" succeeded.\r\nCompiler: C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe \r\nBuild flags: -mlongcalls;\r\nId flags:  \r\n\r\nThe output was:\r\n0\r\n\r\n\r\nCompilation of the C compiler identification source \"CMakeCCompilerId.c\" produced \"a.out\"\r\n\r\nThe C compiler identification is GNU, found in \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out\"\r\n\r\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" succeeded.\r\nCompiler: C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe \r\nBuild flags: -mlongcalls;\r\nId flags:  \r\n\r\nThe output was:\r\n0\r\n\r\n\r\nCompilation of the CXX compiler identification source \"CMakeCXXCompilerId.cpp\" produced \"a.out\"\r\n\r\nThe CXX compiler identification is GNU, found in \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out\"\r\n\r\nChecking whether the ASM compiler is GNU using \"--version\" matched \"(GNU assembler)|(GCC)|(Free Software Foundation)\":\r\nxtensa-esp32s3-elf-gcc.exe (crosstool-NG esp-12.2.0_20230208) 12.2.0\r\nCopyright (C) 2022 Free Software Foundation, Inc.\r\nThis is free software; see the source for copying conditions.  There is NO\r\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\r\n\r\nDetecting C compiler ABI info compiled with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_c59b8 && [1/2] Building C object CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c59b8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y733X.s\r\r\nGNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"\r\r\n#include \"...\" search starts here:\r\r\n#include <...> search starts here:\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\r\r\nEnd of search list.\r\r\nGNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nCompiler executable checksum: b69a94acee987b4de6aaaa336cf1fbde\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y733X.s\r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.'\r\r\n[2/2] Linking C executable cmTC_c59b8\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe\r\r\nCOLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_c59b8' '-dumpdir' 'cmTC_c59b8.'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccVLhtSa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_c59b8 c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_c59b8' '-dumpdir' 'cmTC_c59b8.'\r\r\n\r\n\r\n\r\nParsed C implicit include dir info from above output: rv=done\r\n  found start of include info\r\n  found start of implicit include info\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  end of search list found\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n  implicit include dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n\r\n\r\nParsed C implicit link information from above output:\r\n  link line regex: [^( *|.*[/\\])(xtensa-esp32s3-elf-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]\r\n  ignore line: [Change Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp]\r\n  ignore line: []\r\n  ignore line: [Run Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_c59b8 && [1/2] Building C object CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_c59b8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y733X.s]\r\n  ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"]\r\n  ignore line: [#include \"...\" search starts here:]\r\n  ignore line: [#include <...> search starts here:]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  ignore line: [End of search list.]\r\n  ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [Compiler executable checksum: b69a94acee987b4de6aaaa336cf1fbde]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\cc9y733X.s]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.']\r\n  ignore line: [[2/2] Linking C executable cmTC_c59b8]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe]\r\n  ignore line: [COLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_c59b8' '-dumpdir' 'cmTC_c59b8.']\r\n  link line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccVLhtSa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_c59b8 c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe] ==> ignore\r\n    arg [-plugin] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll] ==> ignore\r\n    arg [-plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe] ==> ignore\r\n    arg [-plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccVLhtSa.res] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lnosys] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-o] ==> ignore\r\n    arg [cmTC_c59b8] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib]\r\n    arg [CMakeFiles/cmTC_c59b8.dir/CMakeCCompilerABI.c.obj] ==> ignore\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lnosys] ==> lib [nosys]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit libs: [gcc;c;nosys;c;gcc]\r\n  implicit objs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  implicit dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit fwks: []\r\n\r\n\r\nDetecting CXX compiler ABI info compiled with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_ab65e && [1/2] Building CXX object CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_ab65e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccygKwa1.s\r\r\nGNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"\r\r\nignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"\r\r\n#include \"...\" search starts here:\r\r\n#include <...> search starts here:\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\r\r\n c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\r\r\nEnd of search list.\r\r\nGNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)\r\r\n\tcompiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP\r\r\n\r\r\nGGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072\r\r\nCompiler executable checksum: 4b9c7c36b27f0814815d9daed1ed2832\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccygKwa1.s\r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.'\r\r\n[2/2] Linking CXX executable cmTC_ab65e\r\r\nUsing built-in specs.\r\r\nCOLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe\r\r\nCOLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe\r\r\nTarget: xtensa-esp32s3-elf\r\r\nConfigured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld\r\r\nThread model: posix\r\r\nSupported LTO compression algorithms: zlib\r\r\ngcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) \r\r\nCOMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/\r\r\nLIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/;c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_ab65e' '-dumpdir' 'cmTC_ab65e.'\r\r\n c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccofIXbd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_ab65e c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o\r\r\nCOLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_ab65e' '-dumpdir' 'cmTC_ab65e.'\r\r\n\r\n\r\n\r\nParsed CXX implicit include dir info from above output: rv=done\r\n  found start of include info\r\n  found start of implicit include info\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n    add: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  end of search list found\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include]\r\n  collapse include dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n  implicit include dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/12.2.0/backward;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include]\r\n\r\n\r\nParsed CXX implicit link information from above output:\r\n  link line regex: [^( *|.*[/\\])(xtensa-esp32s3-elf-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]\r\n  ignore line: [Change Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp]\r\n  ignore line: []\r\n  ignore line: [Run Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_ab65e && [1/2] Building CXX object CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/ C:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_ab65e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccygKwa1.s]\r\n  ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include\"]\r\n  ignore line: [ignoring duplicate directory \"c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include\"]\r\n  ignore line: [#include \"...\" search starts here:]\r\n  ignore line: [#include <...> search starts here:]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/xtensa-esp32s3-elf]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include/c++/12.2.0/backward]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/include-fixed]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/sys-include]\r\n  ignore line: [ c:\\espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/include]\r\n  ignore line: [End of search list.]\r\n  ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32s3-elf)]\r\n  ignore line: [\tcompiled by GNU C version 6.3.0 20170516  GMP version 6.2.1  MPFR version 4.1.0  MPC version 1.2.1  isl version isl-0.24-GMP]\r\n  ignore line: []\r\n  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]\r\n  ignore line: [Compiler executable checksum: 4b9c7c36b27f0814815d9daed1ed2832]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/']\r\n  ignore line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccygKwa1.s]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.']\r\n  ignore line: [[2/2] Linking CXX executable cmTC_ab65e]\r\n  ignore line: [Using built-in specs.]\r\n  ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe]\r\n  ignore line: [COLLECT_LTO_WRAPPER=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe]\r\n  ignore line: [Target: xtensa-esp32s3-elf]\r\n  ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]\r\n  ignore line: [Thread model: posix]\r\n  ignore line: [Supported LTO compression algorithms: zlib]\r\n  ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]\r\n  ignore line: [COMPILER_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/bin/]\r\n  ignore line: [LIBRARY_PATH=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/]\r\n  ignore line: [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/]\r\n  ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_ab65e' '-dumpdir' 'cmTC_ab65e.']\r\n  link line: [ c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe -plugin c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccofIXbd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_ab65e c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0 -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc -Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/collect2.exe] ==> ignore\r\n    arg [-plugin] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/liblto_plugin.dll] ==> ignore\r\n    arg [-plugin-opt=c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/12.2.0/lto-wrapper.exe] ==> ignore\r\n    arg [-plugin-opt=-fresolution=C:\\Users\\Jatki\\AppData\\Local\\Temp\\ccofIXbd.res] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lnosys] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lc] ==> ignore\r\n    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore\r\n    arg [-o] ==> ignore\r\n    arg [cmTC_ab65e] ==> ignore\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc]\r\n    arg [-Lc:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib]\r\n    arg [CMakeFiles/cmTC_ab65e.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore\r\n    arg [-lstdc++] ==> lib [stdc++]\r\n    arg [-lm] ==> lib [m]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lnosys] ==> lib [nosys]\r\n    arg [-lc] ==> lib [c]\r\n    arg [-lgcc] ==> lib [gcc]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n    arg [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o]\r\n  collapse obj [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc]\r\n  collapse library dir [c:/espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/12.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]\r\n  implicit objs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crti.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtbegin.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtend.o;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0/crtn.o]\r\n  implicit dirs: [C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/12.2.0;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/lib/gcc;C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib]\r\n  implicit fwks: []\r\n\r\n\r\nDetermining if the include file sys/types.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_84a33 && [1/2] Building C object CMakeFiles/cmTC_84a33.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_84a33\r\r\n\r\n\r\n\r\nDetermining if the include file stdint.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_c65e0 && [1/2] Building C object CMakeFiles/cmTC_c65e0.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_c65e0\r\r\n\r\n\r\n\r\nDetermining if the include file stddef.h exists passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_7c1f5 && [1/2] Building C object CMakeFiles/cmTC_7c1f5.dir/CheckIncludeFile.c.obj\r\r\n[2/2] Linking C executable cmTC_7c1f5\r\r\n\r\n\r\n\r\nDetermining size of time_t passed with the following output:\r\nChange Dir: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/CMakeTmp\r\n\r\nRun Build Command(s):C:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_e1c24 && [1/2] Building C object CMakeFiles/cmTC_e1c24.dir/TIME_T_SIZE.c.obj\r\r\n[2/2] Linking C executable cmTC_e1c24\r\r\n\r\n\r\n\r\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c",
    "content": "#include <sys/types.h>\n#include <stdint.h>\n#include <stddef.h>\n\n\n#undef KEY\n#if defined(__i386)\n# define KEY '_','_','i','3','8','6'\n#elif defined(__x86_64)\n# define KEY '_','_','x','8','6','_','6','4'\n#elif defined(__PPC64__)\n# define KEY '_','_','P','P','C','6','4','_','_'\n#elif defined(__ppc64__)\n# define KEY '_','_','p','p','c','6','4','_','_'\n#elif defined(__PPC__)\n# define KEY '_','_','P','P','C','_','_'\n#elif defined(__ppc__)\n# define KEY '_','_','p','p','c','_','_'\n#elif defined(__aarch64__)\n# define KEY '_','_','a','a','r','c','h','6','4','_','_'\n#elif defined(__ARM_ARCH_7A__)\n# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'\n#elif defined(__ARM_ARCH_7S__)\n# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'\n#endif\n\n#define SIZE (sizeof(time_t))\nstatic char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',\n  ('0' + ((SIZE / 10000)%10)),\n  ('0' + ((SIZE / 1000)%10)),\n  ('0' + ((SIZE / 100)%10)),\n  ('0' + ((SIZE / 10)%10)),\n  ('0' +  (SIZE    % 10)),\n  ']',\n#ifdef KEY\n  ' ','k','e','y','[', KEY, ']',\n#endif\n  '\\0'};\n\n#ifdef __CLASSIC_C__\nint main(argc, argv) int argc; char *argv[];\n#else\nint main(int argc, char *argv[])\n#endif\n{\n  int require = 0;\n  require += info_size[argc];\n  (void)argv;\n  return require;\n}\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/TargetDirectories.txt",
    "content": "C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/menuconfig.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/confserver.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/save-defconfig.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/gen_project_binary.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/app.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/erase_flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/monitor.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/_project_elf_src.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/bootloader.elf.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/size.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/size-files.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/size-components.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/dfu.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/dfu-list.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/dfu-flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/uf2-app.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/uf2.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/clean_additional.cmake",
    "content": "# Additional clean files\ncmake_minimum_required(VERSION 3.16)\n\nif(\"${CONFIG}\" STREQUAL \"\" OR \"${CONFIG}\" STREQUAL \"\")\n  file(REMOVE_RECURSE\n  \"bootloader.bin\"\n  \"bootloader.map\"\n  \"config\\\\sdkconfig.cmake\"\n  \"config\\\\sdkconfig.h\"\n  \"project_elf_src_esp32s3.c\"\n  )\nendif()\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/cmake.check_cache",
    "content": "# This file is generated by cmake for dependency checking of the CMakeCache.txt file\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/git-data/HEAD",
    "content": "482a8fb2d78e3b58eb21b26da8a5bedf90623213\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/git-data/grabRef.cmake",
    "content": "#\n# Internal file for GetGitRevisionDescription.cmake\n#\n# Requires CMake 2.6 or newer (uses the 'function' command)\n#\n# Original Author:\n# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>\n# http://academic.cleardefinition.com\n# Iowa State University HCI Graduate Program/VRAC\n#\n# Copyright Iowa State University 2009-2010.\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at\n# http://www.boost.org/LICENSE_1_0.txt)\n\nset(HEAD_HASH)\n\nfile(READ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/git-data/HEAD\" HEAD_CONTENTS LIMIT 1024)\n\nstring(STRIP \"${HEAD_CONTENTS}\" HEAD_CONTENTS)\nset(GIT_DIR \"C:/Espressif/frameworks/esp-idf-v5.1.2/.git\")\n# handle git-worktree\nif(EXISTS \"${GIT_DIR}/commondir\")\n\tfile(READ \"${GIT_DIR}/commondir\" GIT_DIR_NEW LIMIT 1024)\n\tstring(STRIP \"${GIT_DIR_NEW}\" GIT_DIR_NEW)\n\tif(NOT IS_ABSOLUTE \"${GIT_DIR_NEW}\")\n\t\tget_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)\n\tendif()\n\tif(EXISTS \"${GIT_DIR_NEW}\")\n\t\tset(GIT_DIR \"${GIT_DIR_NEW}\")\n\tendif()\nendif()\nif(HEAD_CONTENTS MATCHES \"ref\")\n\t# named branch\n\tstring(REPLACE \"ref: \" \"\" HEAD_REF \"${HEAD_CONTENTS}\")\n\tif(EXISTS \"${GIT_DIR}/${HEAD_REF}\")\n\t\tconfigure_file(\"${GIT_DIR}/${HEAD_REF}\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/git-data/head-ref\" COPYONLY)\n\telseif(EXISTS \"${GIT_DIR}/logs/${HEAD_REF}\")\n\t\tconfigure_file(\"${GIT_DIR}/logs/${HEAD_REF}\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/git-data/head-ref\" COPYONLY)\n\t\tset(HEAD_HASH \"${HEAD_REF}\")\n\tendif()\nelse()\n\t# detached HEAD\n\tconfigure_file(\"${GIT_DIR}/HEAD\" \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/git-data/head-ref\" COPYONLY)\nendif()\n\nif(NOT HEAD_HASH)\n\tfile(READ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/CMakeFiles/git-data/head-ref\" HEAD_HASH LIMIT 1024)\n\tstring(STRIP \"${HEAD_HASH}\" HEAD_HASH)\nendif()\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/git-data/head-ref",
    "content": "482a8fb2d78e3b58eb21b26da8a5bedf90623213\n"
  },
  {
    "path": "Code/build/bootloader/CMakeFiles/rules.ninja",
    "content": "# CMAKE generated file: DO NOT EDIT!\n# Generated by \"Ninja\" Generator, CMake Version 3.24\n\n# This file contains all the rules used to get the outputs files\n# built from the input files.\n# It is included in the main 'build.ninja'.\n\n# =============================================================================\n# Project: bootloader\n# Configurations: \n# =============================================================================\n# =============================================================================\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER__bootloader.2eelf_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C executable.\n\nrule C_EXECUTABLE_LINKER__bootloader.2eelf_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD\"\n  description = Linking C executable $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for running custom commands.\n\nrule CUSTOM_COMMAND\n  command = $COMMAND\n  description = $DESC\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_xtensa_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_xtensa_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_soc_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_soc_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_micro-ecc_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_hal_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_hal_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_spi_flash_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_spi_flash_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_app_format_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_bootloader_support_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_efuse_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_efuse_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_system_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_system_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_hw_support_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_common_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_common_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling ASM files.\n\nrule ASM_COMPILER____idf_esp_rom_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building ASM object $out\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_esp_rom_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_esp_rom_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_log_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_log_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for compiling C files.\n\nrule C_COMPILER____idf_main_\n  depfile = $DEP_FILE\n  deps = gcc\n  command = C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in\n  description = Building C object $out\n\n\n#############################################\n# Rule for linking C static library.\n\nrule C_STATIC_LIBRARY_LINKER____idf_main_\n  command = cmd.exe /C \"$PRE_LINK && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E rm -f $TARGET_FILE && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD\"\n  description = Linking C static library $TARGET_FILE\n  restat = $RESTAT\n\n\n#############################################\n# Rule for re-running cmake.\n\nrule RERUN_CMAKE\n  command = C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\n  description = Re-running CMake...\n  generator = 1\n\n\n#############################################\n# Rule for cleaning additional files.\n\nrule CLEAN_ADDITIONAL\n  command = C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\\clean_additional.cmake\n  description = Cleaning additional files...\n\n\n#############################################\n# Rule for cleaning all built files.\n\nrule CLEAN\n  command = C:\\Espressif\\tools\\ninja\\1.10.2\\ninja.exe $FILE_ARG -t clean $TARGETS\n  description = Cleaning all built files...\n\n\n#############################################\n# Rule for printing all primary targets available.\n\nrule HELP\n  command = C:\\Espressif\\tools\\ninja\\1.10.2\\ninja.exe -t targets\n  description = All primary targets available:\n\n"
  },
  {
    "path": "Code/build/bootloader/build.ninja",
    "content": "# CMAKE generated file: DO NOT EDIT!\n# Generated by \"Ninja\" Generator, CMake Version 3.24\n\n# This file contains all the build statements describing the\n# compilation DAG.\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# \n# Which is the root file.\n# =============================================================================\n\n# =============================================================================\n# Project: bootloader\n# Configurations: \n# =============================================================================\n\n#############################################\n# Minimal version of Ninja required by this file\n\nninja_required_version = 1.5\n\n# =============================================================================\n# Include auxiliary files.\n\n\n#############################################\n# Include rules file.\n\ninclude CMakeFiles/rules.ninja\n\n# =============================================================================\n\n#############################################\n# Logical path to working directory; prefix for absolute paths.\n\ncmake_ninja_workdir = C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/\n\n#############################################\n# Utility command for menuconfig\n\nbuild menuconfig: phony CMakeFiles/menuconfig\n\n\n#############################################\n# Utility command for confserver\n\nbuild confserver: phony CMakeFiles/confserver\n\n\n#############################################\n# Utility command for save-defconfig\n\nbuild save-defconfig: phony CMakeFiles/save-defconfig\n\n\n#############################################\n# Utility command for gen_project_binary\n\nbuild gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf\n\n\n#############################################\n# Utility command for app\n\nbuild app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary\n\n\n#############################################\n# Utility command for erase_flash\n\nbuild erase_flash: phony CMakeFiles/erase_flash\n\n\n#############################################\n# Utility command for monitor\n\nbuild monitor: phony CMakeFiles/monitor\n\n\n#############################################\n# Utility command for _project_elf_src\n\nbuild _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.c\n\n# =============================================================================\n# Object build statements for EXECUTABLE target bootloader.elf\n\n\n#############################################\n# Order-only phony target for bootloader.elf\n\nbuild cmake_object_order_depends_target_bootloader.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_xtensa project_elf_src_esp32s3.c\n\nbuild CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__bootloader.2eelf_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/project_elf_src_esp32s3.c || cmake_object_order_depends_target_bootloader.elf\n  DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE\n  DEP_FILE = CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always\n  INCLUDES = -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = CMakeFiles\\bootloader.elf.dir\n  OBJECT_FILE_DIR = CMakeFiles\\bootloader.elf.dir\n  TARGET_COMPILE_PDB = CMakeFiles\\bootloader.elf.dir\\\n  TARGET_PDB = bootloader.elf.pdb\n\n\n# =============================================================================\n# Link build statements for EXECUTABLE target bootloader.elf\n\n\n#############################################\n# Link the executable bootloader.elf\n\nbuild bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/libxt_hal.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ld/esp32s3.peripherals.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/ld/esp32s3/bootloader.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/ld/esp32s3/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a\n  FLAGS = -mlongcalls\n  LINK_FLAGS = -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.newlib.ld -T esp32s3.peripherals.ld -T bootloader.ld -T bootloader.rom.ld\n  LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a  esp-idf/soc/libsoc.a  esp-idf/micro-ecc/libmicro-ecc.a  esp-idf/hal/libhal.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/efuse/libefuse.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/log/liblog.a  esp-idf/main/libmain.a  esp-idf/xtensa/libxtensa.a  esp-idf/soc/libsoc.a  esp-idf/micro-ecc/libmicro-ecc.a  esp-idf/hal/libhal.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/efuse/libefuse.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/log/liblog.a  esp-idf/xtensa/libxtensa.a  esp-idf/soc/libsoc.a  esp-idf/micro-ecc/libmicro-ecc.a  esp-idf/hal/libhal.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/efuse/libefuse.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/log/liblog.a  esp-idf/xtensa/libxtensa.a  esp-idf/soc/libsoc.a  esp-idf/micro-ecc/libmicro-ecc.a  esp-idf/hal/libhal.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/efuse/libefuse.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/log/liblog.a  esp-idf/xtensa/libxtensa.a  esp-idf/soc/libsoc.a  esp-idf/micro-ecc/libmicro-ecc.a  esp-idf/hal/libhal.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/efuse/libefuse.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/log/liblog.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/libxt_hal.a  -u __assert_func  -u abort  -u __ubsan_include  -u bootloader_hooks_include\n  LINK_PATH = -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld   -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ld   -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/ld/esp32s3\n  OBJECT_DIR = CMakeFiles\\bootloader.elf.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = CMakeFiles\\bootloader.elf.dir\\\n  TARGET_FILE = bootloader.elf\n  TARGET_PDB = bootloader.elf.pdb\n\n\n#############################################\n# Utility command for size\n\nbuild size: phony CMakeFiles/size\n\n\n#############################################\n# Utility command for size-files\n\nbuild size-files: phony CMakeFiles/size-files\n\n\n#############################################\n# Utility command for size-components\n\nbuild size-components: phony CMakeFiles/size-components\n\n\n#############################################\n# Utility command for dfu\n\nbuild dfu: phony CMakeFiles/dfu gen_project_binary\n\n\n#############################################\n# Utility command for dfu-list\n\nbuild dfu-list: phony CMakeFiles/dfu-list\n\n\n#############################################\n# Utility command for dfu-flash\n\nbuild dfu-flash: phony CMakeFiles/dfu-flash\n\n\n#############################################\n# Utility command for uf2-app\n\nbuild uf2-app: phony CMakeFiles/uf2-app gen_project_binary\n\n\n#############################################\n# Utility command for uf2\n\nbuild uf2: phony CMakeFiles/uf2 gen_project_binary\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild edit_cache: phony CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild rebuild_cache: phony CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Custom command for CMakeFiles\\menuconfig\n\nbuild CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --dont-write-deprecated --output config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/check_term.py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig IDF_TARGET=esp32s3 IDF_ENV_FPGA= python -m menuconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --output config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\confserver\n\nbuild CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env && python -m kconfserver --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\save-defconfig\n\nbuild CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/sdkconfig.defaults\"\n  pool = console\n\n\n#############################################\n# Phony custom command for CMakeFiles\\gen_project_binary\n\nbuild CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a\n\n\n#############################################\n# Custom command for .bin_timestamp\n\nbuild .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --min-rev-full 0 --max-rev-full 99 -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Generated C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E md5sum C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin > C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/.bin_timestamp\"\n  DESC = Generating binary image from built executable\n  restat = 1\n\n\n#############################################\n# Phony custom command for CMakeFiles\\app\n\nbuild CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary\n\n\n#############################################\n# Custom command for CMakeFiles\\erase_flash\n\nbuild CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\monitor\n\nbuild CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--target;esp32s3;--revision;0;C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader -P run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Phony custom command for CMakeFiles\\_project_elf_src\n\nbuild CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32s3.c\n\n\n#############################################\n# Custom command for project_elf_src_esp32s3.c\n\nbuild project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/project_elf_src_esp32s3.c\"\n  DESC = Generating project_elf_src_esp32s3.c\n  restat = 1\n\n\n#############################################\n# Custom command for CMakeFiles\\size\n\nbuild CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\size-files\n\nbuild CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\size-components\n\nbuild CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu\n\nbuild CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkdfu.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/dfu.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/flasher_args.json --pid 9 --flash-size 2MB\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu-list\n\nbuild CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D ESP_DFU_LIST=\"1\" -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_dfu_util.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu-flash\n\nbuild CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D ESP_DFU_BIN=\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/dfu.bin\" -D ESP_DFU_PID=\"9\" -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_dfu_util.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\uf2-app\n\nbuild CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkuf2.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/uf2-app.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/flasher_args.json --chip-id 0xc47e5767 --bin app\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\uf2\n\nbuild CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkuf2.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/uf2.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/flasher_args.json --chip-id 0xc47e5767\"\n  pool = console\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_xtensa\n\n\n#############################################\n# Order-only phony target for __idf_xtensa\n\nbuild cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_soc\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_xtensa\n\n\n#############################################\n# Link the static library esp-idf\\xtensa\\libxtensa.a\n\nbuild esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj || esp-idf/soc/libsoc.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_FILE = esp-idf\\xtensa\\libxtensa.a\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_soc\n\n\n#############################################\n# Order-only phony target for __idf_soc\n\nbuild cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_micro-ecc\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_otg_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_otg_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_soc\n\n\n#############################################\n# Link the static library esp-idf\\soc\\libsoc.a\n\nbuild esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_FILE = esp-idf\\soc\\libsoc.a\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_micro-ecc\n\n\n#############################################\n# Order-only phony target for __idf_micro-ecc\n\nbuild cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_hal\n\nbuild esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\n  OBJECT_FILE_DIR = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\n  TARGET_COMPILE_PDB = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\__idf_micro-ecc.pdb\n  TARGET_PDB = esp-idf\\micro-ecc\\libmicro-ecc.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_micro-ecc\n\n\n#############################################\n# Link the static library esp-idf\\micro-ecc\\libmicro-ecc.a\n\nbuild esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/hal/libhal.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\__idf_micro-ecc.pdb\n  TARGET_FILE = esp-idf\\micro-ecc\\libmicro-ecc.a\n  TARGET_PDB = esp-idf\\micro-ecc\\libmicro-ecc.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\micro-ecc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\micro-ecc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_hal\n\n\n#############################################\n# Order-only phony target for __idf_hal\n\nbuild cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_spi_flash\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_hal\n\n\n#############################################\n# Link the static library esp-idf\\hal\\libhal.a\n\nbuild esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/spi_flash/libspi_flash.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_FILE = esp-idf\\hal\\libhal.a\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_spi_flash\n\n\n#############################################\n# Order-only phony target for __idf_spi_flash\n\nbuild cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_app_format\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_spi_flash\n\n\n#############################################\n# Link the static library esp-idf\\spi_flash\\libspi_flash.a\n\nbuild esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj || esp-idf/esp_app_format/libesp_app_format.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_FILE = esp-idf\\spi_flash\\libspi_flash.a\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_app_format\n\n\n#############################################\n# Order-only phony target for __idf_esp_app_format\n\nbuild cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_bootloader_support\n\nbuild esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D PROJECT_NAME=\\\"bootloader\\\" -DPROJECT_VER=\\\"v5.1.2-dirty\\\"\n  DEP_FILE = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\__idf_esp_app_format.pdb\n  TARGET_PDB = esp-idf\\esp_app_format\\libesp_app_format.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_app_format\n\n\n#############################################\n# Link the static library esp-idf\\esp_app_format\\libesp_app_format.a\n\nbuild esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\__idf_esp_app_format.pdb\n  TARGET_FILE = esp-idf\\esp_app_format\\libesp_app_format.a\n  TARGET_PDB = esp-idf\\esp_app_format\\libesp_app_format.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_bootloader_support\n\n\n#############################################\n# Order-only phony target for __idf_bootloader_support\n\nbuild cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_sha.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_bootloader_support\n\n\n#############################################\n# Link the static library esp-idf\\bootloader_support\\libbootloader_support.a\n\nbuild esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_FILE = esp-idf\\bootloader_support\\libbootloader_support.a\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_efuse\n\n\n#############################################\n# Order-only phony target for __idf_efuse\n\nbuild cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_system\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_efuse\n\n\n#############################################\n# Link the static library esp-idf\\efuse\\libefuse.a\n\nbuild esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_FILE = esp-idf\\efuse\\libefuse.a\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\n\n#############################################\n# Utility command for efuse-common-table\n\nbuild esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table\n\n\n#############################################\n# Utility command for efuse_common_table\n\nbuild esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table\n\n\n#############################################\n# Utility command for efuse-custom-table\n\nbuild esp-idf/efuse/efuse-custom-table: phony\n\n\n#############################################\n# Utility command for efuse_custom_table\n\nbuild esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table\n\n\n#############################################\n# Utility command for show-efuse-table\n\nbuild esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table\n\n\n#############################################\n# Utility command for show_efuse_table\n\nbuild esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table\n\n\n#############################################\n# Utility command for efuse_test_table\n\nbuild esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse-common-table\n\nbuild esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256\"\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_common_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"efuse_common_table\" is deprecated. Have you wanted to run \"efuse-common-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_custom_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"efuse_custom_table\" is deprecated. Have you wanted to run \"efuse-custom-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\show-efuse-table\n\nbuild esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --info\"\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\show_efuse_table\n\nbuild esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"show_efuse_table\" is deprecated. Have you wanted to run \"show-efuse-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_test_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_system\n\n\n#############################################\n# Order-only phony target for __idf_esp_system\n\nbuild cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_system\n\n\n#############################################\n# Link the static library esp-idf\\esp_system\\libesp_system.a\n\nbuild esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_FILE = esp-idf\\esp_system\\libesp_system.a\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support\n\n\n#############################################\n# Order-only phony target for __idf_esp_hw_support\n\nbuild cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support\n\n\n#############################################\n# Link the static library esp-idf\\esp_hw_support\\libesp_hw_support.a\n\nbuild esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj || esp-idf/esp_common/libesp_common.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_FILE = esp-idf\\esp_hw_support\\libesp_hw_support.a\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_common\n\n\n#############################################\n# Order-only phony target for __idf_esp_common\n\nbuild cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom\n\nbuild esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\__idf_esp_common.pdb\n  TARGET_PDB = esp-idf\\esp_common\\libesp_common.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_common\n\n\n#############################################\n# Link the static library esp-idf\\esp_common\\libesp_common.a\n\nbuild esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\__idf_esp_common.pdb\n  TARGET_FILE = esp-idf\\esp_common\\libesp_common.a\n  TARGET_PDB = esp-idf\\esp_common\\libesp_common.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_rom\n\n\n#############################################\n# Order-only phony target for __idf_esp_rom\n\nbuild cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_rom\n\n\n#############################################\n# Link the static library esp-idf\\esp_rom\\libesp_rom.a\n\nbuild esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/log/liblog.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_FILE = esp-idf\\esp_rom\\libesp_rom.a\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_log\n\n\n#############################################\n# Order-only phony target for __idf_log\n\nbuild cmake_object_order_depends_target___idf_log: phony || esp-idf/log/CMakeFiles/__idf_log.dir\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_buffers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_noos.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_noos.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_log\n\n\n#############################################\n# Link the static library esp-idf\\log\\liblog.a\n\nbuild esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_FILE = esp-idf\\log\\liblog.a\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for bootloader_check_size\n\nbuild esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Custom command for esp-idf\\esptool_py\\CMakeFiles\\bootloader_check_size\n\nbuild esp-idf/esptool_py/CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_main\n\n\n#############################################\n# Order-only phony target for __idf_main\n\nbuild cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_main\n\n\n#############################################\n# Link the static library esp-idf\\main\\libmain.a\n\nbuild esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_FILE = esp-idf\\main\\libmain.a\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader\\subproject -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util\n\n# =============================================================================\n# Target aliases.\n\nbuild __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a\n\nbuild __idf_efuse: phony esp-idf/efuse/libefuse.a\n\nbuild __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a\n\nbuild __idf_esp_common: phony esp-idf/esp_common/libesp_common.a\n\nbuild __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a\n\nbuild __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a\n\nbuild __idf_esp_system: phony esp-idf/esp_system/libesp_system.a\n\nbuild __idf_hal: phony esp-idf/hal/libhal.a\n\nbuild __idf_log: phony esp-idf/log/liblog.a\n\nbuild __idf_main: phony esp-idf/main/libmain.a\n\nbuild __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a\n\nbuild __idf_soc: phony esp-idf/soc/libsoc.a\n\nbuild __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a\n\nbuild __idf_xtensa: phony esp-idf/xtensa/libxtensa.a\n\nbuild bootloader_check_size: phony esp-idf/esptool_py/bootloader_check_size\n\nbuild efuse-common-table: phony esp-idf/efuse/efuse-common-table\n\nbuild efuse-custom-table: phony esp-idf/efuse/efuse-custom-table\n\nbuild efuse_common_table: phony esp-idf/efuse/efuse_common_table\n\nbuild efuse_custom_table: phony esp-idf/efuse/efuse_custom_table\n\nbuild efuse_test_table: phony esp-idf/efuse/efuse_test_table\n\nbuild libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a\n\nbuild libefuse.a: phony esp-idf/efuse/libefuse.a\n\nbuild libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a\n\nbuild libesp_common.a: phony esp-idf/esp_common/libesp_common.a\n\nbuild libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a\n\nbuild libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a\n\nbuild libesp_system.a: phony esp-idf/esp_system/libesp_system.a\n\nbuild libhal.a: phony esp-idf/hal/libhal.a\n\nbuild liblog.a: phony esp-idf/log/liblog.a\n\nbuild libmain.a: phony esp-idf/main/libmain.a\n\nbuild libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a\n\nbuild libsoc.a: phony esp-idf/soc/libsoc.a\n\nbuild libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a\n\nbuild libxtensa.a: phony esp-idf/xtensa/libxtensa.a\n\nbuild show-efuse-table: phony esp-idf/efuse/show-efuse-table\n\nbuild show_efuse_table: phony esp-idf/efuse/show_efuse_table\n\n# =============================================================================\n# Folder targets.\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\n\nbuild all: phony app bootloader.elf esp-idf/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf\n\nbuild esp-idf/all: phony esp-idf/xtensa/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/hal/all esp-idf/spi_flash/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader\n\nbuild esp-idf/bootloader/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support\n\nbuild esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse\n\nbuild esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format\n\nbuild esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common\n\nbuild esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support\n\nbuild esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32s3/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/port/esp32s3\n\nbuild esp-idf/esp_hw_support/port/esp32s3/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom\n\nbuild esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system\n\nbuild esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py\n\nbuild esp-idf/esptool_py/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/freertos\n\nbuild esp-idf/freertos/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal\n\nbuild esp-idf/hal/all: phony esp-idf/hal/libhal.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log\n\nbuild esp-idf/log/all: phony esp-idf/log/liblog.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main\n\nbuild esp-idf/main/all: phony esp-idf/main/libmain.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc\n\nbuild esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/newlib\n\nbuild esp-idf/newlib/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/partition_table\n\nbuild esp-idf/partition_table/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc\n\nbuild esp-idf/soc/all: phony esp-idf/soc/libsoc.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash\n\nbuild esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa\n\nbuild esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a\n\n# =============================================================================\n# Built-in targets\n\n\n#############################################\n# Re-run CMake if any of its inputs changed.\n\nbuild build.ninja: RERUN_CMAKE | C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/ieee802154/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/uf2.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h\n  pool = console\n\n\n#############################################\n# A missing CMake input file is not an error.\n\nbuild C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/ieee802154/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/uf2.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h: phony\n\n\n#############################################\n# Clean additional files.\n\nbuild CMakeFiles/clean.additional: CLEAN_ADDITIONAL\n\n\n#############################################\n# Clean all the built files.\n\nbuild clean: CLEAN CMakeFiles/clean.additional\n\n\n#############################################\n# Print all primary targets available.\n\nbuild help: HELP\n\n\n#############################################\n# Make the all target the default.\n\ndefault all\n"
  },
  {
    "path": "Code/build/bootloader/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/cmake_install.cmake\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT)\n  set(CMAKE_INSTALL_MANIFEST \"install_manifest_${CMAKE_INSTALL_COMPONENT}.txt\")\nelse()\n  set(CMAKE_INSTALL_MANIFEST \"install_manifest.txt\")\nendif()\n\nstring(REPLACE \";\" \"\\n\" CMAKE_INSTALL_MANIFEST_CONTENT\n       \"${CMAKE_INSTALL_MANIFEST_FILES}\")\nfile(WRITE \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/${CMAKE_INSTALL_MANIFEST}\"\n     \"${CMAKE_INSTALL_MANIFEST_CONTENT}\")\n"
  },
  {
    "path": "Code/build/bootloader/compile_commands.json",
    "content": "[\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -o CMakeFiles\\\\bootloader.elf.dir\\\\project_elf_src_esp32s3.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\bootloader\\\\project_elf_src_esp32s3.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\bootloader\\\\project_elf_src_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\eri.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\eri.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\eri.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\xt_trax.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xt_trax.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xt_trax.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\lldesc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\lldesc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\lldesc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\dport_access_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\dport_access_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\dport_access_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\interrupts.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\interrupts.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\interrupts.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\gpio_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gpio_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gpio_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\uart_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\uart_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\uart_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\adc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\adc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\adc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\dedic_gpio_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\dedic_gpio_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\dedic_gpio_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\gdma_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gdma_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gdma_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\spi_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\spi_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\spi_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\ledc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\ledc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\ledc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\pcnt_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\pcnt_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\pcnt_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\rmt_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rmt_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rmt_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\sdm_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdm_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdm_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\i2s_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2s_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2s_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\i2c_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2c_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2c_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\temperature_sensor_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\temperature_sensor_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\temperature_sensor_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\timer_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\timer_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\timer_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\lcd_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\lcd_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\lcd_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\mcpwm_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\mcpwm_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\mcpwm_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\sdmmc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdmmc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdmmc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\touch_sensor_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\touch_sensor_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\touch_sensor_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\twai_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\twai_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\twai_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\usb_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\usb_otg_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_otg_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_otg_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\rtc_io_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rtc_io_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rtc_io_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\micro-ecc\\\\CMakeFiles\\\\__idf_micro-ecc.dir\\\\uECC_verify_antifault.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader\\\\subproject\\\\components\\\\micro-ecc\\\\uECC_verify_antifault.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader\\\\subproject\\\\components\\\\micro-ecc\\\\uECC_verify_antifault.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\mpu_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mpu_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mpu_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\efuse_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\efuse_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\efuse_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\esp32s3\\\\efuse_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\efuse_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\efuse_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\mmu_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mmu_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mmu_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\cache_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\cache_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\cache_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_wrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_wrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_wrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D PROJECT_NAME=\\\\\\\"bootloader\\\\\\\" -DPROJECT_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_app_format\\\\CMakeFiles\\\\__idf_esp_app_format.dir\\\\esp_app_desc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_app_format\\\\esp_app_desc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_app_format\\\\esp_app_desc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_common_loader.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common_loader.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common_loader.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_clock_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_mem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_mem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_mem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_random.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_random_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_efuse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_efuse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_efuse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\flash_encrypt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_encrypt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_encrypt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\secure_boot.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\secure_boot.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\secure_boot.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\bootloader_flash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\flash_partitions.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_partitions.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_partitions.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\esp_image_format.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp_image_format.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp_image_format.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_clock_loader.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_loader.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_loader.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_console.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_console.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_console.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_console_loader.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_console_loader.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_console_loader.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\esp32s3\\\\bootloader_sha.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_sha.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_sha.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\esp32s3\\\\bootloader_soc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_soc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_soc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\esp32s3\\\\bootloader_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp32s3\\\\bootloader_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_panic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_panic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_panic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_table.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_table.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_table.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_fields.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_fields.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_fields.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_rtc_calib.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_rtc_calib.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_rtc_calib.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_api.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_api.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_fields.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_fields.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_fields.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\esp_err.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_err.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_err.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\cpu.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\cpu.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\cpu.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_memory_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_memory_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_memory_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\cpu_region_protect.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\cpu_region_protect.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\cpu_region_protect.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_clk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_clk_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_sleep.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_sleep.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_sleep.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\chip_info.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\chip_info.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\chip_info.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_common\\\\CMakeFiles\\\\__idf_esp_common.dir\\\\src\\\\esp_err_to_name.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_common\\\\src\\\\esp_err_to_name.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_common\\\\src\\\\esp_err_to_name.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_crc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_crc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_crc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_sys.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_sys.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_sys.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_spiflash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_spiflash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_spiflash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_efuse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_efuse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_efuse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_longjmp.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_longjmp.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_longjmp.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_systimer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_systimer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_systimer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_wdt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_wdt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_wdt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log_buffers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_buffers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_buffers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log_noos.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_noos.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_noos.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\bootloader_start.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader\\\\subproject\\\\main\\\\bootloader_start.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader\\\\subproject\\\\main\\\\bootloader_start.c\"\n}\n]"
  },
  {
    "path": "Code/build/bootloader/config/kconfig_menus.json",
    "content": "[\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED\",\n        \"name\": \"SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_MIN_REGION_SIZE\",\n        \"name\": \"SOC_MPU_MIN_REGION_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGIONS_MAX_NUM\",\n        \"name\": \"SOC_MPU_REGIONS_MAX_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGION_RO_SUPPORTED\",\n        \"name\": \"SOC_MPU_REGION_RO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGION_WO_SUPPORTED\",\n        \"name\": \"SOC_MPU_REGION_WO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SUPPORTED\",\n        \"name\": \"SOC_ADC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORTED\",\n        \"name\": \"SOC_UART_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_SUPPORTED\",\n        \"name\": \"SOC_PCNT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_SUPPORTED\",\n        \"name\": \"SOC_WIFI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_SUPPORTED\",\n        \"name\": \"SOC_TWAI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_SUPPORTED\",\n        \"name\": \"SOC_GDMA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPTIMER_SUPPORTED\",\n        \"name\": \"SOC_GPTIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCDCAM_SUPPORTED\",\n        \"name\": \"SOC_LCDCAM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_SUPPORTED\",\n        \"name\": \"SOC_MCPWM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDICATED_GPIO_SUPPORTED\",\n        \"name\": \"SOC_DEDICATED_GPIO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_SUPPORT_WRAP\",\n        \"name\": \"SOC_CACHE_SUPPORT_WRAP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_SUPPORTED\",\n        \"name\": \"SOC_ULP_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_FSM_SUPPORTED\",\n        \"name\": \"SOC_ULP_FSM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RISCV_COPROC_SUPPORTED\",\n        \"name\": \"SOC_RISCV_COPROC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BT_SUPPORTED\",\n        \"name\": \"SOC_BT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_OTG_SUPPORTED\",\n        \"name\": \"SOC_USB_OTG_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n        \"name\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CCOMP_TIMER_SUPPORTED\",\n        \"name\": \"SOC_CCOMP_TIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ASYNC_MEMCPY_SUPPORTED\",\n        \"name\": \"SOC_ASYNC_MEMCPY_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORTS_SECURE_DL_MODE\",\n        \"name\": \"SOC_SUPPORTS_SECURE_DL_MODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_KEY_PURPOSE_FIELD\",\n        \"name\": \"SOC_EFUSE_KEY_PURPOSE_FIELD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_HOST_SUPPORTED\",\n        \"name\": \"SOC_SDMMC_HOST_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_SLOW_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_SLOW_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PSRAM_DMA_CAPABLE\",\n        \"name\": \"SOC_PSRAM_DMA_CAPABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_XT_WDT_SUPPORTED\",\n        \"name\": \"SOC_XT_WDT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTED\",\n        \"name\": \"SOC_I2S_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORTED\",\n        \"name\": \"SOC_RMT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_SUPPORTED\",\n        \"name\": \"SOC_SDM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPSPI_SUPPORTED\",\n        \"name\": \"SOC_GPSPI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORTED\",\n        \"name\": \"SOC_LEDC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORTED\",\n        \"name\": \"SOC_I2C_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_SUPPORTED\",\n        \"name\": \"SOC_SYSTIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORT_COEXISTENCE\",\n        \"name\": \"SOC_SUPPORT_COEXISTENCE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n        \"name\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORTED\",\n        \"name\": \"SOC_AES_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPI_SUPPORTED\",\n        \"name\": \"SOC_MPI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORTED\",\n        \"name\": \"SOC_SHA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_HMAC_SUPPORTED\",\n        \"name\": \"SOC_HMAC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DIG_SIGN_SUPPORTED\",\n        \"name\": \"SOC_DIG_SIGN_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENC_SUPPORTED\",\n        \"name\": \"SOC_FLASH_ENC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SECURE_BOOT_SUPPORTED\",\n        \"name\": \"SOC_SECURE_BOOT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_SUPPORTED\",\n        \"name\": \"SOC_MEMPROT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_SENSOR_SUPPORTED\",\n        \"name\": \"SOC_TOUCH_SENSOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BOD_SUPPORTED\",\n        \"name\": \"SOC_BOD_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_XTAL_SUPPORT_40M\",\n        \"name\": \"SOC_XTAL_SUPPORT_40M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\",\n        \"name\": \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_CTRL_SUPPORTED\",\n        \"name\": \"SOC_ADC_RTC_CTRL_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIG_CTRL_SUPPORTED\",\n        \"name\": \"SOC_ADC_DIG_CTRL_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_ARBITER_SUPPORTED\",\n        \"name\": \"SOC_ADC_ARBITER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\",\n        \"name\": \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_MONITOR_SUPPORTED\",\n        \"name\": \"SOC_ADC_MONITOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DMA_SUPPORTED\",\n        \"name\": \"SOC_ADC_DMA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_PERIPH_NUM\",\n        \"name\": \"SOC_ADC_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_MAX_CHANNEL_NUM\",\n        \"name\": \"SOC_ADC_MAX_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_ATTEN_NUM\",\n        \"name\": \"SOC_ADC_ATTEN_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_CONTROLLER_NUM\",\n        \"name\": \"SOC_ADC_DIGI_CONTROLLER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_PATT_LEN_MAX\",\n        \"name\": \"SOC_ADC_PATT_LEN_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_MIN_BITWIDTH\",\n        \"name\": \"SOC_ADC_DIGI_MIN_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_MAX_BITWIDTH\",\n        \"name\": \"SOC_ADC_DIGI_MAX_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_RESULT_BYTES\",\n        \"name\": \"SOC_ADC_DIGI_RESULT_BYTES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\",\n        \"name\": \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_IIR_FILTER_NUM\",\n        \"name\": \"SOC_ADC_DIGI_IIR_FILTER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\",\n        \"name\": \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\",\n        \"name\": \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_MIN_BITWIDTH\",\n        \"name\": \"SOC_ADC_RTC_MIN_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_MAX_BITWIDTH\",\n        \"name\": \"SOC_ADC_RTC_MAX_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_CALIBRATION_V1_SUPPORTED\",\n        \"name\": \"SOC_ADC_CALIBRATION_V1_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SELF_HW_CALI_SUPPORTED\",\n        \"name\": \"SOC_ADC_SELF_HW_CALI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_APB_BACKUP_DMA\",\n        \"name\": \"SOC_APB_BACKUP_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BROWNOUT_RESET_SUPPORTED\",\n        \"name\": \"SOC_BROWNOUT_RESET_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_WRITEBACK_SUPPORTED\",\n        \"name\": \"SOC_CACHE_WRITEBACK_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_FREEZE_SUPPORTED\",\n        \"name\": \"SOC_CACHE_FREEZE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_CORES_NUM\",\n        \"name\": \"SOC_CPU_CORES_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_INTR_NUM\",\n        \"name\": \"SOC_CPU_INTR_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_HAS_FPU\",\n        \"name\": \"SOC_CPU_HAS_FPU\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_BREAKPOINTS_NUM\",\n        \"name\": \"SOC_CPU_BREAKPOINTS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_WATCHPOINTS_NUM\",\n        \"name\": \"SOC_CPU_WATCHPOINTS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_WATCHPOINT_SIZE\",\n        \"name\": \"SOC_CPU_WATCHPOINT_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_SIGNATURE_MAX_BIT_LEN\",\n        \"name\": \"SOC_DS_SIGNATURE_MAX_BIT_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\",\n        \"name\": \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_KEY_CHECK_MAX_WAIT_US\",\n        \"name\": \"SOC_DS_KEY_CHECK_MAX_WAIT_US\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_GROUPS\",\n        \"name\": \"SOC_GDMA_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_PAIRS_PER_GROUP\",\n        \"name\": \"SOC_GDMA_PAIRS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_SUPPORT_PSRAM\",\n        \"name\": \"SOC_GDMA_SUPPORT_PSRAM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_PORT\",\n        \"name\": \"SOC_GPIO_PORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_PIN_COUNT\",\n        \"name\": \"SOC_GPIO_PIN_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\",\n        \"name\": \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\",\n        \"name\": \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_FORCE_HOLD\",\n        \"name\": \"SOC_GPIO_SUPPORT_FORCE_HOLD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_VALID_GPIO_MASK\",\n        \"name\": \"SOC_GPIO_VALID_GPIO_MASK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\",\n        \"name\": \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\",\n        \"name\": \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\",\n        \"name\": \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\",\n        \"name\": \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_NUM\",\n        \"name\": \"SOC_I2C_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_FIFO_LEN\",\n        \"name\": \"SOC_I2C_FIFO_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_CMD_REG_NUM\",\n        \"name\": \"SOC_I2C_CMD_REG_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_SLAVE\",\n        \"name\": \"SOC_I2C_SUPPORT_SLAVE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_HW_CLR_BUS\",\n        \"name\": \"SOC_I2C_SUPPORT_HW_CLR_BUS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_XTAL\",\n        \"name\": \"SOC_I2C_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_RTC\",\n        \"name\": \"SOC_I2C_SUPPORT_RTC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_NUM\",\n        \"name\": \"SOC_I2S_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_HW_VERSION_2\",\n        \"name\": \"SOC_I2S_HW_VERSION_2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_XTAL\",\n        \"name\": \"SOC_I2S_SUPPORTS_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PLL_F160M\",\n        \"name\": \"SOC_I2S_SUPPORTS_PLL_F160M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PCM\",\n        \"name\": \"SOC_I2S_SUPPORTS_PCM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM_TX\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM_TX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_PDM_MAX_TX_LINES\",\n        \"name\": \"SOC_I2S_PDM_MAX_TX_LINES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM_RX\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM_RX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_PDM_MAX_RX_LINES\",\n        \"name\": \"SOC_I2S_PDM_MAX_RX_LINES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_TDM\",\n        \"name\": \"SOC_I2S_SUPPORTS_TDM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_APB_CLOCK\",\n        \"name\": \"SOC_LEDC_SUPPORT_APB_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_XTAL_CLOCK\",\n        \"name\": \"SOC_LEDC_SUPPORT_XTAL_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_CHANNEL_NUM\",\n        \"name\": \"SOC_LEDC_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_TIMER_BIT_WIDTH\",\n        \"name\": \"SOC_LEDC_TIMER_BIT_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_FADE_STOP\",\n        \"name\": \"SOC_LEDC_SUPPORT_FADE_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GROUPS\",\n        \"name\": \"SOC_MCPWM_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_OPERATORS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_OPERATORS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GENERATORS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_GENERATORS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\",\n        \"name\": \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\",\n        \"name\": \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\",\n        \"name\": \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MMU_PERIPH_NUM\",\n        \"name\": \"SOC_MMU_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_GROUPS\",\n        \"name\": \"SOC_PCNT_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_UNITS_PER_GROUP\",\n        \"name\": \"SOC_PCNT_UNITS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_CHANNELS_PER_UNIT\",\n        \"name\": \"SOC_PCNT_CHANNELS_PER_UNIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_THRES_POINT_PER_UNIT\",\n        \"name\": \"SOC_PCNT_THRES_POINT_PER_UNIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_GROUPS\",\n        \"name\": \"SOC_RMT_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_TX_CANDIDATES_PER_GROUP\",\n        \"name\": \"SOC_RMT_TX_CANDIDATES_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_RX_CANDIDATES_PER_GROUP\",\n        \"name\": \"SOC_RMT_RX_CANDIDATES_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_CHANNELS_PER_GROUP\",\n        \"name\": \"SOC_RMT_CHANNELS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_MEM_WORDS_PER_CHANNEL\",\n        \"name\": \"SOC_RMT_MEM_WORDS_PER_CHANNEL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RX_PINGPONG\",\n        \"name\": \"SOC_RMT_SUPPORT_RX_PINGPONG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RX_DEMODULATION\",\n        \"name\": \"SOC_RMT_SUPPORT_RX_DEMODULATION\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_SYNCHRO\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_SYNCHRO\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_XTAL\",\n        \"name\": \"SOC_RMT_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RC_FAST\",\n        \"name\": \"SOC_RMT_SUPPORT_RC_FAST\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_APB\",\n        \"name\": \"SOC_RMT_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_DMA\",\n        \"name\": \"SOC_RMT_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_SUPPORTED\",\n        \"name\": \"SOC_LCD_I80_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_SUPPORTED\",\n        \"name\": \"SOC_LCD_RGB_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_BUSES\",\n        \"name\": \"SOC_LCD_I80_BUSES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_PANELS\",\n        \"name\": \"SOC_LCD_RGB_PANELS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_BUS_WIDTH\",\n        \"name\": \"SOC_LCD_I80_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_DATA_WIDTH\",\n        \"name\": \"SOC_LCD_RGB_DATA_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_SUPPORT_RGB_YUV_CONV\",\n        \"name\": \"SOC_LCD_SUPPORT_RGB_YUV_CONV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\",\n        \"name\": \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\",\n        \"name\": \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\",\n        \"name\": \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_PIN_COUNT\",\n        \"name\": \"SOC_RTCIO_PIN_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_HOLD_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_HOLD_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_WAKE_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_WAKE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_GROUPS\",\n        \"name\": \"SOC_SDM_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_CHANNELS_PER_GROUP\",\n        \"name\": \"SOC_SDM_CHANNELS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_SDM_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_PERIPH_NUM\",\n        \"name\": \"SOC_SPI_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAX_CS_NUM\",\n        \"name\": \"SOC_SPI_MAX_CS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAXIMUM_BUFFER_SIZE\",\n        \"name\": \"SOC_SPI_MAXIMUM_BUFFER_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_DDRCLK\",\n        \"name\": \"SOC_SPI_SUPPORT_DDRCLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\",\n        \"name\": \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CD_SIG\",\n        \"name\": \"SOC_SPI_SUPPORT_CD_SIG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\",\n        \"name\": \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\",\n        \"name\": \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CLK_APB\",\n        \"name\": \"SOC_SPI_SUPPORT_CLK_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CLK_XTAL\",\n        \"name\": \"SOC_SPI_SUPPORT_CLK_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\",\n        \"name\": \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_IS_INDEPENDENT\",\n        \"name\": \"SOC_MEMSPI_IS_INDEPENDENT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAX_PRE_DIVIDER\",\n        \"name\": \"SOC_SPI_MAX_PRE_DIVIDER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_OCT\",\n        \"name\": \"SOC_SPI_SUPPORT_OCT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_120M\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_120M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPIRAM_SUPPORTED\",\n        \"name\": \"SOC_SPIRAM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPIRAM_XIP_SUPPORTED\",\n        \"name\": \"SOC_SPIRAM_XIP_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_COUNTER_NUM\",\n        \"name\": \"SOC_SYSTIMER_COUNTER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_ALARM_NUM\",\n        \"name\": \"SOC_SYSTIMER_ALARM_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_BIT_WIDTH_LO\",\n        \"name\": \"SOC_SYSTIMER_BIT_WIDTH_LO\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_BIT_WIDTH_HI\",\n        \"name\": \"SOC_SYSTIMER_BIT_WIDTH_HI\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_FIXED_DIVIDER\",\n        \"name\": \"SOC_SYSTIMER_FIXED_DIVIDER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_INT_LEVEL\",\n        \"name\": \"SOC_SYSTIMER_INT_LEVEL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\",\n        \"name\": \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUPS\",\n        \"name\": \"SOC_TIMER_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\",\n        \"name\": \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_SUPPORT_XTAL\",\n        \"name\": \"SOC_TIMER_GROUP_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_SUPPORT_APB\",\n        \"name\": \"SOC_TIMER_GROUP_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_TOTAL_TIMERS\",\n        \"name\": \"SOC_TIMER_GROUP_TOTAL_TIMERS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_VERSION_2\",\n        \"name\": \"SOC_TOUCH_VERSION_2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_SENSOR_NUM\",\n        \"name\": \"SOC_TOUCH_SENSOR_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\",\n        \"name\": \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\",\n        \"name\": \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PAD_THRESHOLD_MAX\",\n        \"name\": \"SOC_TOUCH_PAD_THRESHOLD_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\",\n        \"name\": \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_CONTROLLER_NUM\",\n        \"name\": \"SOC_TWAI_CONTROLLER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_TWAI_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_BRP_MIN\",\n        \"name\": \"SOC_TWAI_BRP_MIN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_BRP_MAX\",\n        \"name\": \"SOC_TWAI_BRP_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_SUPPORTS_RX_STATUS\",\n        \"name\": \"SOC_TWAI_SUPPORTS_RX_STATUS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_NUM\",\n        \"name\": \"SOC_UART_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_FIFO_LEN\",\n        \"name\": \"SOC_UART_FIFO_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_BITRATE_MAX\",\n        \"name\": \"SOC_UART_BITRATE_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\",\n        \"name\": \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_WAKEUP_INT\",\n        \"name\": \"SOC_UART_SUPPORT_WAKEUP_INT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_APB_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_APB_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_RTC_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_RTC_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_XTAL_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_XTAL_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_REQUIRE_CORE_RESET\",\n        \"name\": \"SOC_UART_REQUIRE_CORE_RESET\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_PERIPH_NUM\",\n        \"name\": \"SOC_USB_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_DMA_MAX_BUFFER_SIZE\",\n        \"name\": \"SOC_SHA_DMA_MAX_BUFFER_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_DMA\",\n        \"name\": \"SOC_SHA_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_RESUME\",\n        \"name\": \"SOC_SHA_SUPPORT_RESUME\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_GDMA\",\n        \"name\": \"SOC_SHA_GDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA1\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA1\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA224\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA224\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA256\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA384\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA384\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_224\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_224\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_256\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_T\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_T\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RSA_MAX_BIT_LEN\",\n        \"name\": \"SOC_RSA_MAX_BIT_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_DMA\",\n        \"name\": \"SOC_AES_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_GDMA\",\n        \"name\": \"SOC_AES_GDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_AES_128\",\n        \"name\": \"SOC_AES_SUPPORT_AES_128\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_AES_256\",\n        \"name\": \"SOC_AES_SUPPORT_AES_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT0_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT0_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT1_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT1_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_WIFI_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_WIFI_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_BT_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_BT_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_CPU_PD\",\n        \"name\": \"SOC_PM_SUPPORT_CPU_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_TAGMEM_PD\",\n        \"name\": \"SOC_PM_SUPPORT_TAGMEM_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_RTC_PERIPH_PD\",\n        \"name\": \"SOC_PM_SUPPORT_RTC_PERIPH_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_RC_FAST_PD\",\n        \"name\": \"SOC_PM_SUPPORT_RC_FAST_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_VDDSDIO_PD\",\n        \"name\": \"SOC_PM_SUPPORT_VDDSDIO_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_MAC_BB_PD\",\n        \"name\": \"SOC_PM_SUPPORT_MAC_BB_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_MODEM_PD\",\n        \"name\": \"SOC_PM_SUPPORT_MODEM_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n        \"name\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\",\n        \"name\": \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\",\n        \"name\": \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\",\n        \"name\": \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_RC_FAST_D256_SUPPORTED\",\n        \"name\": \"SOC_CLK_RC_FAST_D256_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\",\n        \"name\": \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\",\n        \"name\": \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_XTAL32K_SUPPORTED\",\n        \"name\": \"SOC_CLK_XTAL32K_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\",\n        \"name\": \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\",\n        \"name\": \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_HARD_DIS_JTAG\",\n        \"name\": \"SOC_EFUSE_HARD_DIS_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_USB_JTAG\",\n        \"name\": \"SOC_EFUSE_DIS_USB_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_SOFT_DIS_JTAG\",\n        \"name\": \"SOC_EFUSE_SOFT_DIS_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DIRECT_BOOT\",\n        \"name\": \"SOC_EFUSE_DIS_DIRECT_BOOT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_ICACHE\",\n        \"name\": \"SOC_EFUSE_DIS_ICACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\",\n        \"name\": \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SECURE_BOOT_V2_RSA\",\n        \"name\": \"SOC_SECURE_BOOT_V2_RSA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\",\n        \"name\": \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n        \"name\": \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n        \"name\": \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\",\n        \"name\": \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\",\n        \"name\": \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_MEM_ALIGN_SIZE\",\n        \"name\": \"SOC_MEMPROT_MEM_ALIGN_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PHY_DIG_REGS_MEM_SIZE\",\n        \"name\": \"SOC_PHY_DIG_REGS_MEM_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MAC_BB_PD_MEM_SIZE\",\n        \"name\": \"SOC_MAC_BB_PD_MEM_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\",\n        \"name\": \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_OPI_MODE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_OPI_MODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_WRAP\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_WRAP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_COEX_HW_PTI\",\n        \"name\": \"SOC_COEX_HW_PTI\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EXTERNAL_COEX_ADVANCE\",\n        \"name\": \"SOC_EXTERNAL_COEX_ADVANCE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\",\n        \"name\": \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_USE_GPIO_MATRIX\",\n        \"name\": \"SOC_SDMMC_USE_GPIO_MATRIX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_NUM_SLOTS\",\n        \"name\": \"SOC_SDMMC_NUM_SLOTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\",\n        \"name\": \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\",\n        \"name\": \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_HW_TSF\",\n        \"name\": \"SOC_WIFI_HW_TSF\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_FTM_SUPPORT\",\n        \"name\": \"SOC_WIFI_FTM_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_GCMP_SUPPORT\",\n        \"name\": \"SOC_WIFI_GCMP_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_WAPI_SUPPORT\",\n        \"name\": \"SOC_WIFI_WAPI_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_CSI_SUPPORT\",\n        \"name\": \"SOC_WIFI_CSI_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_MESH_SUPPORT\",\n        \"name\": \"SOC_WIFI_MESH_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n        \"name\": \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_SUPPORTED\",\n        \"name\": \"SOC_BLE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_MESH_SUPPORTED\",\n        \"name\": \"SOC_BLE_MESH_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_50_SUPPORTED\",\n        \"name\": \"SOC_BLE_50_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\",\n        \"name\": \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLUFI_SUPPORTED\",\n        \"name\": \"SOC_BLUFI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_HAS_ADC\",\n        \"name\": \"SOC_ULP_HAS_ADC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PHY_COMBO_MODULE\",\n        \"name\": \"SOC_PHY_COMBO_MODULE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_CMAKE\",\n        \"name\": \"IDF_CMAKE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_ENV_FPGA\",\n        \"name\": \"IDF_ENV_FPGA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_CI_BUILD\",\n        \"name\": \"IDF_CI_BUILD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH_RISCV\",\n        \"name\": \"IDF_TARGET_ARCH_RISCV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH_XTENSA\",\n        \"name\": \"IDF_TARGET_ARCH_XTENSA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH\",\n        \"name\": \"IDF_TARGET_ARCH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"string\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET\",\n        \"name\": \"IDF_TARGET\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"string\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_LINUX\",\n        \"name\": \"IDF_TARGET_LINUX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32\",\n        \"name\": \"IDF_TARGET_ESP32\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32S2\",\n        \"name\": \"IDF_TARGET_ESP32S2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32S3\",\n        \"name\": \"IDF_TARGET_ESP32S3\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C3\",\n        \"name\": \"IDF_TARGET_ESP32C3\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C2\",\n        \"name\": \"IDF_TARGET_ESP32C2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C6\",\n        \"name\": \"IDF_TARGET_ESP32C6\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32H2\",\n        \"name\": \"IDF_TARGET_ESP32H2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_LINUX\",\n        \"name\": \"IDF_TARGET_LINUX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_FIRMWARE_CHIP_ID\",\n        \"name\": \"IDF_FIRMWARE_CHIP_ID\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!IDF_TARGET_LINUX && <choice APP_BUILD_TYPE>\",\n                        \"help\": null,\n                        \"id\": \"APP_BUILD_TYPE_APP_2NDBOOT\",\n                        \"name\": \"APP_BUILD_TYPE_APP_2NDBOOT\",\n                        \"range\": null,\n                        \"title\": \"Default (binary application + 2nd stage bootloader)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice APP_BUILD_TYPE>\",\n                        \"help\": null,\n                        \"id\": \"APP_BUILD_TYPE_RAM\",\n                        \"name\": \"APP_BUILD_TYPE_RAM\",\n                        \"range\": null,\n                        \"title\": \"Build app runs entirely in RAM (EXPERIMENTAL)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Select the way the application is built.\\n\\nBy default, the application is built as a binary file in a format compatible with\\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\\nalso built. Application and bootloader binaries can be written into flash and\\nloaded/executed from there.\\n\\nAnother option, useful for only very small and limited applications, is to only link\\nthe .elf file of the application, such that it can be loaded directly into RAM over\\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\\nto build any complex application this way. However for some kinds of testing and debugging,\\nthis option may provide faster iterations, since the application does not need to be\\nwritten into flash.\\n\\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\\nA gdbinit file may look as follows (for ESP32):\\n\\n    # Connect to a running instance of OpenOCD\\n    target remote :3333\\n    # Reset and halt the target\\n    mon reset halt\\n    # Run to a specific point in ROM code,\\n    #  where most of initialization is complete.\\n    thb *0x40007d54\\n    c\\n    # Load the application into RAM\\n    load\\n    # Run till app_main\\n    tb app_main\\n    c\\n\\nExecute this gdbinit file as follows:\\n\\n    xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\\n\\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\\n\\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\\nstartup code, so there's no additional startup initialization required. You can use the\\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\\n\\nExample:\\n    esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\\n\\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\\nmemory footprint.\\n\\n    CONFIG_APP_BUILD_TYPE_RAM=y\\n    CONFIG_VFS_SUPPORT_TERMIOS=\\n    CONFIG_NEWLIB_NANO_FORMAT=y\\n    CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\\n    CONFIG_ESP_DEBUG_STUBS_ENABLE=\\n    CONFIG_ESP_ERR_TO_NAME_LOOKUP=\",\n                \"id\": \"build-type-application-build-type\",\n                \"name\": \"APP_BUILD_TYPE\",\n                \"title\": \"Application build type\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_GENERATE_BINARIES\",\n                \"name\": \"APP_BUILD_GENERATE_BINARIES\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_BOOTLOADER\",\n                \"name\": \"APP_BUILD_BOOTLOADER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"APP_BUILD_TYPE_RAM\",\n                \"help\": \"If this option is enabled, external memory and related peripherals, such as Cache, MMU,\\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\\nComponents that depend on the spi_flash component will also be unavailable, such as\\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.\",\n                \"id\": \"APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"name\": \"APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"range\": null,\n                \"title\": \"Build app without SPI_FLASH/PSRAM support (saves ram)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_USE_FLASH_SECTIONS\",\n                \"name\": \"APP_BUILD_USE_FLASH_SECTIONS\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\\nautomatically. (or will be append if you have one already)\",\n                \"id\": \"APP_REPRODUCIBLE_BUILD\",\n                \"name\": \"APP_REPRODUCIBLE_BUILD\",\n                \"range\": null,\n                \"title\": \"Enable reproducible build\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, this disables the linking of binary libraries in the application build. Note\\nthat after enabling this Wi-Fi/Bluetooth will not work.\",\n                \"id\": \"APP_NO_BLOBS\",\n                \"name\": \"APP_NO_BLOBS\",\n                \"range\": null,\n                \"title\": \"No Binary Blobs\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": \"Bootloaders before ESP-IDF v2.1 did less initialisation of the\\nsystem clock. This setting needs to be enabled to build an app\\nwhich can be booted by these older bootloaders.\\n\\nIf this setting is enabled, the app can be booted by any bootloader\\nfrom IDF v1.0 up to the current version.\\n\\nIf this setting is disabled, the app can only be booted by bootloaders\\nfrom IDF v2.1 or newer.\\n\\nEnabling this setting adds approximately 1KB to the app's IRAM usage.\",\n                \"id\": \"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS\",\n                \"name\": \"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS\",\n                \"range\": null,\n                \"title\": \"App compatible with bootloaders before ESP-IDF v2.1\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": \"Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\\ntable that contains an MD5 checksum field.\\n\\nEnable this option only if your app needs to boot on a bootloader and/or\\npartition table that was generated from a version *before* ESP-IDF v3.1.\\n\\nIf this option and Flash Encryption are enabled at the same time, and any\\ndata partitions in the partition table are marked Encrypted, then the\\npartition encrypted flag should be manually verified in the app before accessing\\nthe partition (see CVE-2021-27926).\",\n                \"id\": \"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS\",\n                \"name\": \"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS\",\n                \"range\": null,\n                \"title\": \"App compatible with bootloader and partition table before ESP-IDF v3.1\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": null,\n                \"id\": \"APP_INIT_CLK\",\n                \"name\": \"APP_INIT_CLK\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"build-type\",\n        \"title\": \"Build type\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Offset address that 2nd bootloader will be flashed to.\\nThe value is determined by the ROM bootloader.\\nIt's not configurable in ESP-IDF.\",\n                \"id\": \"BOOTLOADER_OFFSET_IN_FLASH\",\n                \"name\": \"BOOTLOADER_OFFSET_IN_FLASH\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size (-Os)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Debug (-Og)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\",\n                        \"range\": null,\n                        \"title\": \"Optimize for performance (-O2)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\",\n                        \"range\": null,\n                        \"title\": \"Debug without optimization (-O0)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"This option sets compiler optimization level (gcc -O argument)\\nfor the bootloader.\\n\\n- The default \\\"Size\\\" setting will add the -0s flag to CFLAGS.\\n- The \\\"Debug\\\" setting will add the -Og flag to CFLAGS.\\n- The \\\"Performance\\\" setting will add the -O2 flag to CFLAGS.\\n- The \\\"None\\\" setting will add the -O0 flag to CFLAGS.\\n\\nNote that custom optimization levels may be unsupported.\",\n                \"id\": \"bootloader-config-bootloader-optimization-level\",\n                \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION\",\n                \"title\": \"Bootloader optimization Level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_NONE\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_NONE\",\n                        \"range\": null,\n                        \"title\": \"No output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_ERROR\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_ERROR\",\n                        \"range\": null,\n                        \"title\": \"Error\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_WARN\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_WARN\",\n                        \"range\": null,\n                        \"title\": \"Warning\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_INFO\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_INFO\",\n                        \"range\": null,\n                        \"title\": \"Info\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_DEBUG\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Debug\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_VERBOSE\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_VERBOSE\",\n                        \"range\": null,\n                        \"title\": \"Verbose\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Specify how much output to see in bootloader logs.\",\n                \"id\": \"bootloader-config-bootloader-log-verbosity\",\n                \"name\": \"BOOTLOADER_LOG_LEVEL\",\n                \"title\": \"Bootloader log verbosity\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"BOOTLOADER_LOG_LEVEL\",\n                \"name\": \"BOOTLOADER_LOG_LEVEL\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)\",\n                \"help\": \"This setting is only used if the SPI flash pins have been overridden by setting the eFuses\\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\\n\\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\\nESP32 pin \\\"SD_DATA_3\\\" or SPI flash pin \\\"IO2\\\") is not specified in eFuse. The same pin is also used\\nfor external SPIRAM if it is enabled.\\n\\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\\nY and specify the GPIO number connected to the WP.\",\n                \"id\": \"BOOTLOADER_SPI_CUSTOM_WP_PIN\",\n                \"name\": \"BOOTLOADER_SPI_CUSTOM_WP_PIN\",\n                \"range\": null,\n                \"title\": \"Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)\",\n                \"help\": \"The option \\\"Use custom SPI Flash WP Pin\\\" must be set or this value is ignored\\n\\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\\nvalue to the GPIO number of the SPI flash WP pin.\",\n                \"id\": \"BOOTLOADER_SPI_WP_PIN\",\n                \"name\": \"BOOTLOADER_SPI_WP_PIN\",\n                \"range\": null,\n                \"title\": \"Custom SPI Flash WP Pin\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_FLASHFREQ_80M && <choice BOOTLOADER_VDDSDIO_BOOST>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_VDDSDIO_BOOST_1_8V\",\n                        \"name\": \"BOOTLOADER_VDDSDIO_BOOST_1_8V\",\n                        \"range\": null,\n                        \"title\": \"1.8V\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_VDDSDIO_BOOST>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_VDDSDIO_BOOST_1_9V\",\n                        \"name\": \"BOOTLOADER_VDDSDIO_BOOST_1_9V\",\n                        \"range\": null,\n                        \"title\": \"1.9V\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n                \"help\": \"If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\\nor MTDI bootstrapping pin), bootloader will change LDO settings to\\noutput 1.9V instead. This helps prevent flash chip from browning out\\nduring flash programming operations.\\n\\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\\nVDDSDIO regulator is disabled via eFuse.\",\n                \"id\": \"bootloader-config-vddsdio-ldo-voltage\",\n                \"name\": \"BOOTLOADER_VDDSDIO_BOOST\",\n                \"title\": \"VDDSDIO LDO voltage\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"The selected GPIO will be configured as an input with internal pull-up enabled (note that on some SoCs.\\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\\nreset, this GPIO must be held high or low (as configured) on startup.\",\n                        \"id\": \"BOOTLOADER_NUM_PIN_FACTORY_RESET\",\n                        \"name\": \"BOOTLOADER_NUM_PIN_FACTORY_RESET\",\n                        \"range\": null,\n                        \"title\": \"Number of the GPIO input for factory reset\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_FACTORY_RESET_PIN_LOW\",\n                                \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_LOW\",\n                                \"range\": null,\n                                \"title\": \"Reset on GPIO low\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_FACTORY_RESET_PIN_HIGH\",\n                                \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_HIGH\",\n                                \"range\": null,\n                                \"title\": \"Reset on GPIO high\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"Pin level for factory reset, can be triggered on low or high.\",\n                        \"id\": \"bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level\",\n                        \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_LEVEL\",\n                        \"title\": \"Factory reset GPIO level\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"The device will boot from \\\"factory\\\" partition (or OTA slot 0 if no factory partition is present) after a\\nfactory reset.\",\n                        \"id\": \"BOOTLOADER_OTA_DATA_ERASE\",\n                        \"name\": \"BOOTLOADER_OTA_DATA_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Clear OTA data on factory reset (select factory partition)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"Allows customers to select which data partitions will be erased while factory reset.\\n\\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\\n\\\"nvs, phy_init, ...\\\")\\nMake sure that the name specified in the partition table and here are the same.\\nPartitions of type \\\"app\\\" cannot be specified here.\",\n                        \"id\": \"BOOTLOADER_DATA_FACTORY_RESET\",\n                        \"name\": \"BOOTLOADER_DATA_FACTORY_RESET\",\n                        \"range\": null,\n                        \"title\": \"Comma-separated names of partitions to clear on factory reset\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Allows to reset the device to factory settings:\\n- clear one or more data partitions;\\n- boot from \\\"factory\\\" partition.\\nThe factory reset will occur if there is a GPIO input held at the configured level while\\ndevice starts up. See settings below.\",\n                \"id\": \"BOOTLOADER_FACTORY_RESET\",\n                \"name\": \"BOOTLOADER_FACTORY_RESET\",\n                \"range\": null,\n                \"title\": \"GPIO triggers factory reset\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_APP_TEST\",\n                        \"help\": \"The selected GPIO will be configured as an input with internal pull-up enabled.\\nTo trigger a test app, this GPIO must be pulled low on reset.\\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\\n(factory or OTA[x]).\\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.\",\n                        \"id\": \"BOOTLOADER_NUM_PIN_APP_TEST\",\n                        \"name\": \"BOOTLOADER_NUM_PIN_APP_TEST\",\n                        \"range\": null,\n                        \"title\": \"Number of the GPIO input to boot TEST partition\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_APP_TEST_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_APP_TEST_PIN_LOW\",\n                                \"name\": \"BOOTLOADER_APP_TEST_PIN_LOW\",\n                                \"range\": null,\n                                \"title\": \"Enter test app on GPIO low\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_APP_TEST_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_APP_TEST_PIN_HIGH\",\n                                \"name\": \"BOOTLOADER_APP_TEST_PIN_HIGH\",\n                                \"range\": null,\n                                \"title\": \"Enter test app on GPIO high\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_APP_TEST\",\n                        \"help\": \"Pin level for app test, can be triggered on low or high.\",\n                        \"id\": \"bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level\",\n                        \"name\": \"BOOTLOADER_APP_TEST_PIN_LEVEL\",\n                        \"title\": \"App test GPIO level\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": \"!BOOTLOADER_APP_ANTI_ROLLBACK\",\n                \"help\": \"Allows to run the test app from \\\"TEST\\\" partition.\\nA boot from \\\"test\\\" partition will occur if there is a GPIO input pulled low while device starts up.\\nSee settings below.\",\n                \"id\": \"BOOTLOADER_APP_TEST\",\n                \"name\": \"BOOTLOADER_APP_TEST\",\n                \"range\": null,\n                \"title\": \"GPIO triggers boot from test app partition\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST\",\n                \"help\": \"The GPIO must be held low continuously for this period of time after reset\\nbefore a factory reset or test partition boot (as applicable) is performed.\",\n                \"id\": \"BOOTLOADER_HOLD_TIME_GPIO\",\n                \"name\": \"BOOTLOADER_HOLD_TIME_GPIO\",\n                \"range\": null,\n                \"title\": \"Hold time of GPIO for reset/test mode (seconds)\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Protects the unmapped memory regions of the entire address space from unintended accesses.\\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\\noperation on unmapped regions of the address space.\",\n                \"id\": \"BOOTLOADER_REGION_PROTECTION_ENABLE\",\n                \"name\": \"BOOTLOADER_REGION_PROTECTION_ENABLE\",\n                \"range\": null,\n                \"title\": \"Enable protection for unmapped memory regions\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_WDT_ENABLE\",\n                        \"help\": \"If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\\nthe app's own code.\\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\\nthe app_main() function.\\n\\nUse function rtc_wdt_feed() for resetting counter of rtc_wdt.\\nUse function rtc_wdt_disable() for disabling rtc_wdt.\",\n                        \"id\": \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\",\n                        \"name\": \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\",\n                        \"range\": null,\n                        \"title\": \"Allows RTC watchdog disable in user code\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_WDT_ENABLE\",\n                        \"help\": \"Verify that this parameter is correct and more then the execution time.\\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\\n- these options can increase the execution time.\\nNote: RTC_WDT will reset while encryption operations will be performed.\",\n                        \"id\": \"BOOTLOADER_WDT_TIME_MS\",\n                        \"name\": \"BOOTLOADER_WDT_TIME_MS\",\n                        \"range\": [\n                            0,\n                            120000\n                        ],\n                        \"title\": \"Timeout for RTC watchdog (ms)\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Tracks the execution time of startup code.\\nIf the execution time is exceeded, the RTC_WDT will restart system.\\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\\nsource for slow_clk - and ends calling app_main.\\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\\ntime of WDT needs to re-set for new frequency.\\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).\",\n                \"id\": \"BOOTLOADER_WDT_ENABLE\",\n                \"name\": \"BOOTLOADER_WDT_ENABLE\",\n                \"range\": null,\n                \"title\": \"Use RTC watchdog in start code\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"The secure version is the sequence number stored in the header of each firmware.\\nThe security version is set in the bootloader, version is recorded in the eFuse field\\nas the number of set ones. The allocated number of bits in the efuse field\\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\\n\\nBootloader: When bootloader selects an app to boot, an app is selected that has\\na security version greater or equal that recorded in eFuse field.\\nThe app is booted with a higher (or equal) secure version.\\n\\nThe security version is worth increasing if in previous versions there is\\na significant vulnerability and their use is not acceptable.\\n\\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).\",\n                                \"id\": \"BOOTLOADER_APP_SECURE_VERSION\",\n                                \"name\": \"BOOTLOADER_APP_SECURE_VERSION\",\n                                \"range\": null,\n                                \"title\": \"eFuse secure version of app\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"The size of the efuse secure version field.\\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\\nThis determines how many times the security version can be increased.\",\n                                \"id\": \"BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD\",\n                                \"name\": \"BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD\",\n                                \"range\": null,\n                                \"title\": \"Size of the efuse secure version field\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"This option allows to emulate read/write operations with all eFuses and efuse secure version.\\nIt allows to test anti-rollback implemention without permanent write eFuse bits.\\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\\n\\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.\",\n                                \"id\": \"BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE\",\n                                \"name\": \"BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE\",\n                                \"range\": null,\n                                \"title\": \"Emulate operations with efuse secure version(only test)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                        \"help\": \"This option prevents rollback to previous firmware/application image with lower security version.\",\n                        \"id\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                        \"name\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                        \"range\": null,\n                        \"title\": \"Enable app anti-rollback support\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"After updating the app, the bootloader runs a new app with the \\\"ESP_OTA_IMG_PENDING_VERIFY\\\" state set.\\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\\nthe previous working app. A reboot is performed, and the app is booted before the software update.\\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\\nRollback is possible only between the apps with the same security versions.\",\n                \"id\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                \"name\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                \"range\": null,\n                \"title\": \"Enable app rollback support\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED && ((SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT)\",\n                \"help\": \"This option disables the normal validation of an image coming out of\\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\\nbetween wakeup performance from deep sleep, and image integrity checks.\\n\\nOnly enable this if you know what you are doing. It should not be used\\nin conjunction with using deep_sleep() entry and changing the active OTA\\npartition as this would skip the validation upon first load of the new\\nOTA partition.\\n\\nIt is possible to enable this option with Secure Boot if \\\"allow insecure\\noptions\\\" is enabled, however it's strongly recommended to NOT enable it as\\nit may allow a Secure Boot bypass.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\",\n                \"range\": null,\n                \"title\": \"Skip image validation when exiting deep sleep\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_SIGNED_ON_BOOT\",\n                \"help\": \"Some applications need to boot very quickly from power on. By default, the entire app binary\\nis read from flash and verified which takes up a significant portion of the boot time.\\n\\nEnabling this option will skip validation of the app when the SoC boots from power on.\\nNote that in this case it's not possible for the bootloader to detect if an app image is\\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\\nfirmware bug or physical damage.\\n\\nFollowing other reset types, the bootloader will still validate the app image. This increases\\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\",\n                \"range\": null,\n                \"title\": \"Skip image validation from power on reset (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_SIGNED_ON_BOOT\",\n                \"help\": \"Selecting this option prevents the bootloader from ever validating the app image before\\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\\nunbootable.\\n\\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\\nConsider selecting \\\"Skip image validation from power on reset\\\" instead. However, if boot time\\nis the only important factor then it can be enabled.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\",\n                \"range\": null,\n                \"title\": \"Skip image validation always (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"Reserve RTC FAST memory for Skip image validation. This option in bytes.\\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\\nUsed to save the addresses of the selected application.\\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\\nloads the application without validation.\",\n                \"id\": \"BOOTLOADER_RESERVE_RTC_SIZE\",\n                \"name\": \"BOOTLOADER_RESERVE_RTC_SIZE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                        \"help\": \"This option reserves in RTC FAST memory the area for custom purposes.\\nIf you want to create your own bootloader and save more information\\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.\",\n                        \"id\": \"BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE\",\n                        \"name\": \"BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size in bytes for custom purposes\",\n                        \"type\": \"hex\"\n                    }\n                ],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"This option allows the customer to place data in the RTC FAST memory,\\nthis area remains valid when rebooted, except for power loss.\\nThis memory is located at a fixed address and is available\\nfor both the bootloader and the application.\\n(The application and bootoloader must be compiled with the same option).\\nThe RTC FAST memory has access only through PRO_CPU.\",\n                \"id\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                \"name\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                \"range\": null,\n                \"title\": \"Reserve RTC FAST memory for custom purposes\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"This option reserves an area in RTC FAST memory for the following features:\\n- \\\"Skip image validation when exiting deep sleep\\\"\\n- \\\"Reserve RTC FAST memory for custom purposes\\\"\\n- \\\"GPIO triggers factory reset\\\"\",\n                \"id\": \"BOOTLOADER_RESERVE_RTC_MEM\",\n                \"name\": \"BOOTLOADER_RESERVE_RTC_MEM\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\\nXMC chips will be forbidden to be used, when this option is disabled.\\n\\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\",\n                \"id\": \"BOOTLOADER_FLASH_XMC_SUPPORT\",\n                \"name\": \"BOOTLOADER_FLASH_XMC_SUPPORT\",\n                \"range\": null,\n                \"title\": \"Enable the support for flash chips of XMC (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"bootloader-config\",\n        \"title\": \"Bootloader config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_ON_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_BOOT\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_ON_UPDATE\",\n                \"name\": \"SECURE_SIGNED_ON_UPDATE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_APPS\",\n                \"name\": \"SECURE_SIGNED_APPS\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_RSA_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V2_RSA_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_SECURE_BOOT_V2_ECC\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_ECC_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V2_ECC_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_SECURE_BOOT_V1\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V1_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V1_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"ESP32_REV_MIN_FULL >= 300\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_PREFERRED\",\n                \"name\": \"SECURE_BOOT_V2_PREFERRED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_ECDSA_ENABLED\",\n                \"name\": \"SECURE_BOOT_V2_ECDSA_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_RSA_ENABLED\",\n                \"name\": \"SECURE_BOOT_V2_RSA_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER\",\n                \"name\": \"SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_BOOT\",\n                \"help\": \"Require apps to be signed to verify their integrity.\\n\\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\\nis much simpler to implement.\",\n                \"id\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Require signed app images\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\\nRefer to the documentation before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"ECDSA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"Appends the RSA-3072 based Signature block to the application.\\nRefer to <Secure Boot Version 2 documentation link> before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_RSA_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_RSA_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"RSA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\\nRefer to documentation before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"ECDSA (V2)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"help\": \"Select the Secure App signing scheme. Depends on the Chip Revision.\\nThere are two secure boot versions:\\n\\n1. Secure boot V1\\n    - Legacy custom secure boot scheme. Supported in ESP32 SoC.\\n\\n2. Secure boot V2\\n    - RSA based secure boot scheme.\\n      Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\\n\\n    - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.\",\n                \"id\": \"security-features-app-signing-scheme\",\n                \"name\": \"SECURE_SIGNED_APPS_SCHEME\",\n                \"title\": \"App Signing Scheme\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && <choice SECURE_BOOT_ECDSA_KEY_LEN_SIZE>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOT_ECDSA_KEY_LEN_192_BITS\",\n                        \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_192_BITS\",\n                        \"range\": null,\n                        \"title\": \"Using ECC curve NISTP192\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && <choice SECURE_BOOT_ECDSA_KEY_LEN_SIZE>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOT_ECDSA_KEY_LEN_256_BITS\",\n                        \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_256_BITS\",\n                        \"range\": null,\n                        \"title\": \"Using ECC curve NISTP256 (Recommended)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                \"help\": \"Select the ECDSA key size. Two key sizes are supported\\n\\n- 192 bit key using NISTP192 curve\\n- 256 bit key using NISTP256 curve (Recommended)\\n\\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\\nbruteforced compared to 192 bit key.\\nAt present, both key sizes are practically implausible to bruteforce.\",\n                \"id\": \"security-features-ecdsa-key-size\",\n                \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_SIZE\",\n                \"title\": \"ECDSA key size\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                \"help\": \"If this option is set, the bootloader will be compiled with code to verify that an app is signed before\\nbooting it.\\n\\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\\nusers will want to leave it disabled.\",\n                \"id\": \"SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Bootloader verifies app signatures\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"help\": \"If this option is set, any OTA updated apps will have the signature verified before being considered valid.\\n\\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\\nupdates, or esp_image_format.h APIs are used to verify apps.\\n\\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\\nattackers by preventing spoofing of OTA updates.\",\n                \"id\": \"SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Verify app signature on update\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SECURE_BOOT_V1_SUPPORTED && <choice SECURE_BOOT_VERSION>\",\n                                \"help\": \"Build a bootloader which enables secure boot version 1 on first boot.\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                                \"id\": \"SECURE_BOOT_V1_ENABLED\",\n                                \"name\": \"SECURE_BOOT_V1_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Enable Secure Boot version 1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && <choice SECURE_BOOT_VERSION>\",\n                                \"help\": \"Build a bootloader which enables Secure Boot version 2 on first boot.\\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                                \"id\": \"SECURE_BOOT_V2_ENABLED\",\n                                \"name\": \"SECURE_BOOT_V2_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Enable Secure Boot version 2\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SECURE_BOOT\",\n                        \"help\": \"Select the Secure Boot Version. Depends on the Chip Revision.\\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\\n\\n    - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\\n    - ECDSA based scheme is supported in ESP32-C2 SoC.\\n\\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\\n\\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.\",\n                        \"id\": \"security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version\",\n                        \"name\": \"SECURE_BOOT_VERSION\",\n                        \"title\": \"Select secure boot version\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": \"SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)\",\n                \"help\": \"Build a bootloader which enables Secure Boot on first boot.\\n\\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\\nupdated apps once secure boot is enabled.\\n\\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.\",\n                \"id\": \"SECURE_BOOT\",\n                \"name\": \"SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Enable hardware Secure Boot in bootloader (READ DOCS FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_MODE>\",\n                        \"help\": \"On first boot, the bootloader will generate a key which is not readable externally or by software. A\\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\\nboot.\\n\\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.\",\n                        \"id\": \"SECURE_BOOTLOADER_ONE_TIME_FLASH\",\n                        \"name\": \"SECURE_BOOTLOADER_ONE_TIME_FLASH\",\n                        \"range\": null,\n                        \"title\": \"One-time flash\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_MODE>\",\n                        \"help\": \"Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\\n\\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\\nkey.\\n\\nThis option is less secure than one-time flash, because a leak of the digest key from one device\\nallows reflashing of any device that uses it.\",\n                        \"id\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                        \"name\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                        \"range\": null,\n                        \"title\": \"Reflashable\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOT_V1_ENABLED\",\n                \"help\": null,\n                \"id\": \"security-features-secure-bootloader-mode\",\n                \"name\": \"SECURE_BOOTLOADER_MODE\",\n                \"title\": \"Secure bootloader mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                        \"help\": \"Path to the key file used to sign app images.\\n\\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\\nKey file is an RSA private key in PEM format for Secure Boot V2.\\n\\nPath is evaluated relative to the project directory.\\n\\nYou can generate a new signing key by running the following command:\\nespsecure.py generate_signing_key secure_boot_signing_key.pem\\n\\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.\",\n                        \"id\": \"SECURE_BOOT_SIGNING_KEY\",\n                        \"name\": \"SECURE_BOOT_SIGNING_KEY\",\n                        \"range\": null,\n                        \"title\": \"Secure boot private signing key\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_SIGNED_APPS\",\n                \"help\": \"Once secure boot or signed app requirement is enabled, app images are required to be signed.\\n\\nIf enabled (default), these binary files are signed as part of the build process. The file named in\\n\\\"Secure boot private signing key\\\" will be used to sign the image.\\n\\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\\n(for example, on a remote signing server.)\",\n                \"id\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"name\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"range\": null,\n                \"title\": \"Sign binaries during build\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"help\": \"Path to a public key file used to verify signed images.\\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\\napp, to verify app images.\\n\\nKey file is in raw binary format, and can be extracted from a\\nPEM formatted private key using the espsecure.py\\nextract_public_key command.\\n\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                \"id\": \"SECURE_BOOT_VERIFICATION_KEY\",\n                \"name\": \"SECURE_BOOT_VERIFICATION_KEY\",\n                \"range\": null,\n                \"title\": \"Secure boot public signature verification key\",\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n                \"help\": \"If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\\nif it fails to verify the signature of software bootloader with it.\\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\\n\\nThis feature provides a strong resistance against physical attacks on the device.\\n\\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\\nThis can lead to permanent bricking of the device, in case all keys are revoked\\nbecause of signature verification failure.\",\n                \"id\": \"SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE\",\n                \"name\": \"SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE\",\n                \"range\": null,\n                \"title\": \"Enable Aggressive key revoke strategy\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_KEY_ENCODING>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOTLOADER_KEY_ENCODING_256BIT\",\n                        \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING_256BIT\",\n                        \"range\": null,\n                        \"title\": \"No encoding (256 bit key)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_KEY_ENCODING>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOTLOADER_KEY_ENCODING_192BIT\",\n                        \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING_192BIT\",\n                        \"range\": null,\n                        \"title\": \"3/4 encoding (192 bit key)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                \"help\": \"In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\\ncan be written to eFuse with espefuse.py.\\n\\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\\ntruncated to 192 bits.\\n\\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\\ngenerated at build time.\",\n                \"id\": \"security-features-hardware-key-encoding\",\n                \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING\",\n                \"title\": \"Hardware Key Encoding\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT\",\n                \"help\": \"You can disable some of the default protections offered by secure boot, in order to enable testing or a\\ncustom combination of security features.\\n\\nOnly enable these options if you are very sure.\\n\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                \"id\": \"SECURE_BOOT_INSECURE\",\n                \"name\": \"SECURE_BOOT_INSECURE\",\n                \"range\": null,\n                \"title\": \"Allow potentially insecure options\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES128_DERIVED\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES128_DERIVED\",\n                                \"range\": null,\n                                \"title\": \"AES-128 key derived from 128 bits (SHA256(128 bits))\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES128\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES128\",\n                                \"range\": null,\n                                \"title\": \"AES-128 (256-bit key)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256 && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES256\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES256\",\n                                \"range\": null,\n                                \"title\": \"AES-256 (512-bit key)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"Size of generated AES-XTS key.\\n\\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\\n  Internally, it calculates SHA256(128 bits)\\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\\n\\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\\nIn this case, the pre-burned key is used and no new key is generated.\",\n                        \"id\": \"security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key\",\n                        \"name\": \"SECURE_FLASH_ENCRYPTION_KEYSIZE\",\n                        \"title\": \"Size of generated AES-XTS key\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SECURE_FLASH_ENCRYPTION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                                \"range\": null,\n                                \"title\": \"Development (NOT SECURE)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(!EFUSE_VIRTUAL || IDF_CI_BUILD) && <choice SECURE_FLASH_ENCRYPTION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_MODE_RELEASE\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_MODE_RELEASE\",\n                                \"range\": null,\n                                \"title\": \"Release\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"By default Development mode is enabled which allows ROM download mode to perform flash encryption\\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\\nto flash.\\n\\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\\npossible for the device in ROM Download Mode to use the flash encryption hardware.\\n\\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\\nFor CI tests we use IDF_CI_BUILD to bypass it (\\\"export IDF_CI_BUILD=1\\\").\\nWe do not recommend bypassing it for other purposes.\\n\\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.\",\n                        \"id\": \"security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode\",\n                        \"name\": \"SECURE_FLASH_ENCRYPTION_MODE\",\n                        \"title\": \"Enable usage mode\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"If this option is set, flash contents will be encrypted by the bootloader on first boot.\\n\\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\\nsystem is complicated and not always possible.\\n\\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\\nbefore enabling.\",\n                \"id\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"name\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"range\": null,\n                \"title\": \"Enable flash encryption on boot (READ DOCS FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                \"name\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32\",\n                        \"help\": \"By default, the BASIC ROM Console starts on reset if no valid bootloader is\\nread from the flash.\\n\\nWhen either flash encryption or secure boot are enabled, the default is to\\ndisable this BASIC fallback mode permanently via eFuse.\\n\\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\\nremain accessible.  Only set this option in testing environments.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_ROM_BASIC\",\n                        \"name\": \"SECURE_BOOT_ALLOW_ROM_BASIC\",\n                        \"range\": null,\n                        \"title\": \"Leave ROM BASIC Interpreter available on reset\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\\nwhen either secure boot or flash encryption is enabled.\\n\\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\\nand some of the protections of secure boot.\\n\\nOnly set this option in testing environments.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_JTAG\",\n                        \"name\": \"SECURE_BOOT_ALLOW_JTAG\",\n                        \"range\": null,\n                        \"title\": \"Allow JTAG Debugging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                        \"help\": \"If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\\ncausing it to be mapped into the address space.\\n\\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\\npartitioning scheme which doesn't support 64KB aligned partition lengths.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_SHORT_APP_PARTITION\",\n                        \"name\": \"SECURE_BOOT_ALLOW_SHORT_APP_PARTITION\",\n                        \"range\": null,\n                        \"title\": \"Allow app partition length not 64KB aligned\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE && SECURE_BOOT_V2_ENABLED\",\n                        \"help\": \"If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\\n\\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the public key digest, causing an\\nimmediate denial of service and possibly allowing an additional fault injection attack to\\nbypass the signature protection.\\n\\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\\n\\nNOTE: If \\\"UART ROM download mode (Permanently disabled (recommended))\\\" or\\n\\\"UART ROM download mode (Permanently switch to Secure mode (recommended))\\\" is set,\\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\\nHowever, efuse can be read/written from the application\",\n                        \"id\": \"SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS\",\n                        \"name\": \"SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS\",\n                        \"range\": null,\n                        \"title\": \"Allow additional read protecting of efuses\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n                        \"help\": \"If not set (default), during startup in the app all unused digest slots will be revoked.\\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\\nIf set, it means that you have a plan to use unused digests slots later.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS\",\n                        \"name\": \"SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS\",\n                        \"range\": null,\n                        \"title\": \"Leave unused digest slots available (not revoke)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader encryption access on\\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\\n\\nIt is recommended to only set this option in testing environments.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader encryption enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader decryption access on\\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\\n\\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\\nencryption.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader decryption enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\\n\\nOnly set this option in testing environments.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader flash cache enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\\nwill enable flash encryption: generate the flash encryption key and program eFuses.\\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\\nreboot.\\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\\n\\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.\",\n                        \"id\": \"SECURE_FLASH_REQUIRE_ALREADY_ENABLED\",\n                        \"name\": \"SECURE_FLASH_REQUIRE_ALREADY_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Require flash encryption to be already enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                        \"help\": \"If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\\nDue to other eFuses are linked with the same write protection bit (see the list below) then\\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\\nto give a chance to turn on the chip into the release mode later.\\n\\nList of eFuses with the same write protection bit:\\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\\n\\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-H2: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.\",\n                        \"id\": \"SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE\",\n                        \"name\": \"SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE\",\n                        \"range\": null,\n                        \"title\": \"Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"security-features-potentially-insecure-options\",\n                \"title\": \"Potentially insecure options\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"help\": \"If set (default), in an app during startup code,\\nthere is a check of the flash encryption eFuse bit is on\\n(as the bootloader should already have set it).\\nThe app requires this bit is on to continue work otherwise abort.\\n\\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.\",\n                \"id\": \"SECURE_FLASH_CHECK_ENC_EN_IN_APP\",\n                \"name\": \"SECURE_FLASH_CHECK_ENC_EN_IN_APP\",\n                \"range\": null,\n                \"title\": \"Check Flash Encryption enabled on app startup\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_ROM_DL_MODE_ENABLED\",\n                \"name\": \"SECURE_ROM_DL_MODE_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\\n\\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\\nthen an error is printed instead.\\n\\nIt is recommended to enable this option in any production application where Flash\\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\\n\\nIt is also possible to permanently disable Download Mode by calling\\nesp_efuse_disable_rom_download_mode() at runtime.\",\n                        \"id\": \"SECURE_DISABLE_ROM_DL_MODE\",\n                        \"name\": \"SECURE_DISABLE_ROM_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Permanently disabled (recommended))\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_SUPPORTS_SECURE_DL_MODE && <choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\\nDownload Mode into a separate Secure Download mode. This option can only work if\\nDownload Mode is not already disabled by eFuse.\\n\\nSecure Download mode limits the use of Download Mode functions to update SPI config,\\nchanging baud rate, basic flash write and a command to return a summary of currently\\nenabled security features (`get_security_info`).\\n\\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\\nespefuse.py, read/writing memory or registers, encrypted download, or any other\\nfeatures that interact with unsupported Download Mode commands.\\n\\nSecure Download mode should be enabled in any application where Flash Encryption\\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\\nthe benefits of the security features, but it increases the potential \\\"attack\\nsurface\\\" for an attacker to try and bypass them with a successful physical attack.\\n\\nIt is also possible to enable secure download mode at runtime by calling\\nesp_efuse_enable_rom_secure_download_mode()\\n\\nNote: Secure Download mode is not available for ESP32 (includes revisions till ECO3).\",\n                        \"id\": \"SECURE_ENABLE_SECURE_ROM_DL_MODE\",\n                        \"name\": \"SECURE_ENABLE_SECURE_ROM_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Permanently switch to Secure mode (recommended))\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"This is a potentially insecure option.\\nEnabling this option will allow the full UART download mode to stay enabled.\\nThis option SHOULD NOT BE ENABLED for production use cases.\",\n                        \"id\": \"SECURE_INSECURE_ALLOW_DL_MODE\",\n                        \"name\": \"SECURE_INSECURE_ALLOW_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Enabled (not recommended))\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)\",\n                \"help\": null,\n                \"id\": \"security-features-uart-rom-download-mode\",\n                \"name\": \"SECURE_UART_ROM_DL_MODE\",\n                \"title\": \"UART ROM download mode\",\n                \"type\": \"choice\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"security-features\",\n        \"title\": \"Security features\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If set, then the app will be built with the current time/date stamp. It is stored in the app description\\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\\nsame binary image files made from the same source, but at different times.\",\n                \"id\": \"APP_COMPILE_TIME_DATE\",\n                \"name\": \"APP_COMPILE_TIME_DATE\",\n                \"range\": null,\n                \"title\": \"Use time/date stamp for app\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The PROJECT_VER variable from the build system will not affect the firmware image.\\nThis value will not be contained in the esp_app_desc structure.\",\n                \"id\": \"APP_EXCLUDE_PROJECT_VER_VAR\",\n                \"name\": \"APP_EXCLUDE_PROJECT_VER_VAR\",\n                \"range\": null,\n                \"title\": \"Exclude PROJECT_VER from firmware image\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The PROJECT_NAME variable from the build system will not affect the firmware image.\\nThis value will not be contained in the esp_app_desc structure.\",\n                \"id\": \"APP_EXCLUDE_PROJECT_NAME_VAR\",\n                \"name\": \"APP_EXCLUDE_PROJECT_NAME_VAR\",\n                \"range\": null,\n                \"title\": \"Exclude PROJECT_NAME from firmware image\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                        \"help\": \"Project version\",\n                        \"id\": \"APP_PROJECT_VER\",\n                        \"name\": \"APP_PROJECT_VER\",\n                        \"range\": null,\n                        \"title\": \"Project version\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\\nOther ways to set PROJECT_VER will be ignored.\",\n                \"id\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                \"name\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                \"range\": null,\n                \"title\": \"Get the project version from Kconfig\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"At startup, the app will read this many hex characters from the embedded APP ELF SHA-256 hash value\\nand store it in static RAM. This ensures the app ELF SHA-256 value is always available\\nif it needs to be printed by the panic handler code.\\nChanging this value will change the size of a static buffer, in bytes.\",\n                \"id\": \"APP_RETRIEVE_LEN_ELF_SHA\",\n                \"name\": \"APP_RETRIEVE_LEN_ELF_SHA\",\n                \"range\": [\n                    8,\n                    64\n                ],\n                \"title\": \"The length of APP ELF SHA is stored in RAM(chars)\",\n                \"type\": \"int\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"application-manager\",\n        \"title\": \"Application manager\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CRC_LE\",\n        \"name\": \"ESP_ROM_HAS_CRC_LE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CRC_BE\",\n        \"name\": \"ESP_ROM_HAS_CRC_BE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_MZ_CRC32\",\n        \"name\": \"ESP_ROM_HAS_MZ_CRC32\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_JPEG_DECODE\",\n        \"name\": \"ESP_ROM_HAS_JPEG_DECODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_UART_CLK_IS_XTAL\",\n        \"name\": \"ESP_ROM_UART_CLK_IS_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_RETARGETABLE_LOCKING\",\n        \"name\": \"ESP_ROM_HAS_RETARGETABLE_LOCKING\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_USB_SERIAL_DEVICE_NUM\",\n        \"name\": \"ESP_ROM_USB_SERIAL_DEVICE_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_ERASE_0_REGION_BUG\",\n        \"name\": \"ESP_ROM_HAS_ERASE_0_REGION_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_GET_CLK_FREQ\",\n        \"name\": \"ESP_ROM_GET_CLK_FREQ\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_HAL_WDT\",\n        \"name\": \"ESP_ROM_HAS_HAL_WDT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\",\n        \"name\": \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_LAYOUT_TABLE\",\n        \"name\": \"ESP_ROM_HAS_LAYOUT_TABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_SPI_FLASH\",\n        \"name\": \"ESP_ROM_HAS_SPI_FLASH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_ETS_PRINTF_BUG\",\n        \"name\": \"ESP_ROM_HAS_ETS_PRINTF_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\",\n        \"name\": \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\",\n        \"name\": \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\",\n        \"name\": \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\",\n        \"name\": \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\",\n        \"name\": \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\",\n        \"name\": \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Always print ROM logs, this is the default behavior.\",\n                        \"id\": \"BOOT_ROM_LOG_ALWAYS_ON\",\n                        \"name\": \"BOOT_ROM_LOG_ALWAYS_ON\",\n                        \"range\": null,\n                        \"title\": \"Always Log\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Don't print ROM logs.\",\n                        \"id\": \"BOOT_ROM_LOG_ALWAYS_OFF\",\n                        \"name\": \"BOOT_ROM_LOG_ALWAYS_OFF\",\n                        \"range\": null,\n                        \"title\": \"Permanently disable logging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Print ROM logs when GPIO level is high during start up.\\nThe GPIO number is chip dependent,\\ne.g. on ESP32-S2, the control GPIO is GPIO46.\",\n                        \"id\": \"BOOT_ROM_LOG_ON_GPIO_HIGH\",\n                        \"name\": \"BOOT_ROM_LOG_ON_GPIO_HIGH\",\n                        \"range\": null,\n                        \"title\": \"Log on GPIO High\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Print ROM logs when GPIO level is low during start up.\\nThe GPIO number is chip dependent,\\ne.g. on ESP32-S2, the control GPIO is GPIO46.\",\n                        \"id\": \"BOOT_ROM_LOG_ON_GPIO_LOW\",\n                        \"name\": \"BOOT_ROM_LOG_ON_GPIO_LOW\",\n                        \"range\": null,\n                        \"title\": \"Log on GPIO Low\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!IDF_TARGET_ESP32\",\n                \"help\": \"Controls the Boot ROM log behavior.\\nThe rom log behavior can only be changed for once,\\nspecific eFuse bit(s) will be burned at app boot stage.\",\n                \"id\": \"boot-rom-behavior-permanently-change-boot-rom-output\",\n                \"name\": \"BOOT_ROM_LOG_SCHEME\",\n                \"title\": \"Permanently change Boot ROM output\",\n                \"type\": \"choice\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"boot-rom-behavior\",\n        \"title\": \"Boot ROM Behavior\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"The flasher tool sends a precompiled download stub first by default. That stub allows things\\nlike compressed downloads and more. Usually you should not need to disable that feature\",\n                \"id\": \"ESPTOOLPY_NO_STUB\",\n                \"name\": \"ESPTOOLPY_NO_STUB\",\n                \"range\": null,\n                \"title\": \"Disable download stub\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_OCT_FLASH\",\n                \"name\": \"ESPTOOLPY_OCT_FLASH\",\n                \"range\": null,\n                \"title\": \"Enable Octal Flash\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"This config option helps decide whether flash is Quad or Octal, but please note some limitations:\\n\\n1. If the flash chip is an Octal one, even if one of \\\"QIO\\\", \\\"QOUT\\\", \\\"DIO\\\", \\\"DOUT\\\" options is\\n   selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\\n   mode to \\\"OPI\\\" and the sample mode will be STR.\\n2. If the flash chip is a Quad one, even if \\\"OPI\\\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\\n   automatically change the mode to \\\"DIO\\\".\\n3. Please do not rely on this option when you are pretty sure that you are using Octal flash,\\n   please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\\n   in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\\n   If your IRAM space is insufficient and you're aware of your flash type,\\n   disable this option and select corresponding flash type options.\",\n                \"id\": \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\",\n                \"name\": \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\",\n                \"range\": null,\n                \"title\": \"Choose flash mode automatically (please read help)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_QIO\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_QIO\",\n                        \"range\": null,\n                        \"title\": \"QIO\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_QOUT\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_QOUT\",\n                        \"range\": null,\n                        \"title\": \"QOUT\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_DIO\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_DIO\",\n                        \"range\": null,\n                        \"title\": \"DIO\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_DOUT\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_DOUT\",\n                        \"range\": null,\n                        \"title\": \"DOUT\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_OPI\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_OPI\",\n                        \"range\": null,\n                        \"title\": \"OPI\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Mode the flash chip is flashed in, as well as the default mode for the\\nbinary to run in.\",\n                \"id\": \"serial-flasher-config-flash-spi-mode\",\n                \"name\": \"ESPTOOLPY_FLASHMODE\",\n                \"title\": \"Flash SPI mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASH_SAMPLE_MODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\",\n                        \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\",\n                        \"range\": null,\n                        \"title\": \"STR Mode\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASH_SAMPLE_MODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\",\n                        \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\",\n                        \"range\": null,\n                        \"title\": \"DTR Mode\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"serial-flasher-config-flash-sampling-mode\",\n                \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE\",\n                \"title\": \"Flash Sampling Mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHMODE\",\n                \"name\": \"ESPTOOLPY_FLASHMODE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_120M && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": \"- Flash 120 MHz SDR mode is stable.\\n- Flash 120 MHz DDR mode is an experimental feature, it works when\\n  the temperature is stable.\\n\\n    Risks:\\n        If your chip powers on at a certain temperature, then after the temperature\\n        increases or decreases by approximately 20 Celsius degrees (depending on the\\n        chip), the program will crash randomly.\",\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_120M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_120M\",\n                        \"range\": null,\n                        \"title\": \"120 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_80M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_80M\",\n                        \"range\": null,\n                        \"title\": \"80 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_64M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_64M\",\n                        \"range\": null,\n                        \"title\": \"64 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_60M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_60M\",\n                        \"range\": null,\n                        \"title\": \"60 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_48M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_48M\",\n                        \"range\": null,\n                        \"title\": \"48 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_40M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_40M\",\n                        \"range\": null,\n                        \"title\": \"40 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_32M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_32M\",\n                        \"range\": null,\n                        \"title\": \"32 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_30M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_30M\",\n                        \"range\": null,\n                        \"title\": \"30 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_26M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_26M\",\n                        \"range\": null,\n                        \"title\": \"26 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_24M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_24M\",\n                        \"range\": null,\n                        \"title\": \"24 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_20M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_20M\",\n                        \"range\": null,\n                        \"title\": \"20 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_16M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_16M\",\n                        \"range\": null,\n                        \"title\": \"16 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_15M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_15M\",\n                        \"range\": null,\n                        \"title\": \"15 MHz\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"serial-flasher-config-flash-spi-speed\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ\",\n                \"title\": \"Flash SPI speed\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"This is an invisible item, used to define the targets that defaults to use 80MHz Flash SPI speed.\",\n                \"id\": \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHFREQ\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_1MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_1MB\",\n                        \"range\": null,\n                        \"title\": \"1 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_2MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_2MB\",\n                        \"range\": null,\n                        \"title\": \"2 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_4MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_4MB\",\n                        \"range\": null,\n                        \"title\": \"4 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_8MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_8MB\",\n                        \"range\": null,\n                        \"title\": \"8 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_16MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_16MB\",\n                        \"range\": null,\n                        \"title\": \"16 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_32MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_32MB\",\n                        \"range\": null,\n                        \"title\": \"32 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_64MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_64MB\",\n                        \"range\": null,\n                        \"title\": \"64 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_128MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_128MB\",\n                        \"range\": null,\n                        \"title\": \"128 MB\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"SPI flash size, in megabytes\",\n                \"id\": \"serial-flasher-config-flash-size\",\n                \"name\": \"ESPTOOLPY_FLASHSIZE\",\n                \"title\": \"Flash size\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHSIZE\",\n                \"name\": \"ESPTOOLPY_FLASHSIZE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"If this option is set, flashing the project will automatically detect\\nthe flash size of the target chip and update the bootloader image\\nbefore it is flashed.\\n\\nEnabling this option turns off the image protection against corruption\\nby a SHA256 digest. Updating the bootloader image before flashing would\\ninvalidate the digest.\",\n                \"id\": \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\",\n                \"name\": \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\",\n                \"range\": null,\n                \"title\": \"Detect flash size when flashing bootloader\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_BEFORE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_BEFORE_RESET\",\n                        \"name\": \"ESPTOOLPY_BEFORE_RESET\",\n                        \"range\": null,\n                        \"title\": \"Reset to bootloader\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_BEFORE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_BEFORE_NORESET\",\n                        \"name\": \"ESPTOOLPY_BEFORE_NORESET\",\n                        \"range\": null,\n                        \"title\": \"No reset\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Configure whether esptool.py should reset the ESP32 before flashing.\\n\\nAutomatic resetting depends on the RTS & DTR signals being\\nwired from the serial port to the ESP32. Most USB development\\nboards do this internally.\",\n                \"id\": \"serial-flasher-config-before-flashing\",\n                \"name\": \"ESPTOOLPY_BEFORE\",\n                \"title\": \"Before flashing\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_BEFORE\",\n                \"name\": \"ESPTOOLPY_BEFORE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_AFTER>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_AFTER_RESET\",\n                        \"name\": \"ESPTOOLPY_AFTER_RESET\",\n                        \"range\": null,\n                        \"title\": \"Reset after flashing\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_AFTER>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_AFTER_NORESET\",\n                        \"name\": \"ESPTOOLPY_AFTER_NORESET\",\n                        \"range\": null,\n                        \"title\": \"Stay in bootloader\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Configure whether esptool.py should reset the ESP32 after flashing.\\n\\nAutomatic resetting depends on the RTS & DTR signals being\\nwired from the serial port to the ESP32. Most USB development\\nboards do this internally.\",\n                \"id\": \"serial-flasher-config-after-flashing\",\n                \"name\": \"ESPTOOLPY_AFTER\",\n                \"title\": \"After flashing\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_AFTER\",\n                \"name\": \"ESPTOOLPY_AFTER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_MONITOR_BAUD\",\n                \"name\": \"ESPTOOLPY_MONITOR_BAUD\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            }\n        ],\n        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n        \"id\": \"serial-flasher-config\",\n        \"title\": \"Serial flasher config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is the default partition table, designed to fit into a 2MB or\\nlarger flash with a single 1MB app partition.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp.csv\\n\\nThis partition table is not suitable for an app that needs OTA\\n(over the air update) capability.\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP\",\n                        \"range\": null,\n                        \"title\": \"Single factory app, no OTA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the default partition table, that expands\\nthe 1MB app partition size to 1.5MB to fit more code.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_large.csv\\n\\nThis partition table is not suitable for an app that needs OTA\\n(over the air update) capability.\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_LARGE\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_LARGE\",\n                        \"range\": null,\n                        \"title\": \"Single factory app (large), no OTA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a basic OTA-enabled partition table with a factory app\\npartition plus two OTA app partitions. All are 1MB, so this\\npartition table requires 4MB or larger flash size.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_two_ota.csv\",\n                        \"id\": \"PARTITION_TABLE_TWO_OTA\",\n                        \"name\": \"PARTITION_TABLE_TWO_OTA\",\n                        \"range\": null,\n                        \"title\": \"Factory app, two OTA definitions\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"Specify the path to the partition table CSV to use for your project.\\n\\nConsult the Partition Table section in the ESP-IDF Programmers Guide\\nfor more information.\",\n                        \"id\": \"PARTITION_TABLE_CUSTOM\",\n                        \"name\": \"PARTITION_TABLE_CUSTOM\",\n                        \"range\": null,\n                        \"title\": \"Custom partition table CSV\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the default \\\"Single factory app, no OTA\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS\",\n                        \"range\": null,\n                        \"title\": \"Single factory app, no OTA, encrypted NVS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the \\\"Single factory app (large), no OTA\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS\",\n                        \"range\": null,\n                        \"title\": \"Single factory app (large), no OTA, encrypted NVS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the \\\"Factory app, two OTA definitions\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS\",\n                        \"name\": \"PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS\",\n                        \"range\": null,\n                        \"title\": \"Factory app, two OTA definitions, encrypted NVS\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"The partition table to flash to the ESP32. The partition table\\ndetermines where apps, data and other resources are expected to\\nbe found.\\n\\nThe predefined partition table CSV descriptions can be found\\nin the components/partition_table directory. These are mostly intended\\nfor example and development use, it's expect that for production use you\\nwill copy one of these CSV files and create a custom partition CSV for\\nyour application.\",\n                \"id\": \"partition-table-partition-table\",\n                \"name\": \"PARTITION_TABLE_TYPE\",\n                \"title\": \"Partition Table\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Name of the custom partition CSV filename. This path is evaluated\\nrelative to the project root directory.\",\n                \"id\": \"PARTITION_TABLE_CUSTOM_FILENAME\",\n                \"name\": \"PARTITION_TABLE_CUSTOM_FILENAME\",\n                \"range\": null,\n                \"title\": \"Custom partition CSV file\",\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"PARTITION_TABLE_FILENAME\",\n                \"name\": \"PARTITION_TABLE_FILENAME\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The address of partition table (by default 0x8000).\\nAllows you to move the partition table, it gives more space for the bootloader.\\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\\n\\nThis number should be a multiple of 0x1000.\\n\\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\\npartition offsets blank in the CSV file.\",\n                \"id\": \"PARTITION_TABLE_OFFSET\",\n                \"name\": \"PARTITION_TABLE_OFFSET\",\n                \"range\": null,\n                \"title\": \"Offset of partition table\",\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX\",\n                \"help\": \"Generate an MD5 checksum for the partition table for protecting the\\nintegrity of the table. The generation should be turned off for legacy\\nbootloaders which cannot recognize the MD5 checksum in the partition\\ntable.\",\n                \"id\": \"PARTITION_TABLE_MD5\",\n                \"name\": \"PARTITION_TABLE_MD5\",\n                \"range\": null,\n                \"title\": \"Generate an MD5 checksum for the partition table\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"partition-table\",\n        \"title\": \"Partition Table\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_DEFAULT\",\n                        \"name\": \"COMPILER_OPTIMIZATION_DEFAULT\",\n                        \"range\": null,\n                        \"title\": \"Debug (-Og)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_SIZE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Optimize for size (-Os)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_PERF\",\n                        \"name\": \"COMPILER_OPTIMIZATION_PERF\",\n                        \"range\": null,\n                        \"title\": \"Optimize for performance (-O2)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_NONE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_NONE\",\n                        \"range\": null,\n                        \"title\": \"Debug without optimization (-O0)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"This option sets compiler optimization level (gcc -O argument) for the app.\\n\\n- The \\\"Default\\\" setting will add the -0g flag to CFLAGS.\\n- The \\\"Size\\\" setting will add the -0s flag to CFLAGS.\\n- The \\\"Performance\\\" setting will add the -O2 flag to CFLAGS.\\n- The \\\"None\\\" setting will add the -O0 flag to CFLAGS.\\n\\nThe \\\"Size\\\" setting cause the compiled code to be smaller and faster, but\\nmay lead to difficulties of correlating code addresses to source file\\nlines when debugging.\\n\\nThe \\\"Performance\\\" setting causes the compiled code to be larger and faster,\\nbut will be easier to correlated code addresses to source file lines.\\n\\n\\\"None\\\" with -O0 produces compiled code without optimization.\\n\\nNote that custom optimization levels may be unsupported.\\n\\nCompiler optimization for the IDF bootloader is set separately,\\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.\",\n                \"id\": \"compiler-options-optimization-level\",\n                \"name\": \"COMPILER_OPTIMIZATION\",\n                \"title\": \"Optimization Level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"Enable assertions. Assertion content and line number will be printed on failure.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"Enable silent assertions. Failed assertions will abort(), user needs to\\nuse the aborting address to find the line number with the failed assertion.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\",\n                        \"range\": null,\n                        \"title\": \"Silent (saves code size)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"If assertions are disabled, -DNDEBUG is added to CPPFLAGS.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\",\n                        \"range\": null,\n                        \"title\": \"Disabled (sets -DNDEBUG)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Assertions can be:\\n\\n- Enabled. Failure will print verbose assertion details. This is the default.\\n\\n- Set to \\\"silent\\\" to save code size (failed assertions will abort() but user\\n  needs to use the aborting address to find the line number with the failed assertion.)\\n\\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\\n  to CPPFLAGS in this case.\",\n                \"id\": \"compiler-options-assertion-level\",\n                \"name\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"title\": \"Assertion level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_FLOAT_LIB_FROM>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_FLOAT_LIB_FROM_GCCLIB\",\n                        \"name\": \"COMPILER_FLOAT_LIB_FROM_GCCLIB\",\n                        \"range\": null,\n                        \"title\": \"libgcc\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_RVFPLIB && <choice COMPILER_FLOAT_LIB_FROM>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_FLOAT_LIB_FROM_RVFPLIB\",\n                        \"name\": \"COMPILER_FLOAT_LIB_FROM_RVFPLIB\",\n                        \"range\": null,\n                        \"title\": \"librvfp\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"In the soft-fp part of libgcc, riscv version is written in C,\\nand handles all edge cases in IEEE754, which makes it larger\\nand performance is slow.\\n\\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\\ninteger processors, for single and double-precision FP.\\nRVfplib is \\\"fast\\\", but it has a few exceptions from IEEE 754 compliance.\",\n                \"id\": \"compiler-options-compiler-float-lib-source\",\n                \"name\": \"COMPILER_FLOAT_LIB_FROM\",\n                \"title\": \"Compiler float lib source\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"name\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, the error messages will be discarded in following check macros:\\n- ESP_RETURN_ON_ERROR\\n- ESP_EXIT_ON_ERROR\\n- ESP_RETURN_ON_FALSE\\n- ESP_EXIT_ON_FALSE\",\n                \"id\": \"COMPILER_OPTIMIZATION_CHECKS_SILENT\",\n                \"name\": \"COMPILER_OPTIMIZATION_CHECKS_SILENT\",\n                \"range\": null,\n                \"title\": \"Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\\nwith paths relative to the placeholder string \\\"IDF\\\", and convert paths inside the\\nproject directory to relative paths.\\n\\nThis allows building the project with assertions or other code that embeds file paths,\\nwithout the binary containing the exact path to the IDF or project directories.\\n\\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\\n-ffile-prefix-map arguments.\",\n                \"id\": \"COMPILER_HIDE_PATHS_MACROS\",\n                \"is_menuconfig\": true,\n                \"name\": \"COMPILER_HIDE_PATHS_MACROS\",\n                \"range\": null,\n                \"title\": \"Replace ESP-IDF and project paths in binaries\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"COMPILER_CXX_EXCEPTIONS\",\n                        \"help\": \"Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\\nmemory for thrown exceptions when there is not enough memory on the heap.\",\n                        \"id\": \"COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE\",\n                        \"name\": \"COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Emergency Pool Size\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Enabling this option compiles all IDF C++ files with exception support enabled.\\n\\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\\nwhich throws an exception will abort instead.\\n\\nEnabling this option currently adds an additional ~500 bytes of heap overhead\\nwhen an exception is thrown in user code for the first time.\",\n                \"id\": \"COMPILER_CXX_EXCEPTIONS\",\n                \"is_menuconfig\": true,\n                \"name\": \"COMPILER_CXX_EXCEPTIONS\",\n                \"range\": null,\n                \"title\": \"Enable C++ exceptions\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Enabling this option compiles all C++ files with RTTI support enabled.\\nThis increases binary size (typically by tens of kB) but allows using\\ndynamic_cast conversion and typeid operator.\",\n                \"id\": \"COMPILER_CXX_RTTI\",\n                \"name\": \"COMPILER_CXX_RTTI\",\n                \"range\": null,\n                \"title\": \"Enable C++ run-time type info (RTTI)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_NONE\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_NONE\",\n                        \"range\": null,\n                        \"title\": \"None\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_NORM\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_NORM\",\n                        \"range\": null,\n                        \"title\": \"Normal\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_STRONG\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_STRONG\",\n                        \"range\": null,\n                        \"title\": \"Strong\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_ALL\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_ALL\",\n                        \"range\": null,\n                        \"title\": \"Overall\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\\nThe guards are initialized when a function is entered and then checked when the function exits.\\nIf a guard check fails, program is halted. Protection has the following modes:\\n\\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\\n  buffers larger than 8 bytes are protected.\\n\\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\\n  to be protected -- those that have local array definitions, or have references to local frame\\n  addresses.\\n\\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\\n\\nModes have the following impact on code performance and coverage:\\n\\n- performance: NORMAL > STRONG > OVERALL\\n\\n- coverage: NORMAL < STRONG < OVERALL\\n\\nThe performance impact includes increasing the amount of stack memory required for each task.\",\n                \"id\": \"compiler-options-stack-smashing-protection-mode\",\n                \"name\": \"COMPILER_STACK_CHECK_MODE\",\n                \"title\": \"Stack smashing protection mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Stack smashing protection.\",\n                \"id\": \"COMPILER_STACK_CHECK\",\n                \"name\": \"COMPILER_STACK_CHECK\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Adds -Wwrite-strings flag for the C/C++ compilers.\\n\\nFor C, this gives string constants the type ``const char[]`` so that\\ncopying the address of one into a non-const ``char *`` pointer\\nproduces a warning. This warning helps to find at compile time code\\nthat tries to write into a string constant.\\n\\nFor C++, this warns about the deprecated conversion from string\\nliterals to ``char *``.\",\n                \"id\": \"COMPILER_WARN_WRITE_STRINGS\",\n                \"name\": \"COMPILER_WARN_WRITE_STRINGS\",\n                \"range\": null,\n                \"title\": \"Enable -Wwrite-strings warning flag\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ARCH_RISCV\",\n                \"help\": \"Adds -msave-restore to C/C++ compilation flags.\\n\\nWhen this flag is enabled, compiler will call library functions to\\nsave/restore registers in function prologues/epilogues. This results\\nin lower overall code size, at the expense of slightly reduced performance.\\n\\nThis option can be enabled for RISC-V targets only.\",\n                \"id\": \"COMPILER_SAVE_RESTORE_LIBCALLS\",\n                \"name\": \"COMPILER_SAVE_RESTORE_LIBCALLS\",\n                \"range\": null,\n                \"title\": \"Enable -msave-restore flag to reduce code size\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\\nGCC 11.\",\n                \"id\": \"COMPILER_DISABLE_GCC12_WARNINGS\",\n                \"name\": \"COMPILER_DISABLE_GCC12_WARNINGS\",\n                \"range\": null,\n                \"title\": \"Disable new warnings introduced in GCC 12\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, RTL files will be produced during compilation. These files\\ncan be used by other tools, for example to calculate call graphs.\",\n                \"id\": \"COMPILER_DUMP_RTL_FILES\",\n                \"name\": \"COMPILER_DUMP_RTL_FILES\",\n                \"range\": null,\n                \"title\": \"Dump RTL files during compilation\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"compiler-options\",\n        \"title\": \"Compiler options\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_CUSTOM_TABLE\",\n                                \"help\": \"Name of the custom eFuse CSV filename. This path is evaluated\\nrelative to the project root directory.\",\n                                \"id\": \"EFUSE_CUSTOM_TABLE_FILENAME\",\n                                \"name\": \"EFUSE_CUSTOM_TABLE_FILENAME\",\n                                \"range\": null,\n                                \"title\": \"Custom eFuse CSV file\",\n                                \"type\": \"string\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Allows to generate a structure for eFuse from the CSV file.\",\n                        \"id\": \"EFUSE_CUSTOM_TABLE\",\n                        \"name\": \"EFUSE_CUSTOM_TABLE\",\n                        \"range\": null,\n                        \"title\": \"Use custom eFuse table\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_VIRTUAL\",\n                                \"help\": \"In addition to the \\\"Simulate eFuse operations in RAM\\\" option, this option just adds\\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\\nshould have the `efuse` partition. partition.csv: \\\"efuse_em, data, efuse,   ,   0x2000,\\\"\\n\\nDuring startup, the eFuses are copied from flash or,\\nin case if flash is empty, from real eFuse to RAM and then update flash.\\nThis mode is useful when need to keep changes after reboot\\n(testing secure_boot and flash_encryption).\",\n                                \"id\": \"EFUSE_VIRTUAL_KEEP_IN_FLASH\",\n                                \"name\": \"EFUSE_VIRTUAL_KEEP_IN_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Keep eFuses in flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_VIRTUAL\",\n                                \"help\": \"If enabled, log efuse burns. This shows changes that would be made.\",\n                                \"id\": \"EFUSE_VIRTUAL_LOG_ALL_WRITES\",\n                                \"name\": \"EFUSE_VIRTUAL_LOG_ALL_WRITES\",\n                                \"range\": null,\n                                \"title\": \"Log all virtual writes\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If \\\"n\\\" - No virtual mode. All eFuse operations are real and use eFuse registers.\\nIf \\\"y\\\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\\nLog output will state changes that would be applied, but they will not be.\\n\\nIf it is \\\"y\\\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\\nBecause the EFUSE VIRT mode is for testing only.\\n\\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.\",\n                        \"id\": \"EFUSE_VIRTUAL\",\n                        \"name\": \"EFUSE_VIRTUAL\",\n                        \"range\": null,\n                        \"title\": \"Simulate eFuse operations in RAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_NONE\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_NONE\",\n                                \"range\": null,\n                                \"title\": \"None Only\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_3_4\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_3_4\",\n                                \"range\": null,\n                                \"title\": \"3/4 and None\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_REPEAT\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_REPEAT\",\n                                \"range\": null,\n                                \"title\": \"Repeat, 3/4 and None (common table does not support it)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                        \"help\": \"Selector eFuse code scheme.\",\n                        \"id\": \"component-config-efuse-bit-manager-coding-scheme-compatibility\",\n                        \"name\": \"EFUSE_CODE_SCHEME_SELECTOR\",\n                        \"title\": \"Coding Scheme Compatibility\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"EFUSE_MAX_BLK_LEN\",\n                        \"name\": \"EFUSE_MAX_BLK_LEN\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-efuse-bit-manager\",\n                \"title\": \"eFuse Bit Manager\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\\nrepresentations.\",\n                        \"id\": \"ESP_ERR_TO_NAME_LOOKUP\",\n                        \"name\": \"ESP_ERR_TO_NAME_LOOKUP\",\n                        \"range\": null,\n                        \"title\": \"Enable lookup of error code strings\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                        \"name\": \"ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-common-esp-related\",\n                \"title\": \"Common ESP-related\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_0\",\n                                        \"name\": \"ESP32S3_REV_MIN_0\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.0 (ECO0)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_1\",\n                                        \"name\": \"ESP32S3_REV_MIN_1\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.1 (ECO1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_2\",\n                                        \"name\": \"ESP32S3_REV_MIN_2\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.2 (ECO2)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Required minimum chip revision. ESP-IDF will check for it and\\nreject to boot if the chip revision fails the check.\\nThis ensures the chip used will have some modifications (features, or bugfixes).\\n\\nThe complied binary will only support chips above this revision,\\nthis will also help to reduce binary size.\",\n                                \"id\": \"component-config-hardware-settings-chip-revision-minimum-supported-esp32-s3-revision\",\n                                \"name\": \"ESP32S3_REV_MIN\",\n                                \"title\": \"Minimum Supported ESP32-S3 Revision\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_REV_MIN_FULL\",\n                                \"name\": \"ESP32S3_REV_MIN_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_REV_MIN_FULL\",\n                                \"name\": \"ESP_REV_MIN_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_REV_MAX_FULL\",\n                                \"name\": \"ESP32S3_REV_MAX_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_REV_MAX_FULL\",\n                                \"name\": \"ESP_REV_MAX_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_CI_BUILD\",\n                                \"help\": \"For internal chip testing, a small number of new versions chips didn't\\nupdate the version field in eFuse, you can enable this option to force the\\nsoftware recognize the chip version based on the rev selected in menuconfig.\",\n                                \"id\": \"ESP_REV_NEW_CHIP_TEST\",\n                                \"name\": \"ESP_REV_NEW_CHIP_TEST\",\n                                \"range\": null,\n                                \"title\": \"Internal test mode\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-chip-revision\",\n                        \"title\": \"Chip revision\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_BT\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_BT\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_ETH\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_ETH\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_IEEE802154\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_IEEE802154\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_UNIVERSAL_MAC_ADDRESSES>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                        \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                        \"range\": null,\n                                        \"title\": \"Two\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_UNIVERSAL_MAC_ADDRESSES>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                        \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                        \"range\": null,\n                                        \"title\": \"Four\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Configure the number of universally administered (by IEEE) MAC addresses.\\nDuring initialization, MAC addresses for each network interface are generated or derived from a\\nsingle base MAC address.\\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\\nreceive a universally administered MAC address. These are generated sequentially by adding 0\\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\\naddresses, respectively.\\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\\naddresses in this range (either 2 or 4 per device.)\",\n                                \"id\": \"component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address\",\n                                \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"title\": \"Number of universally administered (by IEEE) MAC address\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\\nand you still want to use this chip, you can enable this option to bypass such an error.\\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.\",\n                                \"id\": \"ESP_MAC_IGNORE_MAC_CRC_ERROR\",\n                                \"name\": \"ESP_MAC_IGNORE_MAC_CRC_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Ignore MAC CRC error (not recommended)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-mac-config\",\n                        \"title\": \"MAC Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM\",\n                                \"help\": \"If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\\n\\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.\",\n                                \"id\": \"ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"name\": \"ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Power down flash in light sleep when there is no SPIRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP && !ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"help\": \"All IOs will be set to isolate(floating) state by default during sleep.\\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\\nlow level(selected state) in the floating state, there will be a large current leakage, and the\\ndata in Flash may be corrupted by random signals on other SPI pins.\\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\\nincrease the sleep current about 10 uA.\\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\\nconsumption caused by internal pull-up during sleep.\\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)\",\n                                \"id\": \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"Pull-up Flash CS pin in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPIRAM\",\n                                \"help\": \"All IOs will be set to isolate(floating) state by default during sleep.\\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\\nlow level(selected state) in the floating state, there will be a large current leakage, and the\\ndata in PSRAM may be corrupted by random signals on other SPI pins.\\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\\nincrease the sleep current about 10 uA.\\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\\nconsumption caused by internal pull-up during sleep.\\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)\",\n                                \"id\": \"ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"Pull-up PSRAM CS pin in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ESP_SLEEP_POWER_DOWN_FLASH && (ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND)\",\n                                \"help\": \"To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\\nall pins. It depends on the SPI Flash/RAM chip used.\",\n                                \"id\": \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\",\n                                \"name\": \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\",\n                                \"range\": null,\n                                \"title\": \"Pull-up all SPI pins in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"esp32c2, esp32c3, esp32s3, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\\na small electrostatic pulse during light sleep, with specific condition\\n\\n- GPIO needs to be configured as input-mode only\\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\\n  voltage is higher than 6 V\\n\\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\\nThe hardware design needs to controlled it with determined supply or ground voltage\\nis necessary.\\n\\nThis option provides a software workaround for this issue. Configure to isolate all\\nGPIO pins in sleep state.\",\n                                \"id\": \"ESP_SLEEP_GPIO_RESET_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_GPIO_RESET_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"light sleep GPIO reset workaround\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3\",\n                                \"help\": \"When the chip exits deep sleep, the CPU and the flash chip are powered on\\nat the same time. CPU will run deep sleep stub first, and then\\nproceed to load code from flash. Some flash chips need sufficient\\ntime to pass between power on and first read operation. By default,\\nwithout any extra delay, this time is approximately 900us, although\\nsome flash chip types need more than that.\\n\\nBy default extra delay is set to 2000us. When optimizing startup time\\nfor applications which require it, this value may be reduced.\\n\\nIf you are seeing \\\"flash read err, 1000\\\" message printed to the\\nconsole after deep sleep reset, try increasing this value.\",\n                                \"id\": \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\",\n                                \"name\": \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\",\n                                \"range\": [\n                                    0,\n                                    5000\n                                ],\n                                \"title\": \"Extra delay in deep sleep wake stub (in us)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\\nmake use of the internal ones.\",\n                                \"id\": \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\",\n                                \"name\": \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\",\n                                \"range\": null,\n                                \"title\": \"Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-sleep-config\",\n                        \"title\": \"Sleep Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32C3\",\n                                \"help\": \"Its not able to stall ESP32C3 systimer in sleep.\\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\\nTODO: IDF-7036\",\n                                \"id\": \"ESP_SLEEP_SYSTIMER_STALL_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_SYSTIMER_STALL_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"ESP32C3 SYSTIMER Stall Issue Workaround\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-esp_sleep_workaround\",\n                        \"title\": \"ESP_SLEEP_WORKAROUND\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_INT_RC\",\n                                        \"name\": \"RTC_CLK_SRC_INT_RC\",\n                                        \"range\": null,\n                                        \"title\": \"Internal 136kHz RC oscillator\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_EXT_CRYS\",\n                                        \"name\": \"RTC_CLK_SRC_EXT_CRYS\",\n                                        \"range\": null,\n                                        \"title\": \"External 32kHz crystal\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_EXT_OSC\",\n                                        \"name\": \"RTC_CLK_SRC_EXT_OSC\",\n                                        \"range\": null,\n                                        \"title\": \"External 32kHz oscillator at 32K_XP pin\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_INT_8MD256\",\n                                        \"name\": \"RTC_CLK_SRC_INT_8MD256\",\n                                        \"range\": null,\n                                        \"title\": \"Internal 17.5MHz oscillator, divided by 256\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Choose which clock is used as RTC clock source.\",\n                                \"id\": \"component-config-hardware-settings-rtc-clock-config-rtc-clock-source\",\n                                \"name\": \"RTC_CLK_SRC\",\n                                \"title\": \"RTC clock source\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When the startup code initializes RTC_SLOW_CLK, it can perform\\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\\nby the calibration routine. Higher numbers increase calibration\\nprecision, which may be important for applications which spend a lot of\\ntime in deep sleep. Lower numbers reduce startup time.\\n\\nWhen this option is set to 0, clock calibration will not be performed at\\nstartup, and approximate clock frequencies will be assumed:\\n\\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\\n    In case more value will help improve the definition of the launch of the crystal.\\n    If the crystal could not start, it will be switched to internal RC.\",\n                                \"id\": \"RTC_CLK_CAL_CYCLES\",\n                                \"name\": \"RTC_CLK_CAL_CYCLES\",\n                                \"range\": [\n                                    0,\n                                    32766\n                                ],\n                                \"title\": \"Number of cycles for RTC_SLOW_CLK calibration\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-rtc-clock-config\",\n                        \"title\": \"RTC Clock Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place peripheral control functions (e.g. periph_module_reset) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\",\n                                \"id\": \"PERIPH_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"PERIPH_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place peripheral control functions into IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-peripheral-control\",\n                        \"title\": \"Peripheral Control\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_ETM_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for ETM core driver.\\nNote that, this option only controls the ETM related driver log, won't affect other drivers.\",\n                                \"id\": \"ETM_ENABLE_DEBUG_LOG\",\n                                \"name\": \"ETM_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_ETM_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-etm-configuration\",\n                        \"title\": \"ETM Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                                \"help\": \"Place GDMA control functions (like start/stop/append/reset) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"GDMA_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"GDMA_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place GDMA control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                                \"help\": \"This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\\ncache misses, and also be able to run whilst the cache is disabled.\\n(e.g. SPI Flash write).\",\n                                \"id\": \"GDMA_ISR_IRAM_SAFE\",\n                                \"name\": \"GDMA_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"GDMA ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-gdma-configuration\",\n                        \"title\": \"GDMA Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_24M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_24\",\n                                        \"name\": \"XTAL_FREQ_24\",\n                                        \"range\": null,\n                                        \"title\": \"24 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_26M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_26\",\n                                        \"name\": \"XTAL_FREQ_26\",\n                                        \"range\": null,\n                                        \"title\": \"26 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_32M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_32\",\n                                        \"name\": \"XTAL_FREQ_32\",\n                                        \"range\": null,\n                                        \"title\": \"32 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_40M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_40\",\n                                        \"name\": \"XTAL_FREQ_40\",\n                                        \"range\": null,\n                                        \"title\": \"40 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_AUTO_DETECT && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_AUTO\",\n                                        \"name\": \"XTAL_FREQ_AUTO\",\n                                        \"range\": null,\n                                        \"title\": \"Autodetect\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\\nThe selected value MUST reflect the frequency of the given hardware.\\n\\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\\nin high ambient temperatures or use high-temperature qualified chips and modules.\",\n                                \"id\": \"component-config-hardware-settings-main-xtal-config-main-xtal-frequency\",\n                                \"name\": \"XTAL_FREQ_SEL\",\n                                \"title\": \"Main XTAL frequency\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"XTAL_FREQ\",\n                                \"name\": \"XTAL_FREQ\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-main-xtal-config\",\n                        \"title\": \"Main XTAL Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW\",\n                                                \"range\": null,\n                                                \"title\": \"Security level low\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM\",\n                                                \"range\": null,\n                                                \"title\": \"Security level medium\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH\",\n                                                \"range\": null,\n                                                \"title\": \"Security level high\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                        \"help\": \"Configure the DPA protection security level\",\n                                        \"id\": \"component-config-hardware-settings-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level\",\n                                        \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                        \"title\": \"DPA protection level\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                \"help\": \"This config controls the DPA (Differential Power Analysis) protection\\nknob for the crypto peripherals. DPA protection dynamically adjusts the\\nclock frequency of the crypto peripheral. DPA protection helps to make it\\ndifficult to perform SCA attacks on the crypto peripherals. However,\\nthere is also associated performance impact based on the security level\\nset. Please refer to the TRM for more details.\",\n                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP\",\n                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP\",\n                                \"range\": null,\n                                \"title\": \"Enable crypto DPA protection at startup\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                \"help\": null,\n                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-crypto-dpa-protection\",\n                        \"title\": \"Crypto DPA Protection\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-hardware-settings\",\n                \"title\": \"Hardware Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_ENV_FPGA && <choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_40\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_40\",\n                                \"range\": null,\n                                \"title\": \"40 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_80\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_80\",\n                                \"range\": null,\n                                \"title\": \"80 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_160\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_160\",\n                                \"range\": null,\n                                \"title\": \"160 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_240\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_240\",\n                                \"range\": null,\n                                \"title\": \"240 MHz\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"CPU frequency to be set on application startup.\",\n                        \"id\": \"component-config-esp-system-settings-cpu-frequency\",\n                        \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"title\": \"CPU frequency\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_16KB\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_16KB\",\n                                        \"range\": null,\n                                        \"title\": \"16KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_32KB\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_32KB\",\n                                        \"range\": null,\n                                        \"title\": \"32KB\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache size to be set on application startup.\\nIf you use 16KB instruction cache rather than 32KB instruction cache,\\nthen the other 16KB will be managed by heap allocator.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-size\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"title\": \"Instruction cache size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_ICACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_4WAYS\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_4WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"4 ways\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_ICACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_8WAYS\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_8WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"8 ways\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache associated ways to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-associated-ways\",\n                                \"name\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"title\": \"Instruction cache associated ways\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"name\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_INSTRUCTION_CACHE_16KB && <choice ESP32S3_INSTRUCTION_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\",\n                                        \"range\": null,\n                                        \"title\": \"16 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\",\n                                        \"range\": null,\n                                        \"title\": \"32 Bytes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache line size to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-line-size\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"title\": \"Instruction cache line size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM_ECC_ENABLE\",\n                                \"help\": \"If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\\nHowever, it depends on complex conditions.\",\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_WRAP\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_WRAP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_16KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_16KB\",\n                                        \"range\": null,\n                                        \"title\": \"16KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_32KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_32KB\",\n                                        \"range\": null,\n                                        \"title\": \"32KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_64KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_64KB\",\n                                        \"range\": null,\n                                        \"title\": \"64KB\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache size to be set on application startup.\\nIf you use 32KB data cache rather than 64KB data cache,\\nthe other 32KB will be added to the heap.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-size\",\n                                \"name\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"title\": \"Data cache size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"name\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DCACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_4WAYS\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_4WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"4 ways\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DCACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_8WAYS\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_8WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"8 ways\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache associated ways to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-associated-ways\",\n                                \"name\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"title\": \"Data cache associated ways\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"name\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && <choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_16B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_16B\",\n                                        \"range\": null,\n                                        \"title\": \"16 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_32B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_32B\",\n                                        \"range\": null,\n                                        \"title\": \"32 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_64B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_64B\",\n                                        \"range\": null,\n                                        \"title\": \"64 Bytes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache line size to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-line-size\",\n                                \"name\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"title\": \"Data cache line size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"name\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM_ECC_ENABLE\",\n                                \"help\": \"If enabled, data cache will use wrap mode to read spi flash or spi ram.\\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\\nHowever, it depends on complex conditions.\",\n                                \"id\": \"ESP32S3_DATA_CACHE_WRAP\",\n                                \"name\": \"ESP32S3_DATA_CACHE_WRAP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-cache-config\",\n                        \"title\": \"Cache config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This option allows to place .rtc_data and .rtc_rodata sections into\\nRTC fast memory segment to free the slow memory region for ULP programs.\",\n                                \"id\": \"ESP32S3_RTCDATA_IN_FAST_MEM\",\n                                \"name\": \"ESP32S3_RTCDATA_IN_FAST_MEM\",\n                                \"range\": null,\n                                \"title\": \"Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                        \"help\": \"RAM size dedicated for static variables (.data & .bss sections).\\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\\nE.g. parts are used by the software bootloader, and will only be available\\nas heap memory after app startup.\",\n                                        \"id\": \"ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                        \"name\": \"ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Fixed Static RAM size\",\n                                        \"type\": \"hex\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"If this option is disabled, the DRAM part of the heap starts right after the .bss section,\\nwithin the dram0_0 region. As a result, adding or removing some static variables\\nwill change the available heap size.\\n\\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\\nwhere its length is set with ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                \"id\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                \"name\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Use fixed static RAM size\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-memory\",\n                        \"title\": \"Memory\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_MEMMAP_TRACEMEM\",\n                                \"name\": \"ESP32S3_MEMMAP_TRACEMEM\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_MEMMAP_TRACEMEM_TWOBANKS\",\n                                \"name\": \"ESP32S3_MEMMAP_TRACEMEM_TWOBANKS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_TRAX && !FREERTOS_UNICORE\",\n                                        \"help\": \"The esp32-s3 contains a feature which allows you to trace the execution path the processor\\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\\nof memory that can't be used for general purposes anymore. Disable this if you do not know\\nwhat this is.\",\n                                        \"id\": \"ESP32S3_TRAX_TWOBANKS\",\n                                        \"name\": \"ESP32S3_TRAX_TWOBANKS\",\n                                        \"range\": null,\n                                        \"title\": \"Reserve memory for tracing both pro as well as app cpu execution\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"The esp32-s3 contains a feature which allows you to trace the execution path the processor\\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\\nof memory that can't be used for general purposes anymore. Disable this if you do not know\\nwhat this is.\",\n                                \"id\": \"ESP32S3_TRAX\",\n                                \"name\": \"ESP32S3_TRAX\",\n                                \"range\": null,\n                                \"title\": \"Use TRAX tracing feature\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_TRACEMEM_RESERVE_DRAM\",\n                                \"name\": \"ESP32S3_TRACEMEM_RESERVE_DRAM\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-trace-memory\",\n                        \"title\": \"Trace memory\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Outputs the relevant registers over the serial port and halt the\\nprocessor. Needs a manual reset to restart.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_PRINT_HALT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_PRINT_HALT\",\n                                \"range\": null,\n                                \"title\": \"Print registers and halt\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Outputs the relevant registers over the serial port and immediately\\nreset the processor.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                                \"range\": null,\n                                \"title\": \"Print registers and reboot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Just resets the processor without outputting anything\",\n                                \"id\": \"ESP_SYSTEM_PANIC_SILENT_REBOOT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_SILENT_REBOOT\",\n                                \"range\": null,\n                                \"title\": \"Silent reboot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\\nof the crash.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_GDBSTUB\",\n                                \"name\": \"ESP_SYSTEM_PANIC_GDBSTUB\",\n                                \"range\": null,\n                                \"title\": \"GDBStub on panic\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!IDF_TARGET_ESP32C2 && <choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Invoke gdbstub on the serial port, allowing for gdb to attach to it and to do a debug on runtime.\",\n                                \"id\": \"ESP_SYSTEM_GDBSTUB_RUNTIME\",\n                                \"name\": \"ESP_SYSTEM_GDBSTUB_RUNTIME\",\n                                \"range\": null,\n                                \"title\": \"GDBStub at runtime\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\\ninvoked. Configure the panic handler's action here.\",\n                        \"id\": \"component-config-esp-system-settings-panic-handler-behaviour\",\n                        \"name\": \"ESP_SYSTEM_PANIC\",\n                        \"title\": \"Panic handler behaviour\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                        \"help\": \"After the panic handler executes, you can specify a number of seconds to\\nwait before the device reboots.\",\n                        \"id\": \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\",\n                        \"name\": \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\",\n                        \"range\": [\n                            0,\n                            99\n                        ],\n                        \"title\": \"Panic reboot delay (Seconds)\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Only initialize and use the main core.\",\n                        \"id\": \"ESP_SYSTEM_SINGLE_CORE_MODE\",\n                        \"name\": \"ESP_SYSTEM_SINGLE_CORE_MODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_OSC\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_OSC\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"help\": \"To reduce the startup time of an external RTC crystal,\\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\\nlonger to start up or fail to oscillate under some conditions).\\n\\nIf this value is too high, a faulty crystal may initially start and then fail.\\nIf this value is too low, an otherwise good crystal may not start.\\n\\nTo accurately determine if the crystal has started,\\nset a larger \\\"Number of cycles for RTC_SLOW_CLK calibration\\\" (about 3000).\",\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES\",\n                        \"range\": null,\n                        \"title\": \"Bootstrap cycles for external 32kHz crystal\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"name\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"help\": \"This config option allows to add RTC fast memory region to system heap with capability\\nsimilar to that of DRAM region but without DMA. This memory will be consumed first per\\nheap initialization order by early startup services and scheduler related code. Speed\\nwise RTC fast memory operates on APB clock and hence does not have much performance impact.\",\n                        \"id\": \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\",\n                        \"name\": \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\",\n                        \"range\": null,\n                        \"title\": \"Enable RTC fast memory for dynamic allocations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ARCH_RISCV\",\n                        \"help\": \"Generate DWARF information for each function of the project. These information will parsed and used to\\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\\nthe program itself, regardless of the serial monitor used.\\nThis option shall NOT be used for production.\",\n                        \"id\": \"ESP_SYSTEM_USE_EH_FRAME\",\n                        \"name\": \"ESP_SYSTEM_USE_EH_FRAME\",\n                        \"range\": null,\n                        \"title\": \"Generate and use eh_frame for backtracing\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_CPU_IDRAM_SPLIT_USING_PMP\",\n                                \"help\": \"If enabled, the CPU watches all the memory access and raises an exception in case\\nof any memory violation. This feature automatically splits\\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\\nfor the instruction part (below given splitting address) and Read/Write permissions\\nfor the data part (above the splitting address). The memory protection is effective\\non all access through the IRAM0 and DRAM0 buses.\",\n                                \"id\": \"ESP_SYSTEM_PMP_IDRAM_SPLIT\",\n                                \"name\": \"ESP_SYSTEM_PMP_IDRAM_SPLIT\",\n                                \"range\": null,\n                                \"title\": \"Enable IRAM/DRAM split protection\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                        \"help\": \"Once locked, memory protection settings cannot be changed anymore.\\nThe lock is reset only on the chip startup.\",\n                                        \"id\": \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\",\n                                        \"name\": \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\",\n                                        \"range\": null,\n                                        \"title\": \"Lock memory protection settings\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"SOC_MEMPROT_SUPPORTED\",\n                                \"help\": \"If enabled, the permission control module watches all the memory access and fires the panic handler\\nif a permission violation is detected. This feature automatically splits\\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\\nfor the instruction part (below given splitting address) and Read/Write permissions\\nfor the data part (above the splitting address). The memory protection is effective\\non all access through the IRAM0 and DRAM0 buses.\",\n                                \"id\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                \"name\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                \"range\": null,\n                                \"title\": \"Enable memory protection\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-memory-protection\",\n                        \"title\": \"Memory protection\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Config system event queue size in different application.\",\n                        \"id\": \"ESP_SYSTEM_EVENT_QUEUE_SIZE\",\n                        \"name\": \"ESP_SYSTEM_EVENT_QUEUE_SIZE\",\n                        \"range\": null,\n                        \"title\": \"System event queue size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Config system event task stack size in different application.\",\n                        \"id\": \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Event loop task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the \\\"main task\\\" stack size. This is the stack of the task\\nwhich calls app_main(). If app_main() returns then this task is deleted\\nand its stack memory is freed.\",\n                        \"id\": \"ESP_MAIN_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_MAIN_TASK_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Main task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_CPU0\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_CPU0\",\n                                \"range\": null,\n                                \"title\": \"CPU0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && <choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_CPU1\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_CPU1\",\n                                \"range\": null,\n                                \"title\": \"CPU1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the \\\"main task\\\" core affinity. This is the used core of the task\\nwhich calls app_main(). If app_main() returns then this task is deleted.\",\n                        \"id\": \"component-config-esp-system-settings-main-task-core-affinity\",\n                        \"name\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"title\": \"Main task core affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"name\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Minimal value of size, in bytes, accepted to execute a expression\\nwith shared stack.\",\n                        \"id\": \"ESP_MINIMAL_SHARED_STACK_SIZE\",\n                        \"name\": \"ESP_MINIMAL_SHARED_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Minimal allowed size for shared stack\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_DEFAULT\",\n                                \"name\": \"ESP_CONSOLE_UART_DEFAULT\",\n                                \"range\": null,\n                                \"title\": \"Default: UART0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && <choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_USB_CDC\",\n                                \"name\": \"ESP_CONSOLE_USB_CDC\",\n                                \"range\": null,\n                                \"title\": \"USB CDC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_USB_SERIAL_JTAG_SUPPORTED && <choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_USB_SERIAL_JTAG\",\n                                \"name\": \"ESP_CONSOLE_USB_SERIAL_JTAG\",\n                                \"range\": null,\n                                \"title\": \"USB Serial/JTAG Controller\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM\",\n                                \"range\": null,\n                                \"title\": \"Custom UART\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_NONE\",\n                                \"name\": \"ESP_CONSOLE_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select where to send console output (through stdout and stderr).\\n\\n- Default is to use UART0 on pre-defined GPIOs.\\n- If \\\"Custom\\\" is selected, UART0 or UART1 can be chosen,\\n  and any pins can be selected.\\n- If \\\"None\\\" is selected, there will be no console output on any UART, except\\n  for initial output from ROM bootloader. This ROM output can be suppressed by\\n  GPIO strapping or EFUSE, refer to chip datasheet for details.\\n- On chips with USB OTG peripheral, \\\"USB CDC\\\" option redirects output to the\\n  CDC port. This option uses the CDC driver in the chip ROM.\\n  This option is incompatible with TinyUSB stack.\\n- On chips with an USB serial/JTAG debug controller, selecting the option\\n  for that redirects output to the CDC/ACM (serial port emulation) component\\n  of that device.\",\n                        \"id\": \"component-config-esp-system-settings-channel-for-console-output\",\n                        \"name\": \"ESP_CONSOLE_UART\",\n                        \"title\": \"Channel for console output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_SECONDARY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_SECONDARY_NONE\",\n                                \"name\": \"ESP_CONSOLE_SECONDARY_NONE\",\n                                \"range\": null,\n                                \"title\": \"No secondary console\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ESP_CONSOLE_USB_SERIAL_JTAG && <choice ESP_CONSOLE_SECONDARY>\",\n                                \"help\": \"This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\\nThe output currently only supports non-blocking mode without using the console.\\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.\",\n                                \"id\": \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\",\n                                \"name\": \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\",\n                                \"range\": null,\n                                \"title\": \"USB_SERIAL_JTAG PORT\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n                        \"help\": \"This secondary option supports output through other specific port like USB_SERIAL_JTAG\\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\\ninput through this secondary port, please change the primary config to this port\\nin `Channel for console output` menu.\",\n                        \"id\": \"component-config-esp-system-settings-channel-for-console-secondary-output\",\n                        \"name\": \"ESP_CONSOLE_SECONDARY\",\n                        \"title\": \"Channel for console secondary output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\",\n                        \"name\": \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_UART\",\n                        \"name\": \"ESP_CONSOLE_UART\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_MULTIPLE_UART\",\n                        \"name\": \"ESP_CONSOLE_MULTIPLE_UART\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART_NUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM_NUM_0\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM_NUM_0\",\n                                \"range\": null,\n                                \"title\": \"UART0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART_NUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM_NUM_1\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM_NUM_1\",\n                                \"range\": null,\n                                \"title\": \"UART1\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM && ESP_CONSOLE_MULTIPLE_UART\",\n                        \"help\": \"This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\\n\\nDue to an ESP32 ROM bug, UART2 is not supported for console output\\nvia esp_rom_printf.\",\n                        \"id\": \"component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-\",\n                        \"name\": \"ESP_CONSOLE_UART_NUM\",\n                        \"title\": \"UART peripheral to use for console output (0-1)\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_UART_NUM\",\n                        \"name\": \"ESP_CONSOLE_UART_NUM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM\",\n                        \"help\": \"This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\\nboot log output and default standard output and standard error of the app).\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_TX_GPIO\",\n                        \"name\": \"ESP_CONSOLE_UART_TX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART TX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM\",\n                        \"help\": \"This GPIO is used for UART RX input in the ESP-IDF Bootloader and the app (including\\ndefault default standard input of the app).\\n\\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_RX_GPIO\",\n                        \"name\": \"ESP_CONSOLE_UART_RX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART RX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART\",\n                        \"help\": \"This baud rate is used by both the ESP-IDF Bootloader and the app (including\\nboot log output and default standard input/output/error of the app).\\n\\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\\naccurate.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_BAUDRATE\",\n                        \"name\": \"ESP_CONSOLE_UART_BAUDRATE\",\n                        \"range\": [\n                            1200,\n                            4000000\n                        ],\n                        \"title\": \"UART console baud rate\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_USB_CDC\",\n                        \"help\": \"Set the size of USB CDC RX buffer. Increase the buffer size if your application\\nis often receiving data over USB CDC.\",\n                        \"id\": \"ESP_CONSOLE_USB_CDC_RX_BUF_SIZE\",\n                        \"name\": \"ESP_CONSOLE_USB_CDC_RX_BUF_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size of USB CDC RX buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_USB_CDC\",\n                        \"help\": \"If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\\nDisabling this option saves about 1kB or RAM.\",\n                        \"id\": \"ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF\",\n                        \"name\": \"ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF\",\n                        \"range\": null,\n                        \"title\": \"Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_INT_WDT\",\n                                \"help\": \"The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.\",\n                                \"id\": \"ESP_INT_WDT_TIMEOUT_MS\",\n                                \"name\": \"ESP_INT_WDT_TIMEOUT_MS\",\n                                \"range\": [\n                                    10,\n                                    10000\n                                ],\n                                \"title\": \"Interrupt watchdog timeout (ms)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_INT_WDT && !FREERTOS_UNICORE\",\n                                \"help\": \"Also detect if interrupts on CPU 1 are disabled for too long.\",\n                                \"id\": \"ESP_INT_WDT_CHECK_CPU1\",\n                                \"name\": \"ESP_INT_WDT_CHECK_CPU1\",\n                                \"range\": null,\n                                \"title\": \"Also watch CPU1 tick interrupt\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\\neither because a task turned off interrupts and did not turn them on for a long time, or because an\\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\\nreset the SoC.\",\n                        \"id\": \"ESP_INT_WDT\",\n                        \"name\": \"ESP_INT_WDT\",\n                        \"range\": null,\n                        \"title\": \"Interrupt watchdog\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_TASK_WDT_EN\",\n                                \"help\": null,\n                                \"id\": \"ESP_TASK_WDT_USE_ESP_TIMER\",\n                                \"name\": \"ESP_TASK_WDT_USE_ESP_TIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will be configured to\\ntrigger the panic handler when it times out. This can also be configured\\nat run time (see Task Watchdog Timer API Reference)\",\n                                        \"id\": \"ESP_TASK_WDT_PANIC\",\n                                        \"name\": \"ESP_TASK_WDT_PANIC\",\n                                        \"range\": null,\n                                        \"title\": \"Invoke panic handler on Task Watchdog timeout\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"Timeout period configuration for the Task Watchdog Timer in seconds.\\nThis is also configurable at run time (see Task Watchdog Timer API Reference)\",\n                                        \"id\": \"ESP_TASK_WDT_TIMEOUT_S\",\n                                        \"name\": \"ESP_TASK_WDT_TIMEOUT_S\",\n                                        \"range\": null,\n                                        \"title\": \"Task Watchdog timeout period (seconds)\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will watch the CPU0\\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\\nof CPU starvation as the Idle Task not being called is usually a symptom of\\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\\ntasks depend on the Idle Task getting some runtime every now and then.\",\n                                        \"id\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0\",\n                                        \"name\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0\",\n                                        \"range\": null,\n                                        \"title\": \"Watch CPU0 Idle Task\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT && !FREERTOS_UNICORE\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will wach the CPU1\\nIdle Task.\",\n                                        \"id\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1\",\n                                        \"name\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1\",\n                                        \"range\": null,\n                                        \"title\": \"Watch CPU1 Idle Task\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_TASK_WDT_EN\",\n                                \"help\": \"Enabling this option will cause the Task Watchdog Timer to be initialized\\nautomatically at startup.\",\n                                \"id\": \"ESP_TASK_WDT_INIT\",\n                                \"name\": \"ESP_TASK_WDT_INIT\",\n                                \"range\": null,\n                                \"title\": \"Initialize Task Watchdog Timer on startup\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The Task Watchdog Timer can be used to make sure individual tasks are still\\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\\neither initialized automatically at startup or initialized after startup\\n(see Task Watchdog Timer API Reference)\",\n                        \"id\": \"ESP_TASK_WDT_EN\",\n                        \"name\": \"ESP_TASK_WDT_EN\",\n                        \"range\": null,\n                        \"title\": \"Enable Task Watchdog Timer\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_XT_WDT\",\n                                \"help\": \"Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.\",\n                                \"id\": \"ESP_XT_WDT_TIMEOUT\",\n                                \"name\": \"ESP_XT_WDT_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"XTAL32K watchdog timeout period\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_XT_WDT\",\n                                \"help\": \"Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\\nthe watchdog timer expires.\",\n                                \"id\": \"ESP_XT_WDT_BACKUP_CLK_ENABLE\",\n                                \"name\": \"ESP_XT_WDT_BACKUP_CLK_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Automatically switch to BACKUP32K_CLK when timer expires\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!IDF_TARGET_ESP32 && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)\",\n                        \"help\": \"This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\\nan interrupt.\",\n                        \"id\": \"ESP_XT_WDT\",\n                        \"name\": \"ESP_XT_WDT\",\n                        \"range\": null,\n                        \"title\": \"Initialize XTAL32K watchdog timer on startup\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this option is disabled (default), the panic handler code is placed in flash not IRAM.\\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\\nrisk, if the flash cache status is also corrupted during the crash.\\n\\nIf this option is enabled, the panic handler code (including required UART functions) is placed\\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\\nis triggered.\",\n                        \"id\": \"ESP_PANIC_HANDLER_IRAM\",\n                        \"name\": \"ESP_PANIC_HANDLER_IRAM\",\n                        \"range\": null,\n                        \"title\": \"Place panic handler code in IRAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX\",\n                        \"help\": \"Debug stubs are used by OpenOCD to execute pre-compiled onboard code\\nwhich does some useful debugging stuff, e.g. GCOV data dump.\",\n                        \"id\": \"ESP_DEBUG_STUBS_ENABLE\",\n                        \"name\": \"ESP_DEBUG_STUBS_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"OpenOCD debug stubs\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\\ninstead of panicking, have the debugger stop on the offending instruction.\",\n                        \"id\": \"ESP_DEBUG_OCDAWARE\",\n                        \"name\": \"ESP_DEBUG_OCDAWARE\",\n                        \"range\": null,\n                        \"title\": \"Make exception and panic handlers JTAG/OCD aware\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && <choice ESP_SYSTEM_CHECK_INT_LEVEL>\",\n                                \"help\": \"Using level 5 interrupt for Interrupt Watchdog and other system checks.\",\n                                \"id\": \"ESP_SYSTEM_CHECK_INT_LEVEL_5\",\n                                \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL_5\",\n                                \"range\": null,\n                                \"title\": \"Level 5 interrupt\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!BTDM_CTRL_HLI && <choice ESP_SYSTEM_CHECK_INT_LEVEL>\",\n                                \"help\": \"Using level 4 interrupt for Interrupt Watchdog and other system checks.\",\n                                \"id\": \"ESP_SYSTEM_CHECK_INT_LEVEL_4\",\n                                \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL_4\",\n                                \"range\": null,\n                                \"title\": \"Level 4 interrupt\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Interrupt level to use for Interrupt Watchdog and other system checks.\",\n                        \"id\": \"component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks\",\n                        \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL\",\n                        \"title\": \"Interrupt level to use for Interrupt Watchdog and other system checks\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_7\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_7\",\n                                                \"range\": null,\n                                                \"title\": \"2.44V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_6\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_6\",\n                                                \"range\": null,\n                                                \"title\": \"2.56V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_5\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_5\",\n                                                \"range\": null,\n                                                \"title\": \"2.67V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_4\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_4\",\n                                                \"range\": null,\n                                                \"title\": \"2.84V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_3\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_3\",\n                                                \"range\": null,\n                                                \"title\": \"2.98V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_2\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_2\",\n                                                \"range\": null,\n                                                \"title\": \"3.19V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_1\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_1\",\n                                                \"range\": null,\n                                                \"title\": \"3.30V\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"ESP_BROWNOUT_DET\",\n                                        \"help\": \"The brownout detector will reset the chip when the supply voltage is approximately\\nbelow this level. Note that there may be some variation of brownout voltage level\\nbetween each ESP3-S3 chip.\\n\\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\\n#of the brownout threshold levels.\",\n                                        \"id\": \"component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level\",\n                                        \"name\": \"ESP_BROWNOUT_DET_LVL_SEL\",\n                                        \"title\": \"Brownout voltage level\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"!IDF_ENV_FPGA\",\n                                \"help\": \"The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\\na specific value. If this happens, it will reset the chip in order to prevent unintended\\nbehaviour.\",\n                                \"id\": \"ESP_BROWNOUT_DET\",\n                                \"name\": \"ESP_BROWNOUT_DET\",\n                                \"range\": null,\n                                \"title\": \"Hardware brownout detect & reset\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_BROWNOUT_DET_LVL\",\n                                \"name\": \"ESP_BROWNOUT_DET_LVL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-brownout-detector\",\n                        \"title\": \"Brownout Detector\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This config allows to trigger an interrupt when brownout detected. Software restart will be done\\nat the end of the default callback.\\nTwo occasions need to restart the chip with interrupt so far.\\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\\n      So that we must restart from interrupt.\\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\\n     needs to be done in callback function of interrupt.\",\n                        \"id\": \"ESP_SYSTEM_BROWNOUT_INTR\",\n                        \"name\": \"ESP_SYSTEM_BROWNOUT_INTR\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-system-settings\",\n                \"title\": \"ESP System Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\\nneeds.\",\n                        \"id\": \"ESP_IPC_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_IPC_TASK_STACK_SIZE\",\n                        \"range\": [\n                            512,\n                            65536\n                        ],\n                        \"title\": \"Inter-Processor Call (IPC) task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!FREERTOS_UNICORE\",\n                        \"help\": \"If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.\",\n                        \"id\": \"ESP_IPC_USES_CALLERS_PRIORITY\",\n                        \"name\": \"ESP_IPC_USES_CALLERS_PRIORITY\",\n                        \"range\": null,\n                        \"title\": \"IPC runs at caller's priority\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\\ncontext of a High Priority Interrupt. The IPC ISR feature is itended for low latency execution of simple\\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\\ncallbacks must be written with particular restrictions (see \\\"IPC\\\" and \\\"High-Level Interrupt\\\" docs for more\\ndetails).\",\n                        \"id\": \"ESP_IPC_ISR_ENABLE\",\n                        \"name\": \"ESP_IPC_ISR_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-ipc-inter-processor-call-\",\n                \"title\": \"IPC (Inter-Processor Call)\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\\n\\nIDF has added an experimental port of this SMP kernel located in\\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\\n\\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\\ntheir implementation and features.\",\n                                \"id\": \"FREERTOS_SMP\",\n                                \"name\": \"FREERTOS_SMP\",\n                                \"range\": null,\n                                \"title\": \"Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\\nto start it on the first core. This is needed when e.g. another process needs complete control over the\\nsecond core.\",\n                                \"id\": \"FREERTOS_UNICORE\",\n                                \"name\": \"FREERTOS_UNICORE\",\n                                \"range\": null,\n                                \"title\": \"Run FreeRTOS only on first core\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\\ndetails).\",\n                                \"id\": \"FREERTOS_HZ\",\n                                \"name\": \"FREERTOS_HZ\",\n                                \"range\": [\n                                    1,\n                                    1000\n                                ],\n                                \"title\": \"configTICK_RATE_HZ\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_UNICORE && !FREERTOS_SMP\",\n                                \"help\": \"Enables port specific task selection method. This option can speed up the search of ready tasks\\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).\",\n                                \"id\": \"FREERTOS_OPTIMIZED_SCHEDULER\",\n                                \"name\": \"FREERTOS_OPTIMIZED_SCHEDULER\",\n                                \"range\": null,\n                                \"title\": \"configUSE_PORT_OPTIMISED_TASK_SELECTION\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_NONE\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No checking\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Check for stack overflows on each context switch by checking if the stack pointer is in a valid\\nrange. Quick but does not detect stack overflows that happened between context switches\\n(configCHECK_FOR_STACK_OVERFLOW = 1)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\",\n                                        \"range\": null,\n                                        \"title\": \"Check by stack pointer value (Method 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Places some magic bytes at the end of the stack area and on each context switch, check if these\\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\\n(configCHECK_FOR_STACK_OVERFLOW = 2)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\",\n                                        \"range\": null,\n                                        \"title\": \"Check using canary bytes (Method 2)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\\nmore details).\\n\\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\\nfunction will be provided by ESP-IDF.\",\n                                \"id\": \"component-config-freertos-kernel-configcheck_for_stack_overflow\",\n                                \"name\": \"FREERTOS_CHECK_STACKOVERFLOW\",\n                                \"title\": \"configCHECK_FOR_STACK_OVERFLOW\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the number of thread local storage pointers in each task (see\\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\\n\\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\\nthread-local-storage. Other indexes can be used for any desired purpose.\",\n                                \"id\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"name\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"range\": [\n                                    1,\n                                    256\n                                ],\n                                \"title\": \"configNUM_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\\n\\nNote:\\n\\n- ESP-IDF specifies stack sizes in bytes instead of words.\\n- The default size is enough for most use cases.\\n- The stack size may need to be increased above the default if the app installs idle or thread local\\n  storage cleanup hooks that use a lot of stack memory.\\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.\",\n                                \"id\": \"FREERTOS_IDLE_TASK_STACKSIZE\",\n                                \"name\": \"FREERTOS_IDLE_TASK_STACKSIZE\",\n                                \"range\": [\n                                    768,\n                                    32768\n                                ],\n                                \"title\": \"configMINIMAL_STACK_SIZE (Idle task stack size)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\\n  simultaneously.\",\n                                \"id\": \"FREERTOS_USE_IDLE_HOOK\",\n                                \"name\": \"FREERTOS_USE_IDLE_HOOK\",\n                                \"range\": null,\n                                \"title\": \"configUSE_IDLE_HOOK\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_SMP\",\n                                \"help\": \"Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\\ndetails).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationMinimalIdleHook( void );``\\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)\",\n                                \"id\": \"FREERTOS_USE_MINIMAL_IDLE_HOOK\",\n                                \"name\": \"FREERTOS_USE_MINIMAL_IDLE_HOOK\",\n                                \"range\": null,\n                                \"title\": \"Use FreeRTOS minimal idle hook\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationTickHook( void );``\\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\\n  simultaneously.\",\n                                \"id\": \"FREERTOS_USE_TICK_HOOK\",\n                                \"name\": \"FREERTOS_USE_TICK_HOOK\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TICK_HOOK\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\\nmore details).\\n\\nNote: For most uses, the default of 16 characters is sufficient.\",\n                                \"id\": \"FREERTOS_MAX_TASK_NAME_LEN\",\n                                \"name\": \"FREERTOS_MAX_TASK_NAME_LEN\",\n                                \"range\": [\n                                    1,\n                                    256\n                                ],\n                                \"title\": \"configMAX_TASK_NAME_LEN\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).\",\n                                \"id\": \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\",\n                                \"name\": \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\",\n                                \"range\": null,\n                                \"title\": \"configENABLE_BACKWARD_COMPATIBILITY\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).\",\n                                \"id\": \"FREERTOS_TIMER_TASK_PRIORITY\",\n                                \"name\": \"FREERTOS_TIMER_TASK_PRIORITY\",\n                                \"range\": [\n                                    1,\n                                    25\n                                ],\n                                \"title\": \"configTIMER_TASK_PRIORITY\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).\",\n                                \"id\": \"FREERTOS_TIMER_TASK_STACK_DEPTH\",\n                                \"name\": \"FREERTOS_TIMER_TASK_STACK_DEPTH\",\n                                \"range\": [\n                                    1536,\n                                    32768\n                                ],\n                                \"title\": \"configTIMER_TASK_STACK_DEPTH\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\\ndetails).\",\n                                \"id\": \"FREERTOS_TIMER_QUEUE_LENGTH\",\n                                \"name\": \"FREERTOS_TIMER_QUEUE_LENGTH\",\n                                \"range\": [\n                                    5,\n                                    20\n                                ],\n                                \"title\": \"configTIMER_QUEUE_LENGTH\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\\n\\nNote: A value of 0 will disable queue registry functionality\",\n                                \"id\": \"FREERTOS_QUEUE_REGISTRY_SIZE\",\n                                \"name\": \"FREERTOS_QUEUE_REGISTRY_SIZE\",\n                                \"range\": [\n                                    0,\n                                    20\n                                ],\n                                \"title\": \"configQUEUE_REGISTRY_SIZE\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the size of the task notification array of each task. When increasing this value, keep in\\nmind that this means additional memory for each and every task on the system.\\nHowever, task notifications in general are more light weight compared to alternatives\\nsuch as semaphores.\",\n                                \"id\": \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"name\": \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"range\": [\n                                    1,\n                                    32\n                                ],\n                                \"title\": \"configTASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                                \"help\": \"If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\\nis pinned to (0,1) or -1 if not pinned.\",\n                                                \"id\": \"FREERTOS_VTASKLIST_INCLUDE_COREID\",\n                                                \"name\": \"FREERTOS_VTASKLIST_INCLUDE_COREID\",\n                                                \"range\": null,\n                                                \"title\": \"Enable display of xCoreID in vTaskList\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                        \"help\": \"Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).\",\n                                        \"id\": \"FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"name\": \"FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"range\": null,\n                                        \"title\": \"configUSE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables additional structure members and functions to assist with execution visualization and tracing\\n(see configUSE_TRACE_FACILITY documentation for more details).\",\n                                \"id\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                \"name\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TRACE_FACILITY\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\\ndocumentation for more details).\\n\\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.\",\n                                \"id\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"name\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"range\": null,\n                                \"title\": \"configGENERATE_RUN_TIME_STATS\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                        \"help\": \"FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\\nthis value to improve scheduling efficiency\",\n                                        \"id\": \"FREERTOS_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"name\": \"FREERTOS_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"range\": null,\n                                        \"title\": \"configEXPECTED_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"PM_ENABLE\",\n                                \"help\": \"If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\\nwhen no tasks need to run for a number of ticks. This number can be set using\\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \\\"automatic light sleep\\\".\\n\\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\\n\\\"skip_unhandled_events\\\" option as true.\\n\\nIf disabled, automatic light sleep support will be disabled.\",\n                                \"id\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                \"name\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TICKLESS_IDLE\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-freertos-kernel\",\n                        \"title\": \"Kernel\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_DEFAULT || ESP_COREDUMP_ENABLE || ESP_GDBSTUB_ENABLED\",\n                                \"help\": \"If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\\nwrapper function will then log an error and abort the application. This option is also required for GDB\\nbacktraces and C++ exceptions to work correctly inside top-level task functions.\",\n                                \"id\": \"FREERTOS_TASK_FUNCTION_WRAPPER\",\n                                \"name\": \"FREERTOS_TASK_FUNCTION_WRAPPER\",\n                                \"range\": null,\n                                \"title\": \"Wrap task functions\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\\nless because the last one is overwritten as soon as a task switch happens.\\n\\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\\nthe size for the stack watchpoint in IDF is 32 bytes.\\n\\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\\ncheck methods.\\n\\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\\nesp-idf will panic on an unhandled debug exception.\",\n                                \"id\": \"FREERTOS_WATCHPOINT_END_OF_STACK\",\n                                \"name\": \"FREERTOS_WATCHPOINT_END_OF_STACK\",\n                                \"range\": null,\n                                \"title\": \"Enable stack overflow debug watchpoint\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0\",\n                                \"help\": \"ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\\noff to save space in the TCB memory.\",\n                                \"id\": \"FREERTOS_TLSP_DELETION_CALLBACKS\",\n                                \"name\": \"FREERTOS_TLSP_DELETION_CALLBACKS\",\n                                \"range\": null,\n                                \"title\": \"Enable thread local storage pointers deletion callbacks\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\\n\\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback\",\n                                \"id\": \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\",\n                                \"name\": \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\",\n                                \"range\": null,\n                                \"title\": \"Enable static task clean up hook\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_SMP\",\n                                \"help\": \"If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\\nwhich is currently holding the mutex.\",\n                                \"id\": \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\",\n                                \"name\": \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\",\n                                \"range\": null,\n                                \"title\": \"Check that mutex semaphore is given by owner task\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\\nhas its own stack, so the total size occupied will be twice this.\",\n                                \"id\": \"FREERTOS_ISR_STACKSIZE\",\n                                \"name\": \"FREERTOS_ISR_STACKSIZE\",\n                                \"range\": [\n                                    1536,\n                                    32768\n                                ],\n                                \"title\": \"ISR stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"If this option is enabled, interrupt stack frame will be modified to point to the code of the\\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\\nto the interrupt dispatching code.\",\n                                \"id\": \"FREERTOS_INTERRUPT_BACKTRACE\",\n                                \"name\": \"FREERTOS_INTERRUPT_BACKTRACE\",\n                                \"range\": null,\n                                \"title\": \"Enable backtrace from interrupt to task context\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\\nhigher level interrupts is still not permitted.\",\n                                \"id\": \"FREERTOS_FPU_IN_ISR\",\n                                \"name\": \"FREERTOS_FPU_IN_ISR\",\n                                \"range\": null,\n                                \"title\": \"Use float in Level 1 ISR\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_TICK_SUPPORT_CORETIMER\",\n                                \"name\": \"FREERTOS_TICK_SUPPORT_CORETIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_TICK_SUPPORT_SYSTIMER\",\n                                \"name\": \"FREERTOS_TICK_SUPPORT_SYSTIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_CORETIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use timer 0\",\n                                        \"id\": \"FREERTOS_CORETIMER_0\",\n                                        \"name\": \"FREERTOS_CORETIMER_0\",\n                                        \"range\": null,\n                                        \"title\": \"Timer 0 (int 6, level 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_CORETIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use timer 1\",\n                                        \"id\": \"FREERTOS_CORETIMER_1\",\n                                        \"name\": \"FREERTOS_CORETIMER_1\",\n                                        \"range\": null,\n                                        \"title\": \"Timer 1 (int 15, level 3)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_SYSTIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use systimer with the 1 interrupt priority.\",\n                                        \"id\": \"FREERTOS_CORETIMER_SYSTIMER_LVL1\",\n                                        \"name\": \"FREERTOS_CORETIMER_SYSTIMER_LVL1\",\n                                        \"range\": null,\n                                        \"title\": \"SYSTIMER 0 (level 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_SYSTIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use systimer with the 3 interrupt priority.\",\n                                        \"id\": \"FREERTOS_CORETIMER_SYSTIMER_LVL3\",\n                                        \"name\": \"FREERTOS_CORETIMER_SYSTIMER_LVL3\",\n                                        \"range\": null,\n                                        \"title\": \"SYSTIMER 0 (level 3)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\\nthis, with different interrupt priorities.\",\n                                \"id\": \"component-config-freertos-port-tick-timer-source-xtensa-only-\",\n                                \"name\": \"FREERTOS_CORETIMER\",\n                                \"title\": \"Tick timer source (Xtensa Only)\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_SYSTICK_USES_SYSTIMER\",\n                                \"name\": \"FREERTOS_SYSTICK_USES_SYSTIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_SYSTICK_USES_CCOUNT\",\n                                \"name\": \"FREERTOS_SYSTICK_USES_CCOUNT\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_RUN_TIME_STATS_CLK>\",\n                                        \"help\": \"ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\\napproximately 4290 seconds.\",\n                                        \"id\": \"FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER\",\n                                        \"name\": \"FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER\",\n                                        \"range\": null,\n                                        \"title\": \"Use ESP TIMER for run time stats\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_SYSTICK_USES_CCOUNT && <choice FREERTOS_RUN_TIME_STATS_CLK>\",\n                                        \"help\": \"CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.\",\n                                        \"id\": \"FREERTOS_RUN_TIME_STATS_USING_CPU_CLK\",\n                                        \"name\": \"FREERTOS_RUN_TIME_STATS_USING_CPU_CLK\",\n                                        \"range\": null,\n                                        \"title\": \"Use CPU Clock for run time stats\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"help\": \"Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\\nsource overflows.\",\n                                \"id\": \"component-config-freertos-port-choose-the-clock-source-for-run-time-stats\",\n                                \"name\": \"FREERTOS_RUN_TIME_STATS_CLK\",\n                                \"title\": \"Choose the clock source for run time stats\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\\nThis saves up to 8KB of IRAM depending on which functions are used.\",\n                                \"id\": \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"name\": \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Place FreeRTOS functions into Flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_ENABLE_TASK_SNAPSHOT && !ESP_PANIC_HANDLER_IRAM\",\n                                \"help\": \"When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll,\\nwill be placed in flash. Note that if enabled, these functions cannot be called when cache is disabled.\",\n                                \"id\": \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\",\n                                \"name\": \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Place task snapshot functions into flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure\",\n                                \"id\": \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\",\n                                \"name\": \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\",\n                                \"range\": null,\n                                \"title\": \"Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll, are\\ncompiled and linked. Task snapshots are used by Task Watchdog (TWDT), GDB Stub and Core dump.\",\n                                \"id\": \"FREERTOS_ENABLE_TASK_SNAPSHOT\",\n                                \"name\": \"FREERTOS_ENABLE_TASK_SNAPSHOT\",\n                                \"range\": null,\n                                \"title\": \"Enable task snapshot functions\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-freertos-port\",\n                        \"title\": \"Port\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"FREERTOS_NO_AFFINITY\",\n                        \"name\": \"FREERTOS_NO_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"FREERTOS_SUPPORT_STATIC_ALLOCATION\",\n                        \"name\": \"FREERTOS_SUPPORT_STATIC_ALLOCATION\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE\",\n                        \"id\": \"FREERTOS_DEBUG_OCDAWARE\",\n                        \"name\": \"FREERTOS_DEBUG_OCDAWARE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-freertos\",\n                \"title\": \"FreeRTOS\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_EQUALS_SYSTEM\",\n                                \"name\": \"HAL_ASSERTION_EQUALS_SYSTEM\",\n                                \"range\": null,\n                                \"title\": \"Same as system assertion level\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_DISABLE\",\n                                \"name\": \"HAL_ASSERTION_DISABLE\",\n                                \"range\": null,\n                                \"title\": \"Disabled\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_SILENT\",\n                                \"name\": \"HAL_ASSERTION_SILENT\",\n                                \"range\": null,\n                                \"title\": \"Silent\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_ENABLE\",\n                                \"name\": \"HAL_ASSERTION_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Enabled\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Set the assert behavior / level for HAL component.\\nHAL component assert level can be set separately,\\nbut the level can't exceed the system assertion level.\\ne.g. If the system assertion is disabled, then the HAL\\nassertion can't be enabled either. If the system assertion\\nis enable, then the HAL assertion can still be disabled\\nby this Kconfig option.\",\n                        \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level\",\n                        \"name\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"title\": \"Default HAL assertion level\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"name\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_NONE\",\n                                \"name\": \"HAL_LOG_LEVEL_NONE\",\n                                \"range\": null,\n                                \"title\": \"No output\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_ERROR\",\n                                \"name\": \"HAL_LOG_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_WARN\",\n                                \"name\": \"HAL_LOG_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_INFO\",\n                                \"name\": \"HAL_LOG_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_DEBUG\",\n                                \"name\": \"HAL_LOG_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_VERBOSE\",\n                                \"name\": \"HAL_LOG_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE\",\n                        \"help\": \"Specify how much output to see in HAL logs.\",\n                        \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity\",\n                        \"name\": \"HAL_LOG_LEVEL\",\n                        \"title\": \"HAL layer log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"HAL_LOG_LEVEL\",\n                        \"name\": \"HAL_LOG_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_HAL_SYSTIMER\",\n                        \"help\": \"Enable this flag to use HAL functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM,\\nbut you will lose the possibility to debug this module, and some new\\nfeatures will be added and bugs will be fixed in the IDF source\\nbut cannot be synced to ROM.\",\n                        \"id\": \"HAL_SYSTIMER_USE_ROM_IMPL\",\n                        \"name\": \"HAL_SYSTIMER_USE_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use ROM implementation of SysTimer HAL driver\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_HAL_WDT\",\n                        \"help\": \"Enable this flag to use HAL functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM,\\nbut you will lose the possibility to debug this module, and some new\\nfeatures will be added and bugs will be fixed in the IDF source\\nbut cannot be synced to ROM.\",\n                        \"id\": \"HAL_WDT_USE_ROM_IMPL\",\n                        \"name\": \"HAL_WDT_USE_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use ROM implementation of WDT HAL driver\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPI_MASTER_ISR_IN_IRAM\",\n                        \"help\": \"Enable this option to place SPI master hal layer functions into IRAM.\",\n                        \"id\": \"HAL_SPI_MASTER_FUNC_IN_IRAM\",\n                        \"name\": \"HAL_SPI_MASTER_FUNC_IN_IRAM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPI_SLAVE_ISR_IN_IRAM\",\n                        \"help\": \"Enable this option to place SPI slave hal layer functions into IRAM.\",\n                        \"id\": \"HAL_SPI_SLAVE_FUNC_IN_IRAM\",\n                        \"name\": \"HAL_SPI_SLAVE_FUNC_IN_IRAM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll-\",\n                \"title\": \"Hardware Abstraction Layer (HAL) and Low Level (LL)\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_NONE\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_NONE\",\n                                \"range\": null,\n                                \"title\": \"No output\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_ERROR\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_WARN\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_INFO\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_DEBUG\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_VERBOSE\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Specify how much output to see in logs by default.\\nYou can set lower verbosity level at runtime using\\nesp_log_level_set function.\\n\\nBy default, this setting limits which log statements\\nare compiled into the program. For example, selecting\\n\\\"Warning\\\" would mean that changing log level to \\\"Debug\\\"\\nat runtime will not be possible. To allow increasing log\\nlevel above the default at runtime, see the next option.\",\n                        \"id\": \"component-config-log-output-default-log-verbosity\",\n                        \"name\": \"LOG_DEFAULT_LEVEL\",\n                        \"title\": \"Default log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"LOG_DEFAULT_LEVEL\",\n                        \"name\": \"LOG_DEFAULT_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_EQUALS_DEFAULT\",\n                                \"name\": \"LOG_MAXIMUM_EQUALS_DEFAULT\",\n                                \"range\": null,\n                                \"title\": \"Same as default\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 1 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_ERROR\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 2 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_WARN\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 3 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_INFO\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 4 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_DEBUG\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 5 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_VERBOSE\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This config option sets the highest log verbosity that it's possible to select\\nat runtime by calling esp_log_level_set(). This level may be higher than\\nthe default verbosity level which is set when the app starts up.\\n\\nThis can be used enable debugging output only at a critical point, for a particular\\ntag, or to minimize startup time but then enable more logs once the firmware has\\nloaded.\\n\\nNote that increasing the maximum available log level will increase the firmware\\nbinary size.\\n\\nThis option only applies to logging from the app, the bootloader log level is\\nfixed at compile time to the separate \\\"Bootloader log verbosity\\\" setting.\",\n                        \"id\": \"component-config-log-output-maximum-log-verbosity\",\n                        \"name\": \"LOG_MAXIMUM_LEVEL\",\n                        \"title\": \"Maximum log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"LOG_MAXIMUM_LEVEL\",\n                        \"name\": \"LOG_MAXIMUM_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable ANSI terminal color codes in bootloader output.\\n\\nIn order to view these, your terminal program must support ANSI color codes.\",\n                        \"id\": \"LOG_COLORS\",\n                        \"name\": \"LOG_COLORS\",\n                        \"range\": null,\n                        \"title\": \"Use ANSI terminal colors in log output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_TIMESTAMP_SOURCE>\",\n                                \"help\": null,\n                                \"id\": \"LOG_TIMESTAMP_SOURCE_RTOS\",\n                                \"name\": \"LOG_TIMESTAMP_SOURCE_RTOS\",\n                                \"range\": null,\n                                \"title\": \"Milliseconds Since Boot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_TIMESTAMP_SOURCE>\",\n                                \"help\": null,\n                                \"id\": \"LOG_TIMESTAMP_SOURCE_SYSTEM\",\n                                \"name\": \"LOG_TIMESTAMP_SOURCE_SYSTEM\",\n                                \"range\": null,\n                                \"title\": \"System Time\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Choose what sort of timestamp is displayed in the log output:\\n\\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\\n  by the tick period. This time will reset after a software reboot.\\n  e.g. (90000)\\n\\n- System time is taken from POSIX time functions which use the chip's\\n  RTC and high resoultion timers to maintain an accurate time. The system time is\\n  initialized to 0 on startup, it can be set with an SNTP sync, or with\\n  POSIX time functions. This time will not reset after a software reboot.\\n  e.g. (00:01:30.000)\\n\\n- NOTE: Currently this will not get used in logging from binary blobs\\n  (i.e WiFi & Bluetooth libraries), these will always print\\n  milliseconds since boot.\",\n                        \"id\": \"component-config-log-output-log-timestamps\",\n                        \"name\": \"LOG_TIMESTAMP_SOURCE\",\n                        \"title\": \"Log Timestamps\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-log-output\",\n                \"title\": \"Log output\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_CRLF\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_CRLF\",\n                                \"range\": null,\n                                \"title\": \"CRLF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_LF\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_LF\",\n                                \"range\": null,\n                                \"title\": \"LF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_CR\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_CR\",\n                                \"range\": null,\n                                \"title\": \"CR\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This option allows configuring the desired line endings sent to UART\\nwhen a newline ('\\\\n', LF) appears on stdout.\\nThree options are possible:\\n\\nCRLF: whenever LF is encountered, prepend it with CR\\n\\nLF: no modification is applied, stdout is sent as is\\n\\nCR: each occurence of LF is replaced with CR\\n\\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).\",\n                        \"id\": \"component-config-newlib-line-ending-for-uart-output\",\n                        \"name\": \"NEWLIB_STDOUT_LINE_ENDING\",\n                        \"title\": \"Line ending for UART output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_CRLF\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_CRLF\",\n                                \"range\": null,\n                                \"title\": \"CRLF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_LF\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_LF\",\n                                \"range\": null,\n                                \"title\": \"LF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_CR\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_CR\",\n                                \"range\": null,\n                                \"title\": \"CR\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This option allows configuring which input sequence on UART produces\\na newline ('\\\\n', LF) on stdin.\\nThree options are possible:\\n\\nCRLF: CRLF is converted to LF\\n\\nLF: no modification is applied, input is sent to stdin as is\\n\\nCR: each occurence of CR is replaced with LF\\n\\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).\",\n                        \"id\": \"component-config-newlib-line-ending-for-uart-input\",\n                        \"name\": \"NEWLIB_STDIN_LINE_ENDING\",\n                        \"title\": \"Line ending for UART input\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"In most chips the ROM contains parts of newlib C library, including printf/scanf family\\nof functions. These functions have been compiled with so-called \\\"nano\\\"\\nformatting option. This option doesn't support 64-bit integer formats and C99\\nfeatures, such as positional arguments.\\n\\nFor more details about \\\"nano\\\" formatting option, please see newlib readme file,\\nsearch for '--enable-newlib-nano-formatted-io':\\nhttps://sourceware.org/newlib/README\\n\\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\\nwill use functions available in ROM, reducing the application binary size.\\nFunctions available in ROM run faster than functions which run from flash. Functions available\\nin ROM can also run when flash instruction cache is disabled.\\n\\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\\nthe nano versions and in this building with newlib nano might actually increase the size of\\nthe binary. Which functions are present in ROM can be seen from ROM caps:\\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\\n\\nIf you need 64-bit integer formatting support or C99 features, keep this\\noption disabled.\",\n                        \"id\": \"NEWLIB_NANO_FORMAT\",\n                        \"name\": \"NEWLIB_NANO_FORMAT\",\n                        \"range\": null,\n                        \"title\": \"Enable 'nano' formatting options for printf/scanf family\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\",\n                                \"range\": null,\n                                \"title\": \"RTC and high-resolution timer\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_RTC\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_RTC\",\n                                \"range\": null,\n                                \"title\": \"RTC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_HRT\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_HRT\",\n                                \"range\": null,\n                                \"title\": \"High-resolution timer\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_NONE\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This setting defines which hardware timers are used to\\nimplement 'gettimeofday' and 'time' functions in C library.\\n\\n- If both high-resolution (systimer for all targets except ESP32)\\n    and RTC timers are used, timekeeping will continue in deep sleep.\\n    Time will be reported at 1 microsecond resolution.\\n    This is the default, and the recommended option.\\n- If only high-resolution timer (systimer) is used, gettimeofday will\\n    provide time at microsecond resolution.\\n    Time will not be preserved when going into deep sleep mode.\\n- If only RTC timer is used, timekeeping will continue in\\n    deep sleep, but time will be measured at 6.(6) microsecond\\n    resolution. Also the gettimeofday function itself may take\\n    longer to run.\\n- If no timers are used, gettimeofday and time functions\\n    return -1 and set errno to ENOSYS.\\n- When RTC is used for timekeeping, two RTC_STORE registers are\\n    used to keep time in deep sleep mode.\",\n                        \"id\": \"component-config-newlib-timers-used-for-gettimeofday-function\",\n                        \"name\": \"NEWLIB_TIME_SYSCALL\",\n                        \"title\": \"Timers used for gettimeofday function\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-newlib\",\n                \"title\": \"Newlib\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_16KB\",\n                                \"name\": \"MMU_PAGE_SIZE_16KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_32KB\",\n                                \"name\": \"MMU_PAGE_SIZE_32KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_64KB\",\n                                \"name\": \"MMU_PAGE_SIZE_64KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_MODE\",\n                                \"name\": \"MMU_PAGE_MODE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE\",\n                                \"name\": \"MMU_PAGE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-soc-settings-mmu-config\",\n                        \"title\": \"MMU Config\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-soc-settings\",\n                \"title\": \"SoC Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If this option is enabled, if SPI flash write verification fails then a log error line\\nwill be written with the address, expected & actual values. This can be useful when\\ndebugging hardware SPI flash problems.\",\n                                \"id\": \"SPI_FLASH_LOG_FAILED_WRITE\",\n                                \"name\": \"SPI_FLASH_LOG_FAILED_WRITE\",\n                                \"range\": null,\n                                \"title\": \"Log errors if verification fails\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\\nones will log a warning. Such writes will not result in the requested data appearing identically\\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\\nAfter erasing, individual bits can only be written from one to zero.\\n\\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\\nSuch software will log spurious warnings if this option is enabled.\",\n                                \"id\": \"SPI_FLASH_WARN_SETTING_ZERO_TO_ONE\",\n                                \"name\": \"SPI_FLASH_WARN_SETTING_ZERO_TO_ONE\",\n                                \"range\": null,\n                                \"title\": \"Log warning if writing zero bits to ones\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"If this option is enabled, any time SPI flash is written then the data will be read\\nback and verified. This can catch hardware problems with SPI flash, or flash which\\nwas not erased before verification.\",\n                        \"id\": \"SPI_FLASH_VERIFY_WRITE\",\n                        \"name\": \"SPI_FLASH_VERIFY_WRITE\",\n                        \"range\": null,\n                        \"title\": \"Verify SPI flash writes\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option enables the following APIs:\\n\\n- esp_flash_reset_counters\\n- esp_flash_dump_counters\\n- esp_flash_get_counters\\n\\nThese APIs may be used to collect performance data for spi_flash APIs\\nand to help understand behaviour of libraries which use SPI flash.\",\n                        \"id\": \"SPI_FLASH_ENABLE_COUNTERS\",\n                        \"name\": \"SPI_FLASH_ENABLE_COUNTERS\",\n                        \"range\": null,\n                        \"title\": \"Enable operation counters\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Enable this flag to use patched versions of SPI flash ROM driver functions.\\nThis option should be enabled, if any one of the following is true: (1) need to write\\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\\nSPI flash chip is manufactured by ISSI.\",\n                        \"id\": \"SPI_FLASH_ROM_DRIVER_PATCH\",\n                        \"name\": \"SPI_FLASH_ROM_DRIVER_PATCH\",\n                        \"range\": null,\n                        \"title\": \"Enable SPI flash ROM driver patched functions\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_SPI_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nBut you can use all of our flash features.\\n\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM.\\nBut you may miss out on some flash features and support for new flash chips.\\n\\nCurrently the ROM cannot support the following features:\\n\\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)\",\n                        \"id\": \"SPI_FLASH_ROM_IMPL\",\n                        \"name\": \"SPI_FLASH_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use esp_flash implementation in ROM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\",\n                                \"range\": null,\n                                \"title\": \"Aborts\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_FAILS\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_FAILS\",\n                                \"range\": null,\n                                \"title\": \"Fails\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\",\n                                \"range\": null,\n                                \"title\": \"Allowed\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"SPI flash APIs can optionally abort or return a failure code\\nif erasing or writing addresses that fall at the beginning\\nof flash (covering the bootloader and partition table) or that\\noverlap the app partition that contains the running app.\\n\\nIt is not recommended to ever write to these regions from an IDF app,\\nand this check prevents logic errors or corrupted firmware memory from\\ndamaging these regions.\\n\\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\\nROM functions. These functions should not be called directly from IDF\\napplications.\",\n                        \"id\": \"component-config-spi-flash-driver-writing-to-dangerous-flash-regions\",\n                        \"name\": \"SPI_FLASH_DANGEROUS_WRITE\",\n                        \"title\": \"Writing to dangerous flash regions\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Each SPI bus needs a lock for arbitration among devices. This allows multiple\\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\\nmain flash chip.\\n\\nIf you only need to use esp_flash driver to access the main flash chip, disable\\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\\nare needed to attach to SPI1 bus, enable this option.\",\n                        \"id\": \"SPI_FLASH_SHARE_SPI1_BUS\",\n                        \"name\": \"SPI_FLASH_SHARE_SPI1_BUS\",\n                        \"range\": null,\n                        \"title\": \"Support other devices attached to SPI1 bus\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Some flash chips can have very high \\\"max\\\" erase times, especially for block erase (32KB or 64KB).\\nThis option allows to bypass \\\"block erase\\\" and always do sector erase commands.\\nThis will be much slower overall in most cases, but improves latency for other code to run.\",\n                        \"id\": \"SPI_FLASH_BYPASS_BLOCK_ERASE\",\n                        \"name\": \"SPI_FLASH_BYPASS_BLOCK_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Bypass a block erase and always do sector erase\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If a duration of one erase command is large\\nthen it will yield CPUs after finishing a current command.\",\n                                \"id\": \"SPI_FLASH_ERASE_YIELD_DURATION_MS\",\n                                \"name\": \"SPI_FLASH_ERASE_YIELD_DURATION_MS\",\n                                \"range\": null,\n                                \"title\": \"Duration of erasing to yield CPUs (ms)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Defines how many ticks will be before returning to continue a erasing.\",\n                                \"id\": \"SPI_FLASH_ERASE_YIELD_TICKS\",\n                                \"name\": \"SPI_FLASH_ERASE_YIELD_TICKS\",\n                                \"range\": null,\n                                \"title\": \"CPU release time (tick) for an erase operation\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This allows to yield the CPUs between erase commands.\\nPrevents starvation of other tasks.\\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\\nwatchdog timeout.\\nFor more information, please check `SPI Flash API` reference documenation\\nunder section `OS Function`.\",\n                        \"id\": \"SPI_FLASH_YIELD_DURING_ERASE\",\n                        \"name\": \"SPI_FLASH_YIELD_DURING_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Enables yield operation during flash erase\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32C3 && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is default n before ESP32-C3, because it needs bootloader support.\\n\\nCAUTION: If you want to OTA to an app with this feature turned on, please make\\nsure the bootloader has the support for it. (later than IDF v4.3)\\n\\nAuto-suspend feature only supported by XMC chip.\\nIf you are using an official module, please contact Espressif Business support.\\nAlso reading auto suspend part in `SPI Flash API` document before you enable this function.\",\n                        \"id\": \"SPI_FLASH_AUTO_SUSPEND\",\n                        \"name\": \"SPI_FLASH_AUTO_SUSPEND\",\n                        \"range\": null,\n                        \"title\": \"Auto suspend long erase/write operations (READ DOCS FIRST)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Flash write is broken down in terms of multiple (smaller) write operations.\\nThis configuration options helps to set individual write chunk size, smaller\\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\\ndisabled for shorter duration.\",\n                        \"id\": \"SPI_FLASH_WRITE_CHUNK_SIZE\",\n                        \"name\": \"SPI_FLASH_WRITE_CHUNK_SIZE\",\n                        \"range\": [\n                            256,\n                            8192\n                        ],\n                        \"title\": \"Flash write chunk size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"SPI Flash driver uses the flash size configured in bootloader header by default.\\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\\nthe app header if the size in the bootloader header is incorrect.\",\n                        \"id\": \"SPI_FLASH_SIZE_OVERRIDE\",\n                        \"name\": \"SPI_FLASH_SIZE_OVERRIDE\",\n                        \"range\": null,\n                        \"title\": \"Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.\",\n                        \"id\": \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\",\n                        \"name\": \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\",\n                        \"range\": null,\n                        \"title\": \"Flash timeout checkout disabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option allows the chip driver list to be customized, instead of using the default list provided by\\nESP-IDF.\\n\\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\\n`default_registered_chips` structure must be provided by the user.\\n\\nSee example: custom_chip_driver under examples/storage for more details.\",\n                        \"id\": \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\",\n                        \"name\": \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\",\n                        \"range\": null,\n                        \"title\": \"Override default chip driver list\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"When this option is selected, the patch will be enabled for XMC.\\nFollow the recommended flow by XMC for better stability.\\n\\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.\",\n                                \"id\": \"SPI_FLASH_BROWNOUT_RESET_XMC\",\n                                \"name\": \"SPI_FLASH_BROWNOUT_RESET_XMC\",\n                                \"range\": null,\n                                \"title\": \"Enable sending reset when brownout for XMC flash chips\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"When brownout happens during flash erase/write operations,\\nsend reset command to stop the flash operations to improve stability.\",\n                                \"id\": \"SPI_FLASH_BROWNOUT_RESET\",\n                                \"name\": \"SPI_FLASH_BROWNOUT_RESET\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"id\": \"component-config-spi-flash-driver-spi-flash-behavior-when-brownout\",\n                        \"title\": \"SPI Flash behavior when brownout\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_XMC_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_XMC_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_GD_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_GD_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_TH_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_TH_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of ISSI chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_ISSI_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_ISSI_CHIP\",\n                                \"range\": null,\n                                \"title\": \"ISSI\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of MXIC chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_MXIC_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_MXIC_CHIP\",\n                                \"range\": null,\n                                \"title\": \"MXIC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\\nmode.\\n\\nThis adds support for variant chips, however will extend detecting time and image\\nsize. Note that the default chip driver supports the GD chips with product ID\\n60H.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_GD_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_GD_CHIP\",\n                                \"range\": null,\n                                \"title\": \"GigaDevice\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of Winbond chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_WINBOND_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_WINBOND_CHIP\",\n                                \"range\": null,\n                                \"title\": \"Winbond\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of BOYA chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_BOYA_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_BOYA_CHIP\",\n                                \"range\": null,\n                                \"title\": \"BOYA\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of TH chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_TH_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_TH_CHIP\",\n                                \"range\": null,\n                                \"title\": \"TH\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\",\n                                \"range\": null,\n                                \"title\": \"mxic (opi)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"id\": \"component-config-spi-flash-driver-auto-detect-flash-chips\",\n                        \"title\": \"Auto-detect flash chips\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option enables flash read/write operations to encrypted partition/s. This option\\nis kept enabled irrespective of state of flash encryption feature. However, in case\\napplication is not using flash encryption feature and is in need of some additional\\nmemory from IRAM region (~1KB) then this config can be disabled.\",\n                        \"id\": \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\",\n                        \"name\": \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\",\n                        \"range\": null,\n                        \"title\": \"Enable encrypted partition read/write operations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is invisible, and will be selected automatically\\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.\",\n                        \"id\": \"SPI_FLASH_HPM_ENABLE\",\n                        \"name\": \"SPI_FLASH_HPM_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"id\": \"component-config-spi-flash-driver\",\n                \"title\": \"SPI Flash driver\",\n                \"type\": \"menu\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"component-config\",\n        \"title\": \"Component config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": \"By enabling this option, ESP-IDF experimental feature options will be visible.\\n\\nNote you should still enable a certain experimental feature option to use it, and you\\nshould read the corresponding risk warning and known issue list carefully.\",\n        \"id\": \"IDF_EXPERIMENTAL_FEATURES\",\n        \"name\": \"IDF_EXPERIMENTAL_FEATURES\",\n        \"range\": null,\n        \"title\": \"Make experimental features visible\",\n        \"type\": \"bool\"\n    }\n]"
  },
  {
    "path": "Code/build/bootloader/config/sdkconfig.cmake",
    "content": "#\n# Automatically generated file. DO NOT EDIT.\n# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file\n#\nset(CONFIG_SOC_MPU_MIN_REGION_SIZE \"0x20000000\")\nset(CONFIG_SOC_MPU_REGIONS_MAX_NUM \"8\")\nset(CONFIG_SOC_ADC_SUPPORTED \"y\")\nset(CONFIG_SOC_UART_SUPPORTED \"y\")\nset(CONFIG_SOC_PCNT_SUPPORTED \"y\")\nset(CONFIG_SOC_WIFI_SUPPORTED \"y\")\nset(CONFIG_SOC_TWAI_SUPPORTED \"y\")\nset(CONFIG_SOC_GDMA_SUPPORTED \"y\")\nset(CONFIG_SOC_GPTIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_LCDCAM_SUPPORTED \"y\")\nset(CONFIG_SOC_MCPWM_SUPPORTED \"y\")\nset(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_SUPPORT_WRAP \"y\")\nset(CONFIG_SOC_ULP_SUPPORTED \"y\")\nset(CONFIG_SOC_ULP_FSM_SUPPORTED \"y\")\nset(CONFIG_SOC_RISCV_COPROC_SUPPORTED \"y\")\nset(CONFIG_SOC_BT_SUPPORTED \"y\")\nset(CONFIG_SOC_USB_OTG_SUPPORTED \"y\")\nset(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED \"y\")\nset(CONFIG_SOC_CCOMP_TIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED \"y\")\nset(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE \"y\")\nset(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD \"y\")\nset(CONFIG_SOC_SDMMC_HOST_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_PSRAM_DMA_CAPABLE \"y\")\nset(CONFIG_SOC_XT_WDT_SUPPORTED \"y\")\nset(CONFIG_SOC_I2S_SUPPORTED \"y\")\nset(CONFIG_SOC_RMT_SUPPORTED \"y\")\nset(CONFIG_SOC_SDM_SUPPORTED \"y\")\nset(CONFIG_SOC_GPSPI_SUPPORTED \"y\")\nset(CONFIG_SOC_LEDC_SUPPORTED \"y\")\nset(CONFIG_SOC_I2C_SUPPORTED \"y\")\nset(CONFIG_SOC_SYSTIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_SUPPORT_COEXISTENCE \"y\")\nset(CONFIG_SOC_TEMP_SENSOR_SUPPORTED \"y\")\nset(CONFIG_SOC_AES_SUPPORTED \"y\")\nset(CONFIG_SOC_MPI_SUPPORTED \"y\")\nset(CONFIG_SOC_SHA_SUPPORTED \"y\")\nset(CONFIG_SOC_HMAC_SUPPORTED \"y\")\nset(CONFIG_SOC_DIG_SIGN_SUPPORTED \"y\")\nset(CONFIG_SOC_FLASH_ENC_SUPPORTED \"y\")\nset(CONFIG_SOC_SECURE_BOOT_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMPROT_SUPPORTED \"y\")\nset(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED \"y\")\nset(CONFIG_SOC_BOD_SUPPORTED \"y\")\nset(CONFIG_SOC_XTAL_SUPPORT_40M \"y\")\nset(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG \"y\")\nset(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_ARBITER_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_MONITOR_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DMA_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_PERIPH_NUM \"2\")\nset(CONFIG_SOC_ADC_MAX_CHANNEL_NUM \"10\")\nset(CONFIG_SOC_ADC_ATTEN_NUM \"4\")\nset(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM \"2\")\nset(CONFIG_SOC_ADC_PATT_LEN_MAX \"24\")\nset(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_DIGI_RESULT_BYTES \"4\")\nset(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV \"4\")\nset(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM \"2\")\nset(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH \"83333\")\nset(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW \"611\")\nset(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED \"y\")\nset(CONFIG_SOC_APB_BACKUP_DMA \"y\")\nset(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_FREEZE_SUPPORTED \"y\")\nset(CONFIG_SOC_CPU_CORES_NUM \"2\")\nset(CONFIG_SOC_CPU_INTR_NUM \"32\")\nset(CONFIG_SOC_CPU_HAS_FPU \"y\")\nset(CONFIG_SOC_CPU_BREAKPOINTS_NUM \"2\")\nset(CONFIG_SOC_CPU_WATCHPOINTS_NUM \"2\")\nset(CONFIG_SOC_CPU_WATCHPOINT_SIZE \"64\")\nset(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN \"4096\")\nset(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH \"16\")\nset(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US \"1100\")\nset(CONFIG_SOC_GDMA_GROUPS \"y\")\nset(CONFIG_SOC_GDMA_PAIRS_PER_GROUP \"5\")\nset(CONFIG_SOC_GDMA_SUPPORT_PSRAM \"y\")\nset(CONFIG_SOC_GPIO_PORT \"1\")\nset(CONFIG_SOC_GPIO_PIN_COUNT \"49\")\nset(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER \"y\")\nset(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT \"y\")\nset(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD \"y\")\nset(CONFIG_SOC_GPIO_VALID_GPIO_MASK \"0x1ffffffffffff\")\nset(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK \"0x1fffffc000000\")\nset(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM \"8\")\nset(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM \"8\")\nset(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE \"y\")\nset(CONFIG_SOC_I2C_NUM \"2\")\nset(CONFIG_SOC_I2C_FIFO_LEN \"32\")\nset(CONFIG_SOC_I2C_CMD_REG_NUM \"8\")\nset(CONFIG_SOC_I2C_SUPPORT_SLAVE \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_RTC \"y\")\nset(CONFIG_SOC_I2S_NUM \"2\")\nset(CONFIG_SOC_I2S_HW_VERSION_2 \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_XTAL \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PCM \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM_TX \"y\")\nset(CONFIG_SOC_I2S_PDM_MAX_TX_LINES \"2\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM_RX \"y\")\nset(CONFIG_SOC_I2S_PDM_MAX_RX_LINES \"4\")\nset(CONFIG_SOC_I2S_SUPPORTS_TDM \"y\")\nset(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK \"y\")\nset(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK \"y\")\nset(CONFIG_SOC_LEDC_CHANNEL_NUM \"8\")\nset(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH \"14\")\nset(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP \"y\")\nset(CONFIG_SOC_MCPWM_GROUPS \"2\")\nset(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP \"y\")\nset(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER \"3\")\nset(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE \"y\")\nset(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM \"1\")\nset(CONFIG_SOC_MMU_PERIPH_NUM \"1\")\nset(CONFIG_SOC_PCNT_GROUPS \"1\")\nset(CONFIG_SOC_PCNT_UNITS_PER_GROUP \"4\")\nset(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT \"2\")\nset(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT \"2\")\nset(CONFIG_SOC_RMT_GROUPS \"1\")\nset(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP \"4\")\nset(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP \"4\")\nset(CONFIG_SOC_RMT_CHANNELS_PER_GROUP \"8\")\nset(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL \"48\")\nset(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_RC_FAST \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_APB \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_LCD_I80_SUPPORTED \"y\")\nset(CONFIG_SOC_LCD_RGB_SUPPORTED \"y\")\nset(CONFIG_SOC_LCD_I80_BUSES \"1\")\nset(CONFIG_SOC_LCD_RGB_PANELS \"1\")\nset(CONFIG_SOC_LCD_I80_BUS_WIDTH \"16\")\nset(CONFIG_SOC_LCD_RGB_DATA_WIDTH \"16\")\nset(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV \"y\")\nset(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH \"128\")\nset(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM \"549\")\nset(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH \"128\")\nset(CONFIG_SOC_RTCIO_PIN_COUNT \"22\")\nset(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED \"y\")\nset(CONFIG_SOC_RTCIO_HOLD_SUPPORTED \"y\")\nset(CONFIG_SOC_RTCIO_WAKE_SUPPORTED \"y\")\nset(CONFIG_SOC_SDM_GROUPS \"y\")\nset(CONFIG_SOC_SDM_CHANNELS_PER_GROUP \"8\")\nset(CONFIG_SOC_SDM_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_SPI_PERIPH_NUM \"3\")\nset(CONFIG_SOC_SPI_MAX_CS_NUM \"6\")\nset(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE \"64\")\nset(CONFIG_SOC_SPI_SUPPORT_DDRCLK \"y\")\nset(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CD_SIG \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CLK_APB \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL \"y\")\nset(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT \"y\")\nset(CONFIG_SOC_MEMSPI_IS_INDEPENDENT \"y\")\nset(CONFIG_SOC_SPI_MAX_PRE_DIVIDER \"16\")\nset(CONFIG_SOC_SPI_SUPPORT_OCT \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_120M \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED \"y\")\nset(CONFIG_SOC_SPIRAM_SUPPORTED \"y\")\nset(CONFIG_SOC_SPIRAM_XIP_SUPPORTED \"y\")\nset(CONFIG_SOC_SYSTIMER_COUNTER_NUM \"2\")\nset(CONFIG_SOC_SYSTIMER_ALARM_NUM \"3\")\nset(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO \"32\")\nset(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI \"20\")\nset(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER \"y\")\nset(CONFIG_SOC_SYSTIMER_INT_LEVEL \"y\")\nset(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE \"y\")\nset(CONFIG_SOC_TIMER_GROUPS \"2\")\nset(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP \"2\")\nset(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH \"54\")\nset(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB \"y\")\nset(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS \"4\")\nset(CONFIG_SOC_TOUCH_VERSION_2 \"y\")\nset(CONFIG_SOC_TOUCH_SENSOR_NUM \"15\")\nset(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM \"3\")\nset(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED \"y\")\nset(CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX \"0x1fffff\")\nset(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX \"0xff\")\nset(CONFIG_SOC_TWAI_CONTROLLER_NUM \"1\")\nset(CONFIG_SOC_TWAI_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_TWAI_BRP_MIN \"2\")\nset(CONFIG_SOC_TWAI_BRP_MAX \"16384\")\nset(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS \"y\")\nset(CONFIG_SOC_UART_NUM \"3\")\nset(CONFIG_SOC_UART_FIFO_LEN \"128\")\nset(CONFIG_SOC_UART_BITRATE_MAX \"5000000\")\nset(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND \"y\")\nset(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT \"y\")\nset(CONFIG_SOC_UART_SUPPORT_APB_CLK \"y\")\nset(CONFIG_SOC_UART_SUPPORT_RTC_CLK \"y\")\nset(CONFIG_SOC_UART_SUPPORT_XTAL_CLK \"y\")\nset(CONFIG_SOC_UART_REQUIRE_CORE_RESET \"y\")\nset(CONFIG_SOC_USB_PERIPH_NUM \"y\")\nset(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE \"3968\")\nset(CONFIG_SOC_SHA_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_RESUME \"y\")\nset(CONFIG_SOC_SHA_GDMA \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA1 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA224 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA256 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA384 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_224 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_256 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_T \"y\")\nset(CONFIG_SOC_RSA_MAX_BIT_LEN \"4096\")\nset(CONFIG_SOC_AES_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_AES_GDMA \"y\")\nset(CONFIG_SOC_AES_SUPPORT_AES_128 \"y\")\nset(CONFIG_SOC_AES_SUPPORT_AES_256 \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_CPU_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_MODEM_PD \"y\")\nset(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED \"y\")\nset(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY \"y\")\nset(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL \"y\")\nset(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA \"y\")\nset(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 \"y\")\nset(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION \"y\")\nset(CONFIG_SOC_CLK_XTAL32K_SUPPORTED \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE \"y\")\nset(CONFIG_SOC_EFUSE_HARD_DIS_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_DIS_USB_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT \"y\")\nset(CONFIG_SOC_EFUSE_DIS_ICACHE \"y\")\nset(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK \"y\")\nset(CONFIG_SOC_SECURE_BOOT_V2_RSA \"y\")\nset(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS \"3\")\nset(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS \"y\")\nset(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX \"64\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 \"y\")\nset(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE \"16\")\nset(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE \"256\")\nset(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE \"21\")\nset(CONFIG_SOC_MAC_BB_PD_MEM_SIZE \"192\")\nset(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH \"12\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP \"y\")\nset(CONFIG_SOC_COEX_HW_PTI \"y\")\nset(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE \"y\")\nset(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX \"y\")\nset(CONFIG_SOC_SDMMC_NUM_SLOTS \"2\")\nset(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK \"y\")\nset(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC \"y\")\nset(CONFIG_SOC_WIFI_HW_TSF \"y\")\nset(CONFIG_SOC_WIFI_FTM_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_GCMP_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_WAPI_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_CSI_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_MESH_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW \"y\")\nset(CONFIG_SOC_BLE_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_MESH_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_50_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED \"y\")\nset(CONFIG_SOC_BLUFI_SUPPORTED \"y\")\nset(CONFIG_SOC_ULP_HAS_ADC \"y\")\nset(CONFIG_SOC_PHY_COMBO_MODULE \"y\")\nset(CONFIG_IDF_CMAKE \"y\")\nset(CONFIG_IDF_TARGET_ARCH_XTENSA \"y\")\nset(CONFIG_IDF_TARGET_ARCH \"xtensa\")\nset(CONFIG_IDF_TARGET \"esp32s3\")\nset(CONFIG_IDF_TARGET_ESP32S3 \"y\")\nset(CONFIG_IDF_FIRMWARE_CHIP_ID \"0x9\")\nset(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT \"y\")\nset(CONFIG_APP_BUILD_TYPE_RAM \"\")\nset(CONFIG_APP_BUILD_GENERATE_BINARIES \"y\")\nset(CONFIG_APP_BUILD_BOOTLOADER \"y\")\nset(CONFIG_APP_BUILD_USE_FLASH_SECTIONS \"y\")\nset(CONFIG_APP_REPRODUCIBLE_BUILD \"\")\nset(CONFIG_APP_NO_BLOBS \"\")\nset(CONFIG_BOOTLOADER_OFFSET_IN_FLASH \"0x0\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE \"y\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG \"\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF \"\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_NONE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_WARN \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_INFO \"y\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL \"3\")\nset(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V \"y\")\nset(CONFIG_BOOTLOADER_FACTORY_RESET \"\")\nset(CONFIG_BOOTLOADER_APP_TEST \"\")\nset(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE \"y\")\nset(CONFIG_BOOTLOADER_WDT_ENABLE \"y\")\nset(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE \"\")\nset(CONFIG_BOOTLOADER_WDT_TIME_MS \"9000\")\nset(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS \"\")\nset(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE \"0x0\")\nset(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC \"\")\nset(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT \"y\")\nset(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED \"y\")\nset(CONFIG_SECURE_BOOT_V2_PREFERRED \"y\")\nset(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT \"\")\nset(CONFIG_SECURE_BOOT \"\")\nset(CONFIG_SECURE_FLASH_ENC_ENABLED \"\")\nset(CONFIG_SECURE_ROM_DL_MODE_ENABLED \"y\")\nset(CONFIG_APP_COMPILE_TIME_DATE \"y\")\nset(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR \"\")\nset(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR \"\")\nset(CONFIG_APP_PROJECT_VER_FROM_CONFIG \"\")\nset(CONFIG_APP_RETRIEVE_LEN_ELF_SHA \"16\")\nset(CONFIG_ESP_ROM_HAS_CRC_LE \"y\")\nset(CONFIG_ESP_ROM_HAS_CRC_BE \"y\")\nset(CONFIG_ESP_ROM_HAS_MZ_CRC32 \"y\")\nset(CONFIG_ESP_ROM_HAS_JPEG_DECODE \"y\")\nset(CONFIG_ESP_ROM_UART_CLK_IS_XTAL \"y\")\nset(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING \"y\")\nset(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM \"4\")\nset(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG \"y\")\nset(CONFIG_ESP_ROM_GET_CLK_FREQ \"y\")\nset(CONFIG_ESP_ROM_HAS_HAL_WDT \"y\")\nset(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND \"y\")\nset(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE \"y\")\nset(CONFIG_ESP_ROM_HAS_SPI_FLASH \"y\")\nset(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT \"y\")\nset(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE \"y\")\nset(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT \"y\")\nset(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG \"y\")\nset(CONFIG_BOOT_ROM_LOG_ALWAYS_ON \"y\")\nset(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF \"\")\nset(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH \"\")\nset(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW \"\")\nset(CONFIG_ESPTOOLPY_NO_STUB \"\")\nset(CONFIG_ESPTOOLPY_OCT_FLASH \"\")\nset(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_QIO \"\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_QOUT \"\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_DIO \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_DOUT \"\")\nset(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE \"dio\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_120M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_80M \"y\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_40M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_20M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT \"y\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ \"80m\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_1MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_2MB \"y\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_4MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_8MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_16MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_32MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_64MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_128MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE \"2MB\")\nset(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE \"\")\nset(CONFIG_ESPTOOLPY_BEFORE_RESET \"y\")\nset(CONFIG_ESPTOOLPY_BEFORE_NORESET \"\")\nset(CONFIG_ESPTOOLPY_BEFORE \"default_reset\")\nset(CONFIG_ESPTOOLPY_AFTER_RESET \"y\")\nset(CONFIG_ESPTOOLPY_AFTER_NORESET \"\")\nset(CONFIG_ESPTOOLPY_AFTER \"hard_reset\")\nset(CONFIG_ESPTOOLPY_MONITOR_BAUD \"115200\")\nset(CONFIG_PARTITION_TABLE_SINGLE_APP \"\")\nset(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE \"\")\nset(CONFIG_PARTITION_TABLE_TWO_OTA \"\")\nset(CONFIG_PARTITION_TABLE_CUSTOM \"y\")\nset(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME \"partitions.csv\")\nset(CONFIG_PARTITION_TABLE_FILENAME \"partitions.csv\")\nset(CONFIG_PARTITION_TABLE_OFFSET \"0x8000\")\nset(CONFIG_PARTITION_TABLE_MD5 \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_DEFAULT \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_SIZE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_PERF \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_NONE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE \"\")\nset(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL \"2\")\nset(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT \"\")\nset(CONFIG_COMPILER_HIDE_PATHS_MACROS \"y\")\nset(CONFIG_COMPILER_CXX_EXCEPTIONS \"\")\nset(CONFIG_COMPILER_CXX_RTTI \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_NONE \"y\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_NORM \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_ALL \"\")\nset(CONFIG_COMPILER_WARN_WRITE_STRINGS \"\")\nset(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS \"\")\nset(CONFIG_COMPILER_DUMP_RTL_FILES \"\")\nset(CONFIG_EFUSE_CUSTOM_TABLE \"\")\nset(CONFIG_EFUSE_VIRTUAL \"\")\nset(CONFIG_EFUSE_MAX_BLK_LEN \"256\")\nset(CONFIG_ESP_ERR_TO_NAME_LOOKUP \"y\")\nset(CONFIG_ESP32S3_REV_MIN_0 \"y\")\nset(CONFIG_ESP32S3_REV_MIN_1 \"\")\nset(CONFIG_ESP32S3_REV_MIN_2 \"\")\nset(CONFIG_ESP32S3_REV_MIN_FULL \"0\")\nset(CONFIG_ESP_REV_MIN_FULL \"0\")\nset(CONFIG_ESP32S3_REV_MAX_FULL \"99\")\nset(CONFIG_ESP_REV_MAX_FULL \"99\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH \"y\")\nset(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR \"y\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO \"\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR \"y\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES \"4\")\nset(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH \"\")\nset(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU \"y\")\nset(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY \"2000\")\nset(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS \"y\")\nset(CONFIG_RTC_CLK_SRC_INT_RC \"y\")\nset(CONFIG_RTC_CLK_SRC_EXT_CRYS \"\")\nset(CONFIG_RTC_CLK_SRC_EXT_OSC \"\")\nset(CONFIG_RTC_CLK_SRC_INT_8MD256 \"\")\nset(CONFIG_RTC_CLK_CAL_CYCLES \"1024\")\nset(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM \"y\")\nset(CONFIG_GDMA_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_GDMA_ISR_IRAM_SAFE \"\")\nset(CONFIG_XTAL_FREQ_40 \"y\")\nset(CONFIG_XTAL_FREQ \"40\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 \"\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 \"\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 \"y\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ \"240\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB \"y\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE \"0x4000\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS \"y\")\nset(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS \"8\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B \"y\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE \"32\")\nset(CONFIG_ESP32S3_DATA_CACHE_16KB \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_32KB \"y\")\nset(CONFIG_ESP32S3_DATA_CACHE_64KB \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_SIZE \"0x8000\")\nset(CONFIG_ESP32S3_DATA_CACHE_4WAYS \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_8WAYS \"y\")\nset(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS \"8\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_16B \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_32B \"y\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_64B \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE \"32\")\nset(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM \"\")\nset(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE \"\")\nset(CONFIG_ESP32S3_TRAX \"\")\nset(CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM \"0x0\")\nset(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT \"y\")\nset(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_GDBSTUB \"\")\nset(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS \"0\")\nset(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK \"y\")\nset(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP \"y\")\nset(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE \"y\")\nset(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK \"y\")\nset(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE \"32\")\nset(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE \"2304\")\nset(CONFIG_ESP_MAIN_TASK_STACK_SIZE \"3584\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 \"y\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 \"\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY \"\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY \"0x0\")\nset(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE \"2048\")\nset(CONFIG_ESP_CONSOLE_UART_DEFAULT \"y\")\nset(CONFIG_ESP_CONSOLE_USB_CDC \"\")\nset(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG \"\")\nset(CONFIG_ESP_CONSOLE_UART_CUSTOM \"\")\nset(CONFIG_ESP_CONSOLE_NONE \"\")\nset(CONFIG_ESP_CONSOLE_SECONDARY_NONE \"\")\nset(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG \"y\")\nset(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED \"y\")\nset(CONFIG_ESP_CONSOLE_UART \"y\")\nset(CONFIG_ESP_CONSOLE_MULTIPLE_UART \"y\")\nset(CONFIG_ESP_CONSOLE_UART_NUM \"0\")\nset(CONFIG_ESP_CONSOLE_UART_BAUDRATE \"115200\")\nset(CONFIG_ESP_INT_WDT \"y\")\nset(CONFIG_ESP_INT_WDT_TIMEOUT_MS \"300\")\nset(CONFIG_ESP_INT_WDT_CHECK_CPU1 \"y\")\nset(CONFIG_ESP_TASK_WDT_EN \"\")\nset(CONFIG_ESP_PANIC_HANDLER_IRAM \"\")\nset(CONFIG_ESP_DEBUG_STUBS_ENABLE \"\")\nset(CONFIG_ESP_DEBUG_OCDAWARE \"y\")\nset(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 \"y\")\nset(CONFIG_ESP_BROWNOUT_DET \"y\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_ESP_SYSTEM_BROWNOUT_INTR \"y\")\nset(CONFIG_ESP_IPC_TASK_STACK_SIZE \"1280\")\nset(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY \"y\")\nset(CONFIG_ESP_IPC_ISR_ENABLE \"y\")\nset(CONFIG_FREERTOS_SMP \"\")\nset(CONFIG_FREERTOS_UNICORE \"\")\nset(CONFIG_FREERTOS_HZ \"100\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE \"\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL \"\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY \"y\")\nset(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS \"1\")\nset(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE \"1536\")\nset(CONFIG_FREERTOS_USE_IDLE_HOOK \"\")\nset(CONFIG_FREERTOS_USE_TICK_HOOK \"\")\nset(CONFIG_FREERTOS_MAX_TASK_NAME_LEN \"16\")\nset(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY \"\")\nset(CONFIG_FREERTOS_TIMER_TASK_PRIORITY \"1\")\nset(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH \"4096\")\nset(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH \"10\")\nset(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE \"0\")\nset(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES \"1\")\nset(CONFIG_FREERTOS_USE_TRACE_FACILITY \"\")\nset(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS \"\")\nset(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER \"y\")\nset(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK \"\")\nset(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS \"y\")\nset(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP \"\")\nset(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER \"y\")\nset(CONFIG_FREERTOS_ISR_STACKSIZE \"1536\")\nset(CONFIG_FREERTOS_INTERRUPT_BACKTRACE \"y\")\nset(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER \"y\")\nset(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 \"y\")\nset(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 \"\")\nset(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER \"y\")\nset(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH \"\")\nset(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH \"\")\nset(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE \"\")\nset(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT \"y\")\nset(CONFIG_FREERTOS_NO_AFFINITY \"0x7fffffff\")\nset(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION \"y\")\nset(CONFIG_FREERTOS_DEBUG_OCDAWARE \"y\")\nset(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM \"y\")\nset(CONFIG_HAL_ASSERTION_DISABLE \"\")\nset(CONFIG_HAL_ASSERTION_SILENT \"\")\nset(CONFIG_HAL_ASSERTION_ENABLE \"\")\nset(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL \"2\")\nset(CONFIG_HAL_WDT_USE_ROM_IMPL \"y\")\nset(CONFIG_LOG_DEFAULT_LEVEL_NONE \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_ERROR \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_WARN \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_INFO \"y\")\nset(CONFIG_LOG_DEFAULT_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL \"3\")\nset(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT \"y\")\nset(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_MAXIMUM_LEVEL \"3\")\nset(CONFIG_LOG_COLORS \"y\")\nset(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS \"y\")\nset(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM \"\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF \"y\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF \"\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR \"y\")\nset(CONFIG_NEWLIB_NANO_FORMAT \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT \"y\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE \"\")\nset(CONFIG_MMU_PAGE_SIZE_64KB \"y\")\nset(CONFIG_MMU_PAGE_MODE \"64KB\")\nset(CONFIG_MMU_PAGE_SIZE \"0x10000\")\nset(CONFIG_SPI_FLASH_VERIFY_WRITE \"\")\nset(CONFIG_SPI_FLASH_ENABLE_COUNTERS \"\")\nset(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH \"y\")\nset(CONFIG_SPI_FLASH_ROM_IMPL \"\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS \"y\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS \"\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED \"\")\nset(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE \"\")\nset(CONFIG_SPI_FLASH_YIELD_DURING_ERASE \"y\")\nset(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS \"20\")\nset(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS \"1\")\nset(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE \"8192\")\nset(CONFIG_SPI_FLASH_SIZE_OVERRIDE \"\")\nset(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED \"\")\nset(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST \"\")\nset(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC \"y\")\nset(CONFIG_SPI_FLASH_BROWNOUT_RESET \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP \"y\")\nset(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE \"y\")\nset(CONFIG_IDF_EXPERIMENTAL_FEATURES \"\")\nset(CONFIGS_LIST CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_GDMA_GROUPS;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_MEMSPI_SRC_FREQ_120M;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TOUCH_VERSION_2;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_REQUIRE_CORE_RESET;CONFIG_SOC_USB_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_MULTIPLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES)\n# List of deprecated options for backward compatibility\nset(CONFIG_APP_BUILD_TYPE_ELF_RAM \"\")\nset(CONFIG_NO_BLOBS \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_NONE \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_WARN \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_INFO \"y\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL \"3\")\nset(CONFIG_APP_ROLLBACK_ENABLE \"\")\nset(CONFIG_FLASH_ENCRYPTION_ENABLED \"\")\nset(CONFIG_FLASHMODE_QIO \"\")\nset(CONFIG_FLASHMODE_QOUT \"\")\nset(CONFIG_FLASHMODE_DIO \"y\")\nset(CONFIG_FLASHMODE_DOUT \"\")\nset(CONFIG_MONITOR_BAUD \"115200\")\nset(CONFIG_OPTIMIZATION_LEVEL_DEBUG \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG \"y\")\nset(CONFIG_OPTIMIZATION_LEVEL_RELEASE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE \"\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED \"y\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT \"\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED \"\")\nset(CONFIG_OPTIMIZATION_ASSERTION_LEVEL \"2\")\nset(CONFIG_CXX_EXCEPTIONS \"\")\nset(CONFIG_STACK_CHECK_NONE \"y\")\nset(CONFIG_STACK_CHECK_NORM \"\")\nset(CONFIG_STACK_CHECK_STRONG \"\")\nset(CONFIG_STACK_CHECK_ALL \"\")\nset(CONFIG_WARN_WRITE_STRINGS \"\")\nset(CONFIG_ESP_SYSTEM_PD_FLASH \"\")\nset(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY \"2000\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC \"y\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS \"\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC \"\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 \"\")\nset(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES \"1024\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 \"\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 \"\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 \"y\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ \"240\")\nset(CONFIG_SYSTEM_EVENT_QUEUE_SIZE \"32\")\nset(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE \"2304\")\nset(CONFIG_MAIN_TASK_STACK_SIZE \"3584\")\nset(CONFIG_CONSOLE_UART_DEFAULT \"y\")\nset(CONFIG_CONSOLE_UART_CUSTOM \"\")\nset(CONFIG_CONSOLE_UART_NONE \"\")\nset(CONFIG_ESP_CONSOLE_UART_NONE \"\")\nset(CONFIG_CONSOLE_UART \"y\")\nset(CONFIG_CONSOLE_UART_NUM \"0\")\nset(CONFIG_CONSOLE_UART_BAUDRATE \"115200\")\nset(CONFIG_INT_WDT \"y\")\nset(CONFIG_INT_WDT_TIMEOUT_MS \"300\")\nset(CONFIG_INT_WDT_CHECK_CPU1 \"y\")\nset(CONFIG_ESP32_DEBUG_STUBS_ENABLE \"\")\nset(CONFIG_ESP32S3_DEBUG_OCDAWARE \"y\")\nset(CONFIG_BROWNOUT_DET \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET \"y\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_IPC_TASK_STACK_SIZE \"1280\")\nset(CONFIG_TIMER_TASK_PRIORITY \"1\")\nset(CONFIG_TIMER_TASK_STACK_DEPTH \"4096\")\nset(CONFIG_TIMER_QUEUE_LENGTH \"10\")\nset(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK \"\")\nset(CONFIG_HAL_ASSERTION_SILIENT \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER \"y\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 \"y\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE \"\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS \"y\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS \"\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED \"\")\n"
  },
  {
    "path": "Code/build/bootloader/config/sdkconfig.h",
    "content": "/*\n * Automatically generated file. DO NOT EDIT.\n * Espressif IoT Development Framework (ESP-IDF) 5.1.2 Configuration Header\n */\n#pragma once\n#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000\n#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8\n#define CONFIG_SOC_ADC_SUPPORTED 1\n#define CONFIG_SOC_UART_SUPPORTED 1\n#define CONFIG_SOC_PCNT_SUPPORTED 1\n#define CONFIG_SOC_WIFI_SUPPORTED 1\n#define CONFIG_SOC_TWAI_SUPPORTED 1\n#define CONFIG_SOC_GDMA_SUPPORTED 1\n#define CONFIG_SOC_GPTIMER_SUPPORTED 1\n#define CONFIG_SOC_LCDCAM_SUPPORTED 1\n#define CONFIG_SOC_MCPWM_SUPPORTED 1\n#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1\n#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1\n#define CONFIG_SOC_ULP_SUPPORTED 1\n#define CONFIG_SOC_ULP_FSM_SUPPORTED 1\n#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1\n#define CONFIG_SOC_BT_SUPPORTED 1\n#define CONFIG_SOC_USB_OTG_SUPPORTED 1\n#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1\n#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1\n#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1\n#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1\n#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1\n#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1\n#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1\n#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1\n#define CONFIG_SOC_RTC_MEM_SUPPORTED 1\n#define CONFIG_SOC_PSRAM_DMA_CAPABLE 1\n#define CONFIG_SOC_XT_WDT_SUPPORTED 1\n#define CONFIG_SOC_I2S_SUPPORTED 1\n#define CONFIG_SOC_RMT_SUPPORTED 1\n#define CONFIG_SOC_SDM_SUPPORTED 1\n#define CONFIG_SOC_GPSPI_SUPPORTED 1\n#define CONFIG_SOC_LEDC_SUPPORTED 1\n#define CONFIG_SOC_I2C_SUPPORTED 1\n#define CONFIG_SOC_SYSTIMER_SUPPORTED 1\n#define CONFIG_SOC_SUPPORT_COEXISTENCE 1\n#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1\n#define CONFIG_SOC_AES_SUPPORTED 1\n#define CONFIG_SOC_MPI_SUPPORTED 1\n#define CONFIG_SOC_SHA_SUPPORTED 1\n#define CONFIG_SOC_HMAC_SUPPORTED 1\n#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1\n#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1\n#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1\n#define CONFIG_SOC_MEMPROT_SUPPORTED 1\n#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1\n#define CONFIG_SOC_BOD_SUPPORTED 1\n#define CONFIG_SOC_XTAL_SUPPORT_40M 1\n#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1\n#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1\n#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1\n#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1\n#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1\n#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1\n#define CONFIG_SOC_ADC_DMA_SUPPORTED 1\n#define CONFIG_SOC_ADC_PERIPH_NUM 2\n#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10\n#define CONFIG_SOC_ADC_ATTEN_NUM 4\n#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2\n#define CONFIG_SOC_ADC_PATT_LEN_MAX 24\n#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12\n#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12\n#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4\n#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4\n#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2\n#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333\n#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611\n#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12\n#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12\n#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1\n#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1\n#define CONFIG_SOC_APB_BACKUP_DMA 1\n#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1\n#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1\n#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1\n#define CONFIG_SOC_CPU_CORES_NUM 2\n#define CONFIG_SOC_CPU_INTR_NUM 32\n#define CONFIG_SOC_CPU_HAS_FPU 1\n#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2\n#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2\n#define CONFIG_SOC_CPU_WATCHPOINT_SIZE 64\n#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096\n#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16\n#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100\n#define CONFIG_SOC_GDMA_GROUPS 1\n#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5\n#define CONFIG_SOC_GDMA_SUPPORT_PSRAM 1\n#define CONFIG_SOC_GPIO_PORT 1\n#define CONFIG_SOC_GPIO_PIN_COUNT 49\n#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1\n#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1\n#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1\n#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF\n#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000\n#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8\n#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8\n#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1\n#define CONFIG_SOC_I2C_NUM 2\n#define CONFIG_SOC_I2C_FIFO_LEN 32\n#define CONFIG_SOC_I2C_CMD_REG_NUM 8\n#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1\n#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1\n#define CONFIG_SOC_I2C_SUPPORT_XTAL 1\n#define CONFIG_SOC_I2C_SUPPORT_RTC 1\n#define CONFIG_SOC_I2S_NUM 2\n#define CONFIG_SOC_I2S_HW_VERSION_2 1\n#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1\n#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1\n#define CONFIG_SOC_I2S_SUPPORTS_PCM 1\n#define CONFIG_SOC_I2S_SUPPORTS_PDM 1\n#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1\n#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2\n#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1\n#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4\n#define CONFIG_SOC_I2S_SUPPORTS_TDM 1\n#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1\n#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1\n#define CONFIG_SOC_LEDC_CHANNEL_NUM 8\n#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14\n#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1\n#define CONFIG_SOC_MCPWM_GROUPS 2\n#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1\n#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3\n#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1\n#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1\n#define CONFIG_SOC_MMU_PERIPH_NUM 1\n#define CONFIG_SOC_PCNT_GROUPS 1\n#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4\n#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2\n#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2\n#define CONFIG_SOC_RMT_GROUPS 1\n#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4\n#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4\n#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8\n#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48\n#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1\n#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1\n#define CONFIG_SOC_RMT_SUPPORT_XTAL 1\n#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1\n#define CONFIG_SOC_RMT_SUPPORT_APB 1\n#define CONFIG_SOC_RMT_SUPPORT_DMA 1\n#define CONFIG_SOC_LCD_I80_SUPPORTED 1\n#define CONFIG_SOC_LCD_RGB_SUPPORTED 1\n#define CONFIG_SOC_LCD_I80_BUSES 1\n#define CONFIG_SOC_LCD_RGB_PANELS 1\n#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16\n#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16\n#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1\n#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128\n#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549\n#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128\n#define CONFIG_SOC_RTCIO_PIN_COUNT 22\n#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1\n#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1\n#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1\n#define CONFIG_SOC_SDM_GROUPS 1\n#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8\n#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_SPI_PERIPH_NUM 3\n#define CONFIG_SOC_SPI_MAX_CS_NUM 6\n#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64\n#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1\n#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1\n#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1\n#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1\n#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1\n#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1\n#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1\n#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1\n#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1\n#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16\n#define CONFIG_SOC_SPI_SUPPORT_OCT 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1\n#define CONFIG_SOC_SPIRAM_SUPPORTED 1\n#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1\n#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2\n#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3\n#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32\n#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20\n#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1\n#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1\n#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1\n#define CONFIG_SOC_TIMER_GROUPS 2\n#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2\n#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54\n#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1\n#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1\n#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4\n#define CONFIG_SOC_TOUCH_VERSION_2 1\n#define CONFIG_SOC_TOUCH_SENSOR_NUM 15\n#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3\n#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 1\n#define CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX 0x1FFFFF\n#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF\n#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1\n#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_TWAI_BRP_MIN 2\n#define CONFIG_SOC_TWAI_BRP_MAX 16384\n#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1\n#define CONFIG_SOC_UART_NUM 3\n#define CONFIG_SOC_UART_FIFO_LEN 128\n#define CONFIG_SOC_UART_BITRATE_MAX 5000000\n#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1\n#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1\n#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1\n#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1\n#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1\n#define CONFIG_SOC_UART_REQUIRE_CORE_RESET 1\n#define CONFIG_SOC_USB_PERIPH_NUM 1\n#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968\n#define CONFIG_SOC_SHA_SUPPORT_DMA 1\n#define CONFIG_SOC_SHA_SUPPORT_RESUME 1\n#define CONFIG_SOC_SHA_GDMA 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA1 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA224 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA256 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA384 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_224 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1\n#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096\n#define CONFIG_SOC_AES_SUPPORT_DMA 1\n#define CONFIG_SOC_AES_GDMA 1\n#define CONFIG_SOC_AES_SUPPORT_AES_128 1\n#define CONFIG_SOC_AES_SUPPORT_AES_256 1\n#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1\n#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1\n#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1\n#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1\n#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1\n#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1\n#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1\n#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1\n#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1\n#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1\n#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1\n#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1\n#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1\n#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1\n#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1\n#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1\n#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1\n#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1\n#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1\n#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1\n#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1\n#define CONFIG_SOC_EFUSE_DIS_ICACHE 1\n#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1\n#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1\n#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3\n#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1\n#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1\n#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1\n#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16\n#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256\n#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21\n#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192\n#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1\n#define CONFIG_SOC_COEX_HW_PTI 1\n#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1\n#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1\n#define CONFIG_SOC_SDMMC_NUM_SLOTS 2\n#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1\n#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1\n#define CONFIG_SOC_WIFI_HW_TSF 1\n#define CONFIG_SOC_WIFI_FTM_SUPPORT 1\n#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1\n#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1\n#define CONFIG_SOC_WIFI_CSI_SUPPORT 1\n#define CONFIG_SOC_WIFI_MESH_SUPPORT 1\n#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1\n#define CONFIG_SOC_BLE_SUPPORTED 1\n#define CONFIG_SOC_BLE_MESH_SUPPORTED 1\n#define CONFIG_SOC_BLE_50_SUPPORTED 1\n#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1\n#define CONFIG_SOC_BLUFI_SUPPORTED 1\n#define CONFIG_SOC_ULP_HAS_ADC 1\n#define CONFIG_SOC_PHY_COMBO_MODULE 1\n#define CONFIG_IDF_CMAKE 1\n#define CONFIG_IDF_TARGET_ARCH_XTENSA 1\n#define CONFIG_IDF_TARGET_ARCH \"xtensa\"\n#define CONFIG_IDF_TARGET \"esp32s3\"\n#define CONFIG_IDF_TARGET_ESP32S3 1\n#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009\n#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1\n#define CONFIG_APP_BUILD_GENERATE_BINARIES 1\n#define CONFIG_APP_BUILD_BOOTLOADER 1\n#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1\n#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0\n#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1\n#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1\n#define CONFIG_BOOTLOADER_LOG_LEVEL 3\n#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1\n#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1\n#define CONFIG_BOOTLOADER_WDT_ENABLE 1\n#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000\n#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0\n#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1\n#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1\n#define CONFIG_SECURE_BOOT_V2_PREFERRED 1\n#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1\n#define CONFIG_APP_COMPILE_TIME_DATE 1\n#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 16\n#define CONFIG_ESP_ROM_HAS_CRC_LE 1\n#define CONFIG_ESP_ROM_HAS_CRC_BE 1\n#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1\n#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1\n#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1\n#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1\n#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4\n#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1\n#define CONFIG_ESP_ROM_GET_CLK_FREQ 1\n#define CONFIG_ESP_ROM_HAS_HAL_WDT 1\n#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1\n#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1\n#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1\n#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1\n#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1\n#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1\n#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1\n#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1\n#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1\n#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1\n#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1\n#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 1\n#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1\n#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1\n#define CONFIG_ESPTOOLPY_FLASHMODE \"dio\"\n#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1\n#define CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT 1\n#define CONFIG_ESPTOOLPY_FLASHFREQ \"80m\"\n#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1\n#define CONFIG_ESPTOOLPY_FLASHSIZE \"2MB\"\n#define CONFIG_ESPTOOLPY_BEFORE_RESET 1\n#define CONFIG_ESPTOOLPY_BEFORE \"default_reset\"\n#define CONFIG_ESPTOOLPY_AFTER_RESET 1\n#define CONFIG_ESPTOOLPY_AFTER \"hard_reset\"\n#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200\n#define CONFIG_PARTITION_TABLE_CUSTOM 1\n#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME \"partitions.csv\"\n#define CONFIG_PARTITION_TABLE_FILENAME \"partitions.csv\"\n#define CONFIG_PARTITION_TABLE_OFFSET 0x8000\n#define CONFIG_PARTITION_TABLE_MD5 1\n#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1\n#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1\n#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1\n#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2\n#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1\n#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1\n#define CONFIG_EFUSE_MAX_BLK_LEN 256\n#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1\n#define CONFIG_ESP32S3_REV_MIN_0 1\n#define CONFIG_ESP32S3_REV_MIN_FULL 0\n#define CONFIG_ESP_REV_MIN_FULL 0\n#define CONFIG_ESP32S3_REV_MAX_FULL 99\n#define CONFIG_ESP_REV_MAX_FULL 99\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1\n#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1\n#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1\n#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4\n#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1\n#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY 2000\n#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1\n#define CONFIG_RTC_CLK_SRC_INT_RC 1\n#define CONFIG_RTC_CLK_CAL_CYCLES 1024\n#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1\n#define CONFIG_XTAL_FREQ_40 1\n#define CONFIG_XTAL_FREQ 40\n#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 1\n#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 240\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB 1\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1\n#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32\n#define CONFIG_ESP32S3_DATA_CACHE_32KB 1\n#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000\n#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1\n#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8\n#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1\n#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32\n#define CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM 0x0\n#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1\n#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0\n#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1\n#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1\n#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1\n#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1\n#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32\n#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304\n#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584\n#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1\n#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0\n#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048\n#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1\n#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1\n#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1\n#define CONFIG_ESP_CONSOLE_UART 1\n#define CONFIG_ESP_CONSOLE_MULTIPLE_UART 1\n#define CONFIG_ESP_CONSOLE_UART_NUM 0\n#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200\n#define CONFIG_ESP_INT_WDT 1\n#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300\n#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1\n#define CONFIG_ESP_DEBUG_OCDAWARE 1\n#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1\n#define CONFIG_ESP_BROWNOUT_DET 1\n#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1\n#define CONFIG_ESP_BROWNOUT_DET_LVL 7\n#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1\n#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280\n#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1\n#define CONFIG_ESP_IPC_ISR_ENABLE 1\n#define CONFIG_FREERTOS_HZ 100\n#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1\n#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1\n#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536\n#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16\n#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1\n#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 4096\n#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10\n#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0\n#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1\n#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1\n#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1\n#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1\n#define CONFIG_FREERTOS_ISR_STACKSIZE 1536\n#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1\n#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1\n#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1\n#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1\n#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1\n#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF\n#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1\n#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1\n#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1\n#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2\n#define CONFIG_HAL_WDT_USE_ROM_IMPL 1\n#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1\n#define CONFIG_LOG_DEFAULT_LEVEL 3\n#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1\n#define CONFIG_LOG_MAXIMUM_LEVEL 3\n#define CONFIG_LOG_COLORS 1\n#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1\n#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1\n#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1\n#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1\n#define CONFIG_MMU_PAGE_SIZE_64KB 1\n#define CONFIG_MMU_PAGE_MODE \"64KB\"\n#define CONFIG_MMU_PAGE_SIZE 0x10000\n#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1\n#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1\n#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1\n#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20\n#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1\n#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192\n#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1\n#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1\n#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED 1\n#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP 1\n#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1\n\n/* List of deprecated options */\n#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET\n#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL\n#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7\n#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT\n#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART\n#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE\n#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT\n#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM\n#define CONFIG_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET\n#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL\n#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7\n#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE\n#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\n#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240\n#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ\n#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES\n#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC\n#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT\n#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT\n#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO\n#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT\n#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1\n#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS\n#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE\n#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL\n#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO\n#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE\n#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD\n#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\n#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL\n#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT\n#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS\n#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE\n#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE\n#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE\n#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH\n#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY\n#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH\n"
  },
  {
    "path": "Code/build/bootloader/config/sdkconfig.json",
    "content": "{\n    \"APP_BUILD_BOOTLOADER\": true,\n    \"APP_BUILD_GENERATE_BINARIES\": true,\n    \"APP_BUILD_TYPE_APP_2NDBOOT\": true,\n    \"APP_BUILD_TYPE_RAM\": false,\n    \"APP_BUILD_USE_FLASH_SECTIONS\": true,\n    \"APP_COMPILE_TIME_DATE\": true,\n    \"APP_EXCLUDE_PROJECT_NAME_VAR\": false,\n    \"APP_EXCLUDE_PROJECT_VER_VAR\": false,\n    \"APP_NO_BLOBS\": false,\n    \"APP_PROJECT_VER_FROM_CONFIG\": false,\n    \"APP_REPRODUCIBLE_BUILD\": false,\n    \"APP_RETRIEVE_LEN_ELF_SHA\": 16,\n    \"BOOTLOADER_APP_ROLLBACK_ENABLE\": false,\n    \"BOOTLOADER_APP_TEST\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\": true,\n    \"BOOTLOADER_CUSTOM_RESERVE_RTC\": false,\n    \"BOOTLOADER_FACTORY_RESET\": false,\n    \"BOOTLOADER_FLASH_XMC_SUPPORT\": true,\n    \"BOOTLOADER_LOG_LEVEL\": 3,\n    \"BOOTLOADER_LOG_LEVEL_DEBUG\": false,\n    \"BOOTLOADER_LOG_LEVEL_ERROR\": false,\n    \"BOOTLOADER_LOG_LEVEL_INFO\": true,\n    \"BOOTLOADER_LOG_LEVEL_NONE\": false,\n    \"BOOTLOADER_LOG_LEVEL_VERBOSE\": false,\n    \"BOOTLOADER_LOG_LEVEL_WARN\": false,\n    \"BOOTLOADER_OFFSET_IN_FLASH\": 0,\n    \"BOOTLOADER_REGION_PROTECTION_ENABLE\": true,\n    \"BOOTLOADER_RESERVE_RTC_SIZE\": 0,\n    \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\": false,\n    \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\": false,\n    \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\": false,\n    \"BOOTLOADER_VDDSDIO_BOOST_1_9V\": true,\n    \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\": false,\n    \"BOOTLOADER_WDT_ENABLE\": true,\n    \"BOOTLOADER_WDT_TIME_MS\": 9000,\n    \"BOOT_ROM_LOG_ALWAYS_OFF\": false,\n    \"BOOT_ROM_LOG_ALWAYS_ON\": true,\n    \"BOOT_ROM_LOG_ON_GPIO_HIGH\": false,\n    \"BOOT_ROM_LOG_ON_GPIO_LOW\": false,\n    \"COMPILER_CXX_EXCEPTIONS\": false,\n    \"COMPILER_CXX_RTTI\": false,\n    \"COMPILER_DISABLE_GCC12_WARNINGS\": false,\n    \"COMPILER_DUMP_RTL_FILES\": false,\n    \"COMPILER_FLOAT_LIB_FROM_GCCLIB\": true,\n    \"COMPILER_HIDE_PATHS_MACROS\": true,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\": false,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\": true,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\": false,\n    \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\": 2,\n    \"COMPILER_OPTIMIZATION_CHECKS_SILENT\": false,\n    \"COMPILER_OPTIMIZATION_DEFAULT\": true,\n    \"COMPILER_OPTIMIZATION_NONE\": false,\n    \"COMPILER_OPTIMIZATION_PERF\": false,\n    \"COMPILER_OPTIMIZATION_SIZE\": false,\n    \"COMPILER_STACK_CHECK_MODE_ALL\": false,\n    \"COMPILER_STACK_CHECK_MODE_NONE\": true,\n    \"COMPILER_STACK_CHECK_MODE_NORM\": false,\n    \"COMPILER_STACK_CHECK_MODE_STRONG\": false,\n    \"COMPILER_WARN_WRITE_STRINGS\": false,\n    \"EFUSE_CUSTOM_TABLE\": false,\n    \"EFUSE_MAX_BLK_LEN\": 256,\n    \"EFUSE_VIRTUAL\": false,\n    \"ESP32S3_DATA_CACHE_16KB\": false,\n    \"ESP32S3_DATA_CACHE_32KB\": true,\n    \"ESP32S3_DATA_CACHE_4WAYS\": false,\n    \"ESP32S3_DATA_CACHE_64KB\": false,\n    \"ESP32S3_DATA_CACHE_8WAYS\": true,\n    \"ESP32S3_DATA_CACHE_LINE_16B\": false,\n    \"ESP32S3_DATA_CACHE_LINE_32B\": true,\n    \"ESP32S3_DATA_CACHE_LINE_64B\": false,\n    \"ESP32S3_DATA_CACHE_LINE_SIZE\": 32,\n    \"ESP32S3_DATA_CACHE_SIZE\": 32768,\n    \"ESP32S3_DCACHE_ASSOCIATED_WAYS\": 8,\n    \"ESP32S3_ICACHE_ASSOCIATED_WAYS\": 8,\n    \"ESP32S3_INSTRUCTION_CACHE_16KB\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_32KB\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_4WAYS\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_8WAYS\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\": 32,\n    \"ESP32S3_INSTRUCTION_CACHE_SIZE\": 16384,\n    \"ESP32S3_REV_MAX_FULL\": 99,\n    \"ESP32S3_REV_MIN_0\": true,\n    \"ESP32S3_REV_MIN_1\": false,\n    \"ESP32S3_REV_MIN_2\": false,\n    \"ESP32S3_REV_MIN_FULL\": 0,\n    \"ESP32S3_RTCDATA_IN_FAST_MEM\": false,\n    \"ESP32S3_TRACEMEM_RESERVE_DRAM\": 0,\n    \"ESP32S3_TRAX\": false,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\": 4,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\": true,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\": false,\n    \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\": false,\n    \"ESPTOOLPY_AFTER\": \"hard_reset\",\n    \"ESPTOOLPY_AFTER_NORESET\": false,\n    \"ESPTOOLPY_AFTER_RESET\": true,\n    \"ESPTOOLPY_BEFORE\": \"default_reset\",\n    \"ESPTOOLPY_BEFORE_NORESET\": false,\n    \"ESPTOOLPY_BEFORE_RESET\": true,\n    \"ESPTOOLPY_FLASHFREQ\": \"80m\",\n    \"ESPTOOLPY_FLASHFREQ_120M\": false,\n    \"ESPTOOLPY_FLASHFREQ_20M\": false,\n    \"ESPTOOLPY_FLASHFREQ_40M\": false,\n    \"ESPTOOLPY_FLASHFREQ_80M\": true,\n    \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\": true,\n    \"ESPTOOLPY_FLASHMODE\": \"dio\",\n    \"ESPTOOLPY_FLASHMODE_DIO\": true,\n    \"ESPTOOLPY_FLASHMODE_DOUT\": false,\n    \"ESPTOOLPY_FLASHMODE_QIO\": false,\n    \"ESPTOOLPY_FLASHMODE_QOUT\": false,\n    \"ESPTOOLPY_FLASHSIZE\": \"2MB\",\n    \"ESPTOOLPY_FLASHSIZE_128MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_16MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_1MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_2MB\": true,\n    \"ESPTOOLPY_FLASHSIZE_32MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_4MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_64MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_8MB\": false,\n    \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\": true,\n    \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\": true,\n    \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\": false,\n    \"ESPTOOLPY_MONITOR_BAUD\": 115200,\n    \"ESPTOOLPY_NO_STUB\": false,\n    \"ESPTOOLPY_OCT_FLASH\": false,\n    \"ESP_BROWNOUT_DET\": true,\n    \"ESP_BROWNOUT_DET_LVL\": 7,\n    \"ESP_BROWNOUT_DET_LVL_SEL_1\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_2\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_3\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_4\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_5\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_6\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_7\": true,\n    \"ESP_CONSOLE_MULTIPLE_UART\": true,\n    \"ESP_CONSOLE_NONE\": false,\n    \"ESP_CONSOLE_SECONDARY_NONE\": false,\n    \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\": true,\n    \"ESP_CONSOLE_UART\": true,\n    \"ESP_CONSOLE_UART_BAUDRATE\": 115200,\n    \"ESP_CONSOLE_UART_CUSTOM\": false,\n    \"ESP_CONSOLE_UART_DEFAULT\": true,\n    \"ESP_CONSOLE_UART_NUM\": 0,\n    \"ESP_CONSOLE_USB_CDC\": false,\n    \"ESP_CONSOLE_USB_SERIAL_JTAG\": false,\n    \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\": true,\n    \"ESP_DEBUG_OCDAWARE\": true,\n    \"ESP_DEBUG_STUBS_ENABLE\": false,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ\": 240,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_160\": false,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_240\": true,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_80\": false,\n    \"ESP_ERR_TO_NAME_LOOKUP\": true,\n    \"ESP_INT_WDT\": true,\n    \"ESP_INT_WDT_CHECK_CPU1\": true,\n    \"ESP_INT_WDT_TIMEOUT_MS\": 300,\n    \"ESP_IPC_ISR_ENABLE\": true,\n    \"ESP_IPC_TASK_STACK_SIZE\": 1280,\n    \"ESP_IPC_USES_CALLERS_PRIORITY\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_BT\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_ETH\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\": true,\n    \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\": true,\n    \"ESP_MAIN_TASK_AFFINITY\": 0,\n    \"ESP_MAIN_TASK_AFFINITY_CPU0\": true,\n    \"ESP_MAIN_TASK_AFFINITY_CPU1\": false,\n    \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\": false,\n    \"ESP_MAIN_TASK_STACK_SIZE\": 3584,\n    \"ESP_MINIMAL_SHARED_STACK_SIZE\": 2048,\n    \"ESP_PANIC_HANDLER_IRAM\": false,\n    \"ESP_REV_MAX_FULL\": 99,\n    \"ESP_REV_MIN_FULL\": 0,\n    \"ESP_ROM_GET_CLK_FREQ\": true,\n    \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\": true,\n    \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\": true,\n    \"ESP_ROM_HAS_CRC_BE\": true,\n    \"ESP_ROM_HAS_CRC_LE\": true,\n    \"ESP_ROM_HAS_ERASE_0_REGION_BUG\": true,\n    \"ESP_ROM_HAS_ETS_PRINTF_BUG\": true,\n    \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\": true,\n    \"ESP_ROM_HAS_HAL_WDT\": true,\n    \"ESP_ROM_HAS_JPEG_DECODE\": true,\n    \"ESP_ROM_HAS_LAYOUT_TABLE\": true,\n    \"ESP_ROM_HAS_MZ_CRC32\": true,\n    \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\": true,\n    \"ESP_ROM_HAS_RETARGETABLE_LOCKING\": true,\n    \"ESP_ROM_HAS_SPI_FLASH\": true,\n    \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\": true,\n    \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\": true,\n    \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\": true,\n    \"ESP_ROM_UART_CLK_IS_XTAL\": true,\n    \"ESP_ROM_USB_SERIAL_DEVICE_NUM\": 4,\n    \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\": 2000,\n    \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\": true,\n    \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\": true,\n    \"ESP_SLEEP_GPIO_RESET_WORKAROUND\": true,\n    \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\": true,\n    \"ESP_SLEEP_POWER_DOWN_FLASH\": false,\n    \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\": true,\n    \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\": true,\n    \"ESP_SYSTEM_BROWNOUT_INTR\": true,\n    \"ESP_SYSTEM_CHECK_INT_LEVEL_4\": true,\n    \"ESP_SYSTEM_EVENT_QUEUE_SIZE\": 32,\n    \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\": 2304,\n    \"ESP_SYSTEM_GDBSTUB_RUNTIME\": false,\n    \"ESP_SYSTEM_MEMPROT_FEATURE\": true,\n    \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\": true,\n    \"ESP_SYSTEM_PANIC_GDBSTUB\": false,\n    \"ESP_SYSTEM_PANIC_PRINT_HALT\": false,\n    \"ESP_SYSTEM_PANIC_PRINT_REBOOT\": true,\n    \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\": 0,\n    \"ESP_SYSTEM_PANIC_SILENT_REBOOT\": false,\n    \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\": true,\n    \"ESP_TASK_WDT_EN\": false,\n    \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\": true,\n    \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\": false,\n    \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\": true,\n    \"FREERTOS_CHECK_STACKOVERFLOW_NONE\": false,\n    \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\": false,\n    \"FREERTOS_CORETIMER_SYSTIMER_LVL1\": true,\n    \"FREERTOS_CORETIMER_SYSTIMER_LVL3\": false,\n    \"FREERTOS_DEBUG_OCDAWARE\": true,\n    \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\": false,\n    \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\": false,\n    \"FREERTOS_ENABLE_TASK_SNAPSHOT\": true,\n    \"FREERTOS_GENERATE_RUN_TIME_STATS\": false,\n    \"FREERTOS_HZ\": 100,\n    \"FREERTOS_IDLE_TASK_STACKSIZE\": 1536,\n    \"FREERTOS_INTERRUPT_BACKTRACE\": true,\n    \"FREERTOS_ISR_STACKSIZE\": 1536,\n    \"FREERTOS_MAX_TASK_NAME_LEN\": 16,\n    \"FREERTOS_NO_AFFINITY\": 2147483647,\n    \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\": false,\n    \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\": false,\n    \"FREERTOS_QUEUE_REGISTRY_SIZE\": 0,\n    \"FREERTOS_SMP\": false,\n    \"FREERTOS_SUPPORT_STATIC_ALLOCATION\": true,\n    \"FREERTOS_SYSTICK_USES_SYSTIMER\": true,\n    \"FREERTOS_TASK_FUNCTION_WRAPPER\": true,\n    \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\": 1,\n    \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\": 1,\n    \"FREERTOS_TICK_SUPPORT_SYSTIMER\": true,\n    \"FREERTOS_TIMER_QUEUE_LENGTH\": 10,\n    \"FREERTOS_TIMER_TASK_PRIORITY\": 1,\n    \"FREERTOS_TIMER_TASK_STACK_DEPTH\": 4096,\n    \"FREERTOS_TLSP_DELETION_CALLBACKS\": true,\n    \"FREERTOS_UNICORE\": false,\n    \"FREERTOS_USE_IDLE_HOOK\": false,\n    \"FREERTOS_USE_TICK_HOOK\": false,\n    \"FREERTOS_USE_TRACE_FACILITY\": false,\n    \"FREERTOS_WATCHPOINT_END_OF_STACK\": false,\n    \"GDMA_CTRL_FUNC_IN_IRAM\": false,\n    \"GDMA_ISR_IRAM_SAFE\": false,\n    \"HAL_ASSERTION_DISABLE\": false,\n    \"HAL_ASSERTION_ENABLE\": false,\n    \"HAL_ASSERTION_EQUALS_SYSTEM\": true,\n    \"HAL_ASSERTION_SILENT\": false,\n    \"HAL_DEFAULT_ASSERTION_LEVEL\": 2,\n    \"HAL_WDT_USE_ROM_IMPL\": true,\n    \"IDF_CMAKE\": true,\n    \"IDF_EXPERIMENTAL_FEATURES\": false,\n    \"IDF_FIRMWARE_CHIP_ID\": 9,\n    \"IDF_TARGET\": \"esp32s3\",\n    \"IDF_TARGET_ARCH\": \"xtensa\",\n    \"IDF_TARGET_ARCH_XTENSA\": true,\n    \"IDF_TARGET_ESP32S3\": true,\n    \"LOG_COLORS\": true,\n    \"LOG_DEFAULT_LEVEL\": 3,\n    \"LOG_DEFAULT_LEVEL_DEBUG\": false,\n    \"LOG_DEFAULT_LEVEL_ERROR\": false,\n    \"LOG_DEFAULT_LEVEL_INFO\": true,\n    \"LOG_DEFAULT_LEVEL_NONE\": false,\n    \"LOG_DEFAULT_LEVEL_VERBOSE\": false,\n    \"LOG_DEFAULT_LEVEL_WARN\": false,\n    \"LOG_MAXIMUM_EQUALS_DEFAULT\": true,\n    \"LOG_MAXIMUM_LEVEL\": 3,\n    \"LOG_MAXIMUM_LEVEL_DEBUG\": false,\n    \"LOG_MAXIMUM_LEVEL_VERBOSE\": false,\n    \"LOG_TIMESTAMP_SOURCE_RTOS\": true,\n    \"LOG_TIMESTAMP_SOURCE_SYSTEM\": false,\n    \"MMU_PAGE_MODE\": \"64KB\",\n    \"MMU_PAGE_SIZE\": 65536,\n    \"MMU_PAGE_SIZE_64KB\": true,\n    \"NEWLIB_NANO_FORMAT\": false,\n    \"NEWLIB_STDIN_LINE_ENDING_CR\": true,\n    \"NEWLIB_STDIN_LINE_ENDING_CRLF\": false,\n    \"NEWLIB_STDIN_LINE_ENDING_LF\": false,\n    \"NEWLIB_STDOUT_LINE_ENDING_CR\": false,\n    \"NEWLIB_STDOUT_LINE_ENDING_CRLF\": true,\n    \"NEWLIB_STDOUT_LINE_ENDING_LF\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_HRT\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_NONE\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_RTC\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\": true,\n    \"PARTITION_TABLE_CUSTOM\": true,\n    \"PARTITION_TABLE_CUSTOM_FILENAME\": \"partitions.csv\",\n    \"PARTITION_TABLE_FILENAME\": \"partitions.csv\",\n    \"PARTITION_TABLE_MD5\": true,\n    \"PARTITION_TABLE_OFFSET\": 32768,\n    \"PARTITION_TABLE_SINGLE_APP\": false,\n    \"PARTITION_TABLE_SINGLE_APP_LARGE\": false,\n    \"PARTITION_TABLE_TWO_OTA\": false,\n    \"PERIPH_CTRL_FUNC_IN_IRAM\": true,\n    \"RTC_CLK_CAL_CYCLES\": 1024,\n    \"RTC_CLK_SRC_EXT_CRYS\": false,\n    \"RTC_CLK_SRC_EXT_OSC\": false,\n    \"RTC_CLK_SRC_INT_8MD256\": false,\n    \"RTC_CLK_SRC_INT_RC\": true,\n    \"SECURE_BOOT\": false,\n    \"SECURE_BOOT_V2_PREFERRED\": true,\n    \"SECURE_BOOT_V2_RSA_SUPPORTED\": true,\n    \"SECURE_FLASH_ENC_ENABLED\": false,\n    \"SECURE_ROM_DL_MODE_ENABLED\": true,\n    \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\": false,\n    \"SOC_ADC_ARBITER_SUPPORTED\": true,\n    \"SOC_ADC_ATTEN_NUM\": 4,\n    \"SOC_ADC_CALIBRATION_V1_SUPPORTED\": true,\n    \"SOC_ADC_DIGI_CONTROLLER_NUM\": 2,\n    \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\": 4,\n    \"SOC_ADC_DIGI_IIR_FILTER_NUM\": 2,\n    \"SOC_ADC_DIGI_MAX_BITWIDTH\": 12,\n    \"SOC_ADC_DIGI_MIN_BITWIDTH\": 12,\n    \"SOC_ADC_DIGI_RESULT_BYTES\": 4,\n    \"SOC_ADC_DIG_CTRL_SUPPORTED\": true,\n    \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\": true,\n    \"SOC_ADC_DMA_SUPPORTED\": true,\n    \"SOC_ADC_MAX_CHANNEL_NUM\": 10,\n    \"SOC_ADC_MONITOR_SUPPORTED\": true,\n    \"SOC_ADC_PATT_LEN_MAX\": 24,\n    \"SOC_ADC_PERIPH_NUM\": 2,\n    \"SOC_ADC_RTC_CTRL_SUPPORTED\": true,\n    \"SOC_ADC_RTC_MAX_BITWIDTH\": 12,\n    \"SOC_ADC_RTC_MIN_BITWIDTH\": 12,\n    \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\": 83333,\n    \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\": 611,\n    \"SOC_ADC_SELF_HW_CALI_SUPPORTED\": true,\n    \"SOC_ADC_SUPPORTED\": true,\n    \"SOC_AES_GDMA\": true,\n    \"SOC_AES_SUPPORTED\": true,\n    \"SOC_AES_SUPPORT_AES_128\": true,\n    \"SOC_AES_SUPPORT_AES_256\": true,\n    \"SOC_AES_SUPPORT_DMA\": true,\n    \"SOC_APB_BACKUP_DMA\": true,\n    \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\": true,\n    \"SOC_ASYNC_MEMCPY_SUPPORTED\": true,\n    \"SOC_BLE_50_SUPPORTED\": true,\n    \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\": true,\n    \"SOC_BLE_MESH_SUPPORTED\": true,\n    \"SOC_BLE_SUPPORTED\": true,\n    \"SOC_BLUFI_SUPPORTED\": true,\n    \"SOC_BOD_SUPPORTED\": true,\n    \"SOC_BROWNOUT_RESET_SUPPORTED\": true,\n    \"SOC_BT_SUPPORTED\": true,\n    \"SOC_CACHE_FREEZE_SUPPORTED\": true,\n    \"SOC_CACHE_SUPPORT_WRAP\": true,\n    \"SOC_CACHE_WRITEBACK_SUPPORTED\": true,\n    \"SOC_CCOMP_TIMER_SUPPORTED\": true,\n    \"SOC_CLK_RC_FAST_D256_SUPPORTED\": true,\n    \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\": true,\n    \"SOC_CLK_XTAL32K_SUPPORTED\": true,\n    \"SOC_COEX_HW_PTI\": true,\n    \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\": true,\n    \"SOC_CPU_BREAKPOINTS_NUM\": 2,\n    \"SOC_CPU_CORES_NUM\": 2,\n    \"SOC_CPU_HAS_FPU\": true,\n    \"SOC_CPU_INTR_NUM\": 32,\n    \"SOC_CPU_WATCHPOINTS_NUM\": 2,\n    \"SOC_CPU_WATCHPOINT_SIZE\": 64,\n    \"SOC_DEDICATED_GPIO_SUPPORTED\": true,\n    \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\": 8,\n    \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\": true,\n    \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\": 8,\n    \"SOC_DIG_SIGN_SUPPORTED\": true,\n    \"SOC_DS_KEY_CHECK_MAX_WAIT_US\": 1100,\n    \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\": 16,\n    \"SOC_DS_SIGNATURE_MAX_BIT_LEN\": 4096,\n    \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\": true,\n    \"SOC_EFUSE_DIS_DIRECT_BOOT\": true,\n    \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\": true,\n    \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\": true,\n    \"SOC_EFUSE_DIS_ICACHE\": true,\n    \"SOC_EFUSE_DIS_USB_JTAG\": true,\n    \"SOC_EFUSE_HARD_DIS_JTAG\": true,\n    \"SOC_EFUSE_KEY_PURPOSE_FIELD\": true,\n    \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\": true,\n    \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\": 3,\n    \"SOC_EFUSE_SOFT_DIS_JTAG\": true,\n    \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\": true,\n    \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\": 64,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_128\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_256\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\": true,\n    \"SOC_FLASH_ENC_SUPPORTED\": true,\n    \"SOC_GDMA_GROUPS\": true,\n    \"SOC_GDMA_PAIRS_PER_GROUP\": 5,\n    \"SOC_GDMA_SUPPORTED\": true,\n    \"SOC_GDMA_SUPPORT_PSRAM\": true,\n    \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\": true,\n    \"SOC_GPIO_PIN_COUNT\": 49,\n    \"SOC_GPIO_PORT\": 1,\n    \"SOC_GPIO_SUPPORT_FORCE_HOLD\": true,\n    \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\": true,\n    \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\": true,\n    \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\": 562949886312448,\n    \"SOC_GPIO_VALID_GPIO_MASK\": 562949953421311,\n    \"SOC_GPSPI_SUPPORTED\": true,\n    \"SOC_GPTIMER_SUPPORTED\": true,\n    \"SOC_HMAC_SUPPORTED\": true,\n    \"SOC_I2C_CMD_REG_NUM\": 8,\n    \"SOC_I2C_FIFO_LEN\": 32,\n    \"SOC_I2C_NUM\": 2,\n    \"SOC_I2C_SUPPORTED\": true,\n    \"SOC_I2C_SUPPORT_HW_CLR_BUS\": true,\n    \"SOC_I2C_SUPPORT_RTC\": true,\n    \"SOC_I2C_SUPPORT_SLAVE\": true,\n    \"SOC_I2C_SUPPORT_XTAL\": true,\n    \"SOC_I2S_HW_VERSION_2\": true,\n    \"SOC_I2S_NUM\": 2,\n    \"SOC_I2S_PDM_MAX_RX_LINES\": 4,\n    \"SOC_I2S_PDM_MAX_TX_LINES\": 2,\n    \"SOC_I2S_SUPPORTED\": true,\n    \"SOC_I2S_SUPPORTS_PCM\": true,\n    \"SOC_I2S_SUPPORTS_PDM\": true,\n    \"SOC_I2S_SUPPORTS_PDM_RX\": true,\n    \"SOC_I2S_SUPPORTS_PDM_TX\": true,\n    \"SOC_I2S_SUPPORTS_PLL_F160M\": true,\n    \"SOC_I2S_SUPPORTS_TDM\": true,\n    \"SOC_I2S_SUPPORTS_XTAL\": true,\n    \"SOC_LCDCAM_SUPPORTED\": true,\n    \"SOC_LCD_I80_BUSES\": 1,\n    \"SOC_LCD_I80_BUS_WIDTH\": 16,\n    \"SOC_LCD_I80_SUPPORTED\": true,\n    \"SOC_LCD_RGB_DATA_WIDTH\": 16,\n    \"SOC_LCD_RGB_PANELS\": 1,\n    \"SOC_LCD_RGB_SUPPORTED\": true,\n    \"SOC_LCD_SUPPORT_RGB_YUV_CONV\": true,\n    \"SOC_LEDC_CHANNEL_NUM\": 8,\n    \"SOC_LEDC_SUPPORTED\": true,\n    \"SOC_LEDC_SUPPORT_APB_CLOCK\": true,\n    \"SOC_LEDC_SUPPORT_FADE_STOP\": true,\n    \"SOC_LEDC_SUPPORT_XTAL_CLOCK\": true,\n    \"SOC_LEDC_TIMER_BIT_WIDTH\": 14,\n    \"SOC_MAC_BB_PD_MEM_SIZE\": 192,\n    \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\": 3,\n    \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\": true,\n    \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\": 2,\n    \"SOC_MCPWM_GENERATORS_PER_OPERATOR\": 2,\n    \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\": 3,\n    \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\": 3,\n    \"SOC_MCPWM_GROUPS\": 2,\n    \"SOC_MCPWM_OPERATORS_PER_GROUP\": 3,\n    \"SOC_MCPWM_SUPPORTED\": true,\n    \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\": true,\n    \"SOC_MCPWM_TIMERS_PER_GROUP\": 3,\n    \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\": 2,\n    \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\": 16,\n    \"SOC_MEMPROT_MEM_ALIGN_SIZE\": 256,\n    \"SOC_MEMPROT_SUPPORTED\": true,\n    \"SOC_MEMSPI_IS_INDEPENDENT\": true,\n    \"SOC_MEMSPI_SRC_FREQ_120M\": true,\n    \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\": true,\n    \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\": true,\n    \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\": true,\n    \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\": 1,\n    \"SOC_MMU_PERIPH_NUM\": 1,\n    \"SOC_MPI_SUPPORTED\": true,\n    \"SOC_MPU_MIN_REGION_SIZE\": 536870912,\n    \"SOC_MPU_REGIONS_MAX_NUM\": 8,\n    \"SOC_PCNT_CHANNELS_PER_UNIT\": 2,\n    \"SOC_PCNT_GROUPS\": 1,\n    \"SOC_PCNT_SUPPORTED\": true,\n    \"SOC_PCNT_THRES_POINT_PER_UNIT\": 2,\n    \"SOC_PCNT_UNITS_PER_GROUP\": 4,\n    \"SOC_PHY_COMBO_MODULE\": true,\n    \"SOC_PHY_DIG_REGS_MEM_SIZE\": 21,\n    \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\": true,\n    \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\": true,\n    \"SOC_PM_SUPPORT_BT_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_CPU_PD\": true,\n    \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\": true,\n    \"SOC_PM_SUPPORT_EXT0_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_EXT1_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_EXT_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_MAC_BB_PD\": true,\n    \"SOC_PM_SUPPORT_MODEM_PD\": true,\n    \"SOC_PM_SUPPORT_RC_FAST_PD\": true,\n    \"SOC_PM_SUPPORT_RTC_PERIPH_PD\": true,\n    \"SOC_PM_SUPPORT_TAGMEM_PD\": true,\n    \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_VDDSDIO_PD\": true,\n    \"SOC_PM_SUPPORT_WIFI_WAKEUP\": true,\n    \"SOC_PSRAM_DMA_CAPABLE\": true,\n    \"SOC_RISCV_COPROC_SUPPORTED\": true,\n    \"SOC_RMT_CHANNELS_PER_GROUP\": 8,\n    \"SOC_RMT_GROUPS\": 1,\n    \"SOC_RMT_MEM_WORDS_PER_CHANNEL\": 48,\n    \"SOC_RMT_RX_CANDIDATES_PER_GROUP\": 4,\n    \"SOC_RMT_SUPPORTED\": true,\n    \"SOC_RMT_SUPPORT_APB\": true,\n    \"SOC_RMT_SUPPORT_DMA\": true,\n    \"SOC_RMT_SUPPORT_RC_FAST\": true,\n    \"SOC_RMT_SUPPORT_RX_DEMODULATION\": true,\n    \"SOC_RMT_SUPPORT_RX_PINGPONG\": true,\n    \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\": true,\n    \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\": true,\n    \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\": true,\n    \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\": true,\n    \"SOC_RMT_SUPPORT_TX_SYNCHRO\": true,\n    \"SOC_RMT_SUPPORT_XTAL\": true,\n    \"SOC_RMT_TX_CANDIDATES_PER_GROUP\": 4,\n    \"SOC_RSA_MAX_BIT_LEN\": 4096,\n    \"SOC_RTCIO_HOLD_SUPPORTED\": true,\n    \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\": true,\n    \"SOC_RTCIO_PIN_COUNT\": 22,\n    \"SOC_RTCIO_WAKE_SUPPORTED\": true,\n    \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\": 128,\n    \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\": 549,\n    \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\": 128,\n    \"SOC_RTC_FAST_MEM_SUPPORTED\": true,\n    \"SOC_RTC_MEM_SUPPORTED\": true,\n    \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\": true,\n    \"SOC_RTC_SLOW_MEM_SUPPORTED\": true,\n    \"SOC_SDMMC_HOST_SUPPORTED\": true,\n    \"SOC_SDMMC_NUM_SLOTS\": 2,\n    \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\": true,\n    \"SOC_SDMMC_USE_GPIO_MATRIX\": true,\n    \"SOC_SDM_CHANNELS_PER_GROUP\": 8,\n    \"SOC_SDM_CLK_SUPPORT_APB\": true,\n    \"SOC_SDM_GROUPS\": true,\n    \"SOC_SDM_SUPPORTED\": true,\n    \"SOC_SECURE_BOOT_SUPPORTED\": true,\n    \"SOC_SECURE_BOOT_V2_RSA\": true,\n    \"SOC_SHA_DMA_MAX_BUFFER_SIZE\": 3968,\n    \"SOC_SHA_GDMA\": true,\n    \"SOC_SHA_SUPPORTED\": true,\n    \"SOC_SHA_SUPPORT_DMA\": true,\n    \"SOC_SHA_SUPPORT_RESUME\": true,\n    \"SOC_SHA_SUPPORT_SHA1\": true,\n    \"SOC_SHA_SUPPORT_SHA224\": true,\n    \"SOC_SHA_SUPPORT_SHA256\": true,\n    \"SOC_SHA_SUPPORT_SHA384\": true,\n    \"SOC_SHA_SUPPORT_SHA512\": true,\n    \"SOC_SHA_SUPPORT_SHA512_224\": true,\n    \"SOC_SHA_SUPPORT_SHA512_256\": true,\n    \"SOC_SHA_SUPPORT_SHA512_T\": true,\n    \"SOC_SPIRAM_SUPPORTED\": true,\n    \"SOC_SPIRAM_XIP_SUPPORTED\": true,\n    \"SOC_SPI_MAXIMUM_BUFFER_SIZE\": 64,\n    \"SOC_SPI_MAX_CS_NUM\": 6,\n    \"SOC_SPI_MAX_PRE_DIVIDER\": 16,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\": true,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\": true,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\": true,\n    \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\": true,\n    \"SOC_SPI_MEM_SUPPORT_OPI_MODE\": true,\n    \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\": true,\n    \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\": true,\n    \"SOC_SPI_MEM_SUPPORT_WRAP\": true,\n    \"SOC_SPI_PERIPH_NUM\": 3,\n    \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\": true,\n    \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\": true,\n    \"SOC_SPI_SUPPORT_CD_SIG\": true,\n    \"SOC_SPI_SUPPORT_CLK_APB\": true,\n    \"SOC_SPI_SUPPORT_CLK_XTAL\": true,\n    \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\": true,\n    \"SOC_SPI_SUPPORT_DDRCLK\": true,\n    \"SOC_SPI_SUPPORT_OCT\": true,\n    \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\": true,\n    \"SOC_SUPPORTS_SECURE_DL_MODE\": true,\n    \"SOC_SUPPORT_COEXISTENCE\": true,\n    \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\": true,\n    \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\": true,\n    \"SOC_SYSTIMER_ALARM_NUM\": 3,\n    \"SOC_SYSTIMER_BIT_WIDTH_HI\": 20,\n    \"SOC_SYSTIMER_BIT_WIDTH_LO\": 32,\n    \"SOC_SYSTIMER_COUNTER_NUM\": 2,\n    \"SOC_SYSTIMER_FIXED_DIVIDER\": true,\n    \"SOC_SYSTIMER_INT_LEVEL\": true,\n    \"SOC_SYSTIMER_SUPPORTED\": true,\n    \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\": true,\n    \"SOC_TEMP_SENSOR_SUPPORTED\": true,\n    \"SOC_TIMER_GROUPS\": 2,\n    \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\": 54,\n    \"SOC_TIMER_GROUP_SUPPORT_APB\": true,\n    \"SOC_TIMER_GROUP_SUPPORT_XTAL\": true,\n    \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\": 2,\n    \"SOC_TIMER_GROUP_TOTAL_TIMERS\": 4,\n    \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\": 255,\n    \"SOC_TOUCH_PAD_THRESHOLD_MAX\": 2097151,\n    \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\": 3,\n    \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\": true,\n    \"SOC_TOUCH_SENSOR_NUM\": 15,\n    \"SOC_TOUCH_SENSOR_SUPPORTED\": true,\n    \"SOC_TOUCH_VERSION_2\": true,\n    \"SOC_TWAI_BRP_MAX\": 16384,\n    \"SOC_TWAI_BRP_MIN\": 2,\n    \"SOC_TWAI_CLK_SUPPORT_APB\": true,\n    \"SOC_TWAI_CONTROLLER_NUM\": 1,\n    \"SOC_TWAI_SUPPORTED\": true,\n    \"SOC_TWAI_SUPPORTS_RX_STATUS\": true,\n    \"SOC_UART_BITRATE_MAX\": 5000000,\n    \"SOC_UART_FIFO_LEN\": 128,\n    \"SOC_UART_NUM\": 3,\n    \"SOC_UART_REQUIRE_CORE_RESET\": true,\n    \"SOC_UART_SUPPORTED\": true,\n    \"SOC_UART_SUPPORT_APB_CLK\": true,\n    \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\": true,\n    \"SOC_UART_SUPPORT_RTC_CLK\": true,\n    \"SOC_UART_SUPPORT_WAKEUP_INT\": true,\n    \"SOC_UART_SUPPORT_XTAL_CLK\": true,\n    \"SOC_ULP_FSM_SUPPORTED\": true,\n    \"SOC_ULP_HAS_ADC\": true,\n    \"SOC_ULP_SUPPORTED\": true,\n    \"SOC_USB_OTG_SUPPORTED\": true,\n    \"SOC_USB_PERIPH_NUM\": true,\n    \"SOC_USB_SERIAL_JTAG_SUPPORTED\": true,\n    \"SOC_WIFI_CSI_SUPPORT\": true,\n    \"SOC_WIFI_FTM_SUPPORT\": true,\n    \"SOC_WIFI_GCMP_SUPPORT\": true,\n    \"SOC_WIFI_HW_TSF\": true,\n    \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\": 12,\n    \"SOC_WIFI_MESH_SUPPORT\": true,\n    \"SOC_WIFI_SUPPORTED\": true,\n    \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\": true,\n    \"SOC_WIFI_WAPI_SUPPORT\": true,\n    \"SOC_XTAL_SUPPORT_40M\": true,\n    \"SOC_XT_WDT_SUPPORTED\": true,\n    \"SPI_FLASH_BROWNOUT_RESET\": true,\n    \"SPI_FLASH_BROWNOUT_RESET_XMC\": true,\n    \"SPI_FLASH_BYPASS_BLOCK_ERASE\": false,\n    \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\": false,\n    \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\": true,\n    \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\": false,\n    \"SPI_FLASH_DANGEROUS_WRITE_FAILS\": false,\n    \"SPI_FLASH_ENABLE_COUNTERS\": false,\n    \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\": true,\n    \"SPI_FLASH_ERASE_YIELD_DURATION_MS\": 20,\n    \"SPI_FLASH_ERASE_YIELD_TICKS\": 1,\n    \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\": false,\n    \"SPI_FLASH_ROM_DRIVER_PATCH\": true,\n    \"SPI_FLASH_ROM_IMPL\": false,\n    \"SPI_FLASH_SIZE_OVERRIDE\": false,\n    \"SPI_FLASH_SUPPORT_BOYA_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_GD_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_ISSI_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_MXIC_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_TH_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_WINBOND_CHIP\": true,\n    \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_GD_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_TH_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_XMC_SUPPORTED\": true,\n    \"SPI_FLASH_VERIFY_WRITE\": false,\n    \"SPI_FLASH_WRITE_CHUNK_SIZE\": 8192,\n    \"SPI_FLASH_YIELD_DURING_ERASE\": true,\n    \"XTAL_FREQ\": 40,\n    \"XTAL_FREQ_40\": true\n}"
  },
  {
    "path": "Code/build/bootloader/config.env",
    "content": "{\n    \"COMPONENT_KCONFIGS\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig\",\n    \"COMPONENT_KCONFIGS_PROJBUILD\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild\",\n    \"COMPONENT_SDKCONFIG_RENAMES\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/sdkconfig.rename\",\n    \"IDF_TARGET\": \"esp32s3\",\n    \"IDF_ENV_FPGA\": \"\",\n    \"IDF_PATH\": \"C:/Espressif/frameworks/esp-idf-v5.1.2\",\n    \"COMPONENT_KCONFIGS_SOURCE_FILE\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/kconfigs.in\",\n    \"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/kconfigs_projbuild.in\"\n}\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/bootloader/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/newlib/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esptool_py/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/partition_table/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/freertos/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/efuse/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_common/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_rom/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esp_system/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/esptool_py/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/freertos/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/hal/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/log/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/main/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/newlib/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/partition_table/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/soc/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/spi_flash/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/esp-idf/xtensa/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/bootloader\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/bootloader/kconfigs.in",
    "content": "source \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig\""
  },
  {
    "path": "Code/build/bootloader/kconfigs_projbuild.in",
    "content": "source \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild\""
  },
  {
    "path": "Code/build/bootloader/project_description.json",
    "content": "{\n    \"version\":            \"1\",\n    \"project_name\":       \"bootloader\",\n    \"project_version\":    \"v5.1.2-dirty\",\n    \"project_path\":       \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\",\n    \"idf_path\":           \"C:/Espressif/frameworks/esp-idf-v5.1.2\",\n    \"build_dir\":          \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\",\n    \"config_file\":        \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\",\n    \"config_defaults\":    \"\",\n    \"bootloader_elf\":     \"\",\n    \"app_elf\":            \"bootloader.elf\",\n    \"app_bin\":            \"bootloader.bin\",\n    \"build_type\":         \"flash_app\",\n    \"git_revision\":       \"v5.1.2-dirty\",\n    \"target\":             \"esp32s3\",\n    \"rev\":                \"\",\n    \"min_rev\":            \"0\",\n    \"max_rev\":            \"99\",\n    \"phy_data_partition\": \"\",\n    \"monitor_baud\" :      \"115200\",\n    \"monitor_toolprefix\": \"xtensa-esp32s3-elf-\",\n    \"c_compiler\":         \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\",\n    \"config_environment\" : {\n        \"COMPONENT_KCONFIGS\" : \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig\",\n        \"COMPONENT_KCONFIGS_PROJBUILD\" : \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild\"\n    },\n    \"common_component_reqs\": [ \"log\", \"esp_rom\", \"esp_common\", \"esp_hw_support\", \"newlib\", \"xtensa\" ],\n    \"build_components\" : [ \"bootloader\", \"bootloader_support\", \"efuse\", \"esp_app_format\", \"esp_common\", \"esp_hw_support\", \"esp_rom\", \"esp_system\", \"esptool_py\", \"freertos\", \"hal\", \"log\", \"main\", \"micro-ecc\", \"newlib\", \"partition_table\", \"soc\", \"spi_flash\", \"xtensa\", \"\" ],\n    \"build_component_paths\" : [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\", \"\" ],\n    \"build_component_info\" : {\n        \"bootloader\": {\n            \"alias\": \"idf::bootloader\",\n            \"target\": \"___idf_bootloader\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_bootloader\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"partition_table\", \"esptool_py\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"bootloader_support\": {\n            \"alias\": \"idf::bootloader_support\",\n            \"target\": \"___idf_bootloader_support\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_bootloader_support\",\n            \"reqs\": [ \"soc\" ],\n            \"priv_reqs\": [ \"micro-ecc\", \"spi_flash\", \"efuse\", \"esp_app_format\", \"hal\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common_loader.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_mem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_efuse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_encrypt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/secure_boot.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_partitions.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp_image_format.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_loader.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_console.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_console_loader.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_sha.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_soc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_panic.c\" ],\n            \"include_dirs\": [ \"include\", \"bootloader_flash/include\", \"private_include\" ]\n        },\n        \"efuse\": {\n            \"alias\": \"idf::efuse\",\n            \"target\": \"___idf_efuse\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_efuse\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"bootloader_support\", \"soc\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/efuse/libefuse.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_fields.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_rtc_calib.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_api.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_fields.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3/include\" ]\n        },\n        \"esp_app_format\": {\n            \"alias\": \"idf::esp_app_format\",\n            \"target\": \"___idf_esp_app_format\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_app_format\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_app_format/libesp_app_format.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/esp_app_desc.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_common\": {\n            \"alias\": \"idf::esp_common\",\n            \"target\": \"___idf_esp_common\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_common\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_common/libesp_common.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/src/esp_err_to_name.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_hw_support\": {\n            \"alias\": \"idf::esp_hw_support\",\n            \"target\": \"___idf_esp_hw_support\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_hw_support\",\n            \"reqs\": [ \"soc\" ],\n            \"priv_reqs\": [ \"efuse\", \"spi_flash\", \"bootloader_support\", \"esp_system\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/cpu.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_memory_utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/cpu_region_protect.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_sleep.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_time.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/chip_info.c\" ],\n            \"include_dirs\": [ \"include\", \"include/soc\", \"include/soc/esp32s3\" ]\n        },\n        \"esp_rom\": {\n            \"alias\": \"idf::esp_rom\",\n            \"target\": \"___idf_esp_rom\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_rom\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"hal\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_rom/libesp_rom.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_crc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_sys.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_uart.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_spiflash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_efuse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_longjmp.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_systimer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_wdt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S\" ],\n            \"include_dirs\": [ \"include\", \"include/esp32s3\", \"esp32s3\" ]\n        },\n        \"esp_system\": {\n            \"alias\": \"idf::esp_system\",\n            \"target\": \"___idf_esp_system\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_system\",\n            \"reqs\": [ \"spi_flash\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/esp_system/libesp_system.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_err.c\" ],\n            \"include_dirs\": []\n        },\n        \"esptool_py\": {\n            \"alias\": \"idf::esptool_py\",\n            \"target\": \"___idf_esptool_py\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_esptool_py\",\n            \"reqs\": [ \"bootloader\" ],\n            \"priv_reqs\": [ \"partition_table\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"freertos\": {\n            \"alias\": \"idf::freertos\",\n            \"target\": \"___idf_freertos\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_freertos\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"hal\": {\n            \"alias\": \"idf::hal\",\n            \"target\": \"___idf_hal\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_hal\",\n            \"reqs\": [ \"soc\", \"esp_rom\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/hal/libhal.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mpu_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/efuse_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/efuse_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mmu_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/cache_hal.c\" ],\n            \"include_dirs\": [ \"esp32s3/include\", \"include\", \"platform_port/include\" ]\n        },\n        \"log\": {\n            \"alias\": \"idf::log\",\n            \"target\": \"___idf_log\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_log\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"hal\", \"esp_hw_support\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/log/liblog.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_buffers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_noos.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"main\": {\n            \"alias\": \"idf::main\",\n            \"target\": \"___idf_main\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_main\",\n            \"reqs\": [ \"bootloader\", \"bootloader_support\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/main/libmain.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/main/bootloader_start.c\" ],\n            \"include_dirs\": []\n        },\n        \"micro-ecc\": {\n            \"alias\": \"idf::micro-ecc\",\n            \"target\": \"___idf_micro-ecc\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_micro-ecc\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c\" ],\n            \"include_dirs\": [ \".\", \"micro-ecc\" ]\n        },\n        \"newlib\": {\n            \"alias\": \"idf::newlib\",\n            \"target\": \"___idf_newlib\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_newlib\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": [ \"platform_include\" ]\n        },\n        \"partition_table\": {\n            \"alias\": \"idf::partition_table\",\n            \"target\": \"___idf_partition_table\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_partition_table\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esptool_py\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"soc\": {\n            \"alias\": \"idf::soc\",\n            \"target\": \"___idf_soc\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_soc\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/soc/libsoc.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/lldesc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/dport_access_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/interrupts.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gpio_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/uart_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/adc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/dedic_gpio_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gdma_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/spi_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ledc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/pcnt_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rmt_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdm_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2s_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2c_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/temperature_sensor_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/timer_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/lcd_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/mcpwm_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdmmc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/touch_sensor_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/twai_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_otg_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rtc_io_periph.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3\", \"esp32s3/include\" ]\n        },\n        \"spi_flash\": {\n            \"alias\": \"idf::spi_flash\",\n            \"target\": \"___idf_spi_flash\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_spi_flash\",\n            \"reqs\": [ \"hal\" ],\n            \"priv_reqs\": [ \"bootloader_support\", \"soc\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/spi_flash/libspi_flash.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_wrap.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"xtensa\": {\n            \"alias\": \"idf::xtensa\",\n            \"target\": \"___idf_xtensa\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_xtensa\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/esp-idf/xtensa/libxtensa.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/eri.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xt_trax.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3/include\" ]\n        }\n    },\n    \"debug_prefix_map_gdbinit\": \"\"\n}\n"
  },
  {
    "path": "Code/build/bootloader/project_elf_src_esp32s3.c",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-flash_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin\n"
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-done",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-download",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-install",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt",
    "content": "# This is a generated file and its contents are an internal implementation detail.\n# The download step will be re-executed if anything in this file changes.\n# No other meaning or use of this file is supported.\n\nmethod=source_dir\ncommand=\nsource_dir=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\nwork_dir=\n\n"
  },
  {
    "path": "Code/build/bootloader-prefix/src/bootloader-stamp/bootloader-update",
    "content": ""
  },
  {
    "path": "Code/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt",
    "content": "cmd='C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe;-DSDKCONFIG=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig;-DIDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=python;-DEXTRA_COMPONENT_DIRS=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway;-GNinja;<SOURCE_DIR><SOURCE_SUBDIR>'\n"
  },
  {
    "path": "Code/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake",
    "content": "# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying\n# file Copyright.txt or https://cmake.org/licensing for details.\n\ncmake_minimum_required(VERSION 3.5)\n\nfile(MAKE_DIRECTORY\n  \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/tmp\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src\"\n  \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp\"\n)\n\nset(configSubDirs )\nforeach(subDir IN LISTS configSubDirs)\n    file(MAKE_DIRECTORY \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/${subDir}\")\nendforeach()\nif(cfgdir)\n  file(MAKE_DIRECTORY \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp${cfgdir}\") # cfgdir has leading slash\nendif()\n"
  },
  {
    "path": "Code/build/build.ninja",
    "content": "# CMAKE generated file: DO NOT EDIT!\n# Generated by \"Ninja\" Generator, CMake Version 3.24\n\n# This file contains all the build statements describing the\n# compilation DAG.\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# \n# Which is the root file.\n# =============================================================================\n\n# =============================================================================\n# Project: main\n# Configurations: \n# =============================================================================\n\n#############################################\n# Minimal version of Ninja required by this file\n\nninja_required_version = 1.5\n\n# =============================================================================\n# Include auxiliary files.\n\n\n#############################################\n# Include rules file.\n\ninclude CMakeFiles/rules.ninja\n\n# =============================================================================\n\n#############################################\n# Logical path to working directory; prefix for absolute paths.\n\ncmake_ninja_workdir = C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/\n\n#############################################\n# Utility command for menuconfig\n\nbuild menuconfig: phony CMakeFiles/menuconfig\n\n\n#############################################\n# Utility command for confserver\n\nbuild confserver: phony CMakeFiles/confserver\n\n\n#############################################\n# Utility command for save-defconfig\n\nbuild save-defconfig: phony CMakeFiles/save-defconfig\n\n\n#############################################\n# Utility command for bootloader\n\nbuild bootloader: phony CMakeFiles/bootloader CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-update esp-idf/partition_table/partition_table_bin\n\n\n#############################################\n# Utility command for gen_project_binary\n\nbuild gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp main.elf\n\n\n#############################################\n# Utility command for app\n\nbuild app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary\n\n\n#############################################\n# Utility command for erase_flash\n\nbuild erase_flash: phony CMakeFiles/erase_flash\n\n\n#############################################\n# Utility command for monitor\n\nbuild monitor: phony CMakeFiles/monitor\n\n\n#############################################\n# Utility command for flash\n\nbuild flash: phony CMakeFiles/flash app bootloader esp-idf/partition_table/partition_table_bin spiffs_storage_bin\n\n\n#############################################\n# Utility command for encrypted-flash\n\nbuild encrypted-flash: phony CMakeFiles/encrypted-flash\n\n\n#############################################\n# Utility command for _project_elf_src\n\nbuild _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.c\n\n# =============================================================================\n# Object build statements for EXECUTABLE target main.elf\n\n\n#############################################\n# Order-only phony target for main.elf\n\nbuild cmake_object_order_depends_target_main.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_st7789 cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp_system/__ldgen_output_sections.ld project_elf_src_esp32s3.c\n\nbuild CMakeFiles/main.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__main.2eelf_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/project_elf_src_esp32s3.c || cmake_object_order_depends_target_main.elf\n  DEFINES = -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H\n  DEP_FILE = CMakeFiles\\main.elf.dir\\project_elf_src_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always\n  INCLUDES = -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = CMakeFiles\\main.elf.dir\n  OBJECT_FILE_DIR = CMakeFiles\\main.elf.dir\n  TARGET_COMPILE_PDB = CMakeFiles\\main.elf.dir\\\n  TARGET_PDB = main.elf.pdb\n\n\n# =============================================================================\n# Link build statements for EXECUTABLE target main.elf\n\n\n#############################################\n# Link the executable main.elf\n\nbuild main.elf: CXX_EXECUTABLE_LINKER__main.2eelf_ CMakeFiles/main.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/st7789/libst7789.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/libxt_hal.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_system/ld/memory.ld esp-idf/esp_system/ld/sections.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ld/esp32s3.peripherals.ld || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a\n  FLAGS = -mlongcalls\n  LINK_FLAGS = -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.map -Wl,--no-warn-rwx-segments -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.peripherals.ld -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.newlib.ld -T esp32s3.rom.version.ld -T memory.ld -T sections.ld\n  LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/app_trace/libapp_trace.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/unity/libunity.a  esp-idf/cmock/libcmock.a  esp-idf/console/libconsole.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/esp_hid/libesp_hid.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/esp_lcd/libesp_lcd.a  esp-idf/protobuf-c/libprotobuf-c.a  esp-idf/protocomm/libprotocomm.a  esp-idf/esp_local_ctrl/libesp_local_ctrl.a  esp-idf/espcoredump/libespcoredump.a  esp-idf/wear_levelling/libwear_levelling.a  esp-idf/sdmmc/libsdmmc.a  esp-idf/fatfs/libfatfs.a  esp-idf/json/libjson.a  esp-idf/mqtt/libmqtt.a  esp-idf/perfmon/libperfmon.a  esp-idf/spiffs/libspiffs.a  esp-idf/touch_element/libtouch_element.a  esp-idf/ulp/libulp.a  esp-idf/usb/libusb.a  esp-idf/wifi_provisioning/libwifi_provisioning.a  esp-idf/main/libmain.a  esp-idf/st7789/libst7789.a  esp-idf/app_trace/libapp_trace.a  esp-idf/app_trace/libapp_trace.a  esp-idf/cmock/libcmock.a  esp-idf/unity/libunity.a  esp-idf/esp_hid/libesp_hid.a  esp-idf/esp_lcd/libesp_lcd.a  esp-idf/esp_local_ctrl/libesp_local_ctrl.a  esp-idf/espcoredump/libespcoredump.a  esp-idf/fatfs/libfatfs.a  esp-idf/wear_levelling/libwear_levelling.a  esp-idf/sdmmc/libsdmmc.a  esp-idf/mqtt/libmqtt.a  esp-idf/perfmon/libperfmon.a  esp-idf/spiffs/libspiffs.a  esp-idf/touch_element/libtouch_element.a  esp-idf/usb/libusb.a  esp-idf/wifi_provisioning/libwifi_provisioning.a  esp-idf/protocomm/libprotocomm.a  esp-idf/console/libconsole.a  esp-idf/protobuf-c/libprotobuf-c.a  esp-idf/json/libjson.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  esp-idf/xtensa/libxtensa.a  esp-idf/esp_ringbuf/libesp_ringbuf.a  esp-idf/efuse/libefuse.a  esp-idf/driver/libdriver.a  esp-idf/esp_pm/libesp_pm.a  esp-idf/mbedtls/libmbedtls.a  esp-idf/esp_app_format/libesp_app_format.a  esp-idf/bootloader_support/libbootloader_support.a  esp-idf/esp_partition/libesp_partition.a  esp-idf/app_update/libapp_update.a  esp-idf/esp_mm/libesp_mm.a  esp-idf/spi_flash/libspi_flash.a  esp-idf/pthread/libpthread.a  esp-idf/esp_system/libesp_system.a  esp-idf/esp_rom/libesp_rom.a  esp-idf/hal/libhal.a  esp-idf/log/liblog.a  esp-idf/heap/libheap.a  esp-idf/soc/libsoc.a  esp-idf/esp_hw_support/libesp_hw_support.a  esp-idf/freertos/libfreertos.a  esp-idf/newlib/libnewlib.a  esp-idf/cxx/libcxx.a  esp-idf/esp_common/libesp_common.a  esp-idf/esp_timer/libesp_timer.a  esp-idf/esp_event/libesp_event.a  esp-idf/nvs_flash/libnvs_flash.a  esp-idf/esp_phy/libesp_phy.a  esp-idf/vfs/libvfs.a  esp-idf/lwip/liblwip.a  esp-idf/esp_netif/libesp_netif.a  esp-idf/wpa_supplicant/libwpa_supplicant.a  esp-idf/esp_coex/libesp_coex.a  esp-idf/esp_wifi/libesp_wifi.a  esp-idf/http_parser/libhttp_parser.a  esp-idf/esp-tls/libesp-tls.a  esp-idf/esp_adc/libesp_adc.a  esp-idf/esp_eth/libesp_eth.a  esp-idf/esp_gdbstub/libesp_gdbstub.a  esp-idf/tcp_transport/libtcp_transport.a  esp-idf/esp_http_client/libesp_http_client.a  esp-idf/esp_http_server/libesp_http_server.a  esp-idf/esp_https_ota/libesp_https_ota.a  esp-idf/ulp/libulp.a  esp-idf/mbedtls/mbedtls/library/libmbedtls.a  esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a  esp-idf/mbedtls/mbedtls/library/libmbedx509.a  esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a  esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libcore.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libespnow.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libmesh.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libnet80211.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libpp.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libsmartconfig.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3/libwapi.a  C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/libxt_hal.a  -u esp_app_desc  -u pthread_include_pthread_impl  -u pthread_include_pthread_cond_var_impl  -u pthread_include_pthread_local_storage_impl  -u pthread_include_pthread_rwlock_impl  -u pthread_include_pthread_semaphore_impl  -u ld_include_highint_hdl  -u start_app  -u start_app_other_cores  -u __ubsan_include  -Wl,--wrap=longjmp  -u __assert_func  -Wl,--undefined=uxTopUsedPriority  -Wl,--undefined=FreeRTOS_openocd_params  -u app_main  -lc  -lm  esp-idf/newlib/libnewlib.a  -u newlib_include_heap_impl  -u newlib_include_syscalls_impl  -u newlib_include_pthread_impl  -u newlib_include_assert_impl  -Wl,--wrap=_Unwind_SetEnableExceptionFdeSorting  -Wl,--wrap=__register_frame_info_bases  -Wl,--wrap=__register_frame_info  -Wl,--wrap=__register_frame  -Wl,--wrap=__register_frame_info_table_bases  -Wl,--wrap=__register_frame_info_table  -Wl,--wrap=__register_frame_table  -Wl,--wrap=__deregister_frame_info_bases  -Wl,--wrap=__deregister_frame_info  -Wl,--wrap=_Unwind_Find_FDE  -Wl,--wrap=_Unwind_GetGR  -Wl,--wrap=_Unwind_GetCFA  -Wl,--wrap=_Unwind_GetIP  -Wl,--wrap=_Unwind_GetIPInfo  -Wl,--wrap=_Unwind_GetRegionStart  -Wl,--wrap=_Unwind_GetDataRelBase  -Wl,--wrap=_Unwind_GetTextRelBase  -Wl,--wrap=_Unwind_SetIP  -Wl,--wrap=_Unwind_SetGR  -Wl,--wrap=_Unwind_GetLanguageSpecificData  -Wl,--wrap=_Unwind_FindEnclosingFunction  -Wl,--wrap=_Unwind_Resume  -Wl,--wrap=_Unwind_RaiseException  -Wl,--wrap=_Unwind_DeleteException  -Wl,--wrap=_Unwind_ForcedUnwind  -Wl,--wrap=_Unwind_Resume_or_Rethrow  -Wl,--wrap=_Unwind_Backtrace  -Wl,--wrap=__cxa_call_unexpected  -Wl,--wrap=__gxx_personality_v0  -u __cxa_guard_dummy  -lstdc++  esp-idf/pthread/libpthread.a  -lgcc  esp-idf/cxx/libcxx.a  -u __cxx_fatal_exception  -u include_esp_phy_override  -lphy  -lbtbb  esp-idf/esp_phy/libesp_phy.a  -lphy  -lbtbb  esp-idf/esp_phy/libesp_phy.a  -lphy  -lbtbb  -u vfs_include_syscalls_impl\n  LINK_PATH = -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ld   -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3/ld   -LC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld   -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/lib/esp32s3   -LC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/esp32s3\n  OBJECT_DIR = CMakeFiles\\main.elf.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = CMakeFiles\\main.elf.dir\\\n  TARGET_FILE = main.elf\n  TARGET_PDB = main.elf.pdb\n  RSP_FILE = CMakeFiles\\main.elf.rsp\n\n\n#############################################\n# Utility command for size\n\nbuild size: phony CMakeFiles/size\n\n\n#############################################\n# Utility command for size-files\n\nbuild size-files: phony CMakeFiles/size-files\n\n\n#############################################\n# Utility command for size-components\n\nbuild size-components: phony CMakeFiles/size-components\n\n\n#############################################\n# Utility command for dfu\n\nbuild dfu: phony CMakeFiles/dfu bootloader gen_project_binary\n\n\n#############################################\n# Utility command for dfu-list\n\nbuild dfu-list: phony CMakeFiles/dfu-list\n\n\n#############################################\n# Utility command for dfu-flash\n\nbuild dfu-flash: phony CMakeFiles/dfu-flash\n\n\n#############################################\n# Utility command for uf2-app\n\nbuild uf2-app: phony CMakeFiles/uf2-app gen_project_binary\n\n\n#############################################\n# Utility command for uf2\n\nbuild uf2: phony CMakeFiles/uf2 bootloader gen_project_binary\n\n\n#############################################\n# Utility command for spiffs_storage_bin\n\nbuild spiffs_storage_bin: phony CMakeFiles/spiffs_storage_bin\n\n\n#############################################\n# Utility command for storage-flash\n\nbuild storage-flash: phony CMakeFiles/storage-flash spiffs_storage_bin\n\n\n#############################################\n# Utility command for encrypted-storage-flash\n\nbuild encrypted-storage-flash: phony CMakeFiles/encrypted-storage-flash\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild edit_cache: phony CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild rebuild_cache: phony CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild CMakeFiles/install.util: CUSTOM_COMMAND all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild install: phony CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild CMakeFiles/install/local.util: CUSTOM_COMMAND all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild install/local: phony CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild CMakeFiles/install/strip.util: CUSTOM_COMMAND all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild install/strip: phony CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for CMakeFiles\\menuconfig\n\nbuild CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --defaults C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig.defaults --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --dont-write-deprecated --output config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/check_term.py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig IDF_TARGET=esp32s3 IDF_ENV_FPGA= python -m menuconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --defaults C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig.defaults --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --output config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\confserver\n\nbuild CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env && python -m kconfserver --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\save-defconfig\n\nbuild CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env && python -m kconfgen --list-separator=semicolon --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --sdkconfig-rename C:/Espressif/frameworks/esp-idf-v5.1.2/sdkconfig.rename --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --defaults C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig.defaults --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env --dont-write-deprecated --output savedefconfig C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig.defaults\"\n  pool = console\n\n\n#############################################\n# Phony custom command for CMakeFiles\\bootloader\n\nbuild CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin\n\n\n#############################################\n# Custom command for CMakeFiles\\bootloader-complete\n\nbuild CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done | ${cmake_ninja_workdir}CMakeFiles/bootloader-complete ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E make_directory C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/bootloader-complete && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-done\"\n  DESC = Completed 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-build\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-build ${cmake_ninja_workdir}bootloader/bootloader.elf ${cmake_ninja_workdir}bootloader/bootloader.bin ${cmake_ninja_workdir}bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --build .\"\n  DESC = Performing build step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-configure\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-configure | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DSDKCONFIG=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig -DIDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -DIDF_TARGET=esp32s3 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=python -DEXTRA_COMPONENT_DIRS=C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader -DPROJECT_SOURCE_DIR=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway -GNinja C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure\"\n  DESC = Performing configure step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-download\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-download | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo_append && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-download\"\n  DESC = No download step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-install\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-install | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo_append && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-install\"\n  DESC = No install step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-mkdir\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-mkdir | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -Dcfgdir= -P C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir\"\n  DESC = Creating directories for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-patch\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-patch | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo_append && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch\"\n  DESC = No patch step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Custom command for bootloader-prefix\\src\\bootloader-stamp\\bootloader-update\n\nbuild bootloader-prefix/src/bootloader-stamp/bootloader-update | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo_append && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader-prefix/src/bootloader-stamp/bootloader-update\"\n  DESC = No update step for 'bootloader'\n  restat = 1\n\n\n#############################################\n# Phony custom command for CMakeFiles\\gen_project_binary\n\nbuild CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a main.elf\n\n\n#############################################\n# Custom command for .bin_timestamp\n\nbuild .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND main.elf || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --elf-sha256-offset 0xb0 --min-rev-full 0 --max-rev-full 99 -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.elf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Generated C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E md5sum C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin > C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/.bin_timestamp\"\n  DESC = Generating binary image from built executable\n  restat = 1\n\n\n#############################################\n# Phony custom command for CMakeFiles\\app\n\nbuild CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n\n\n#############################################\n# Custom command for CMakeFiles\\erase_flash\n\nbuild CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\monitor\n\nbuild CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--target;esp32s3;--revision;0;C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.elf -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\flash\n\nbuild CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || _project_elf_src app bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf spiffs_storage_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\encrypted-flash\n\nbuild CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Error: The target encrypted-flash requires\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env \"FAIL_MESSAGE=Failed executing target (see errors on lines above)\" C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/fail.cmake\"\n\n\n#############################################\n# Phony custom command for CMakeFiles\\_project_elf_src\n\nbuild CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32s3.c\n\n\n#############################################\n# Custom command for project_elf_src_esp32s3.c\n\nbuild project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E touch C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/project_elf_src_esp32s3.c\"\n  DESC = Generating project_elf_src_esp32s3.c\n  restat = 1\n\n\n#############################################\n# Custom command for CMakeFiles\\size\n\nbuild CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND main.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\size-files\n\nbuild CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND main.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\size-components\n\nbuild CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND main.map\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_SIZE_TOOL=python;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.map -D OUTPUT_JSON= -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_size_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu\n\nbuild CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || _project_elf_src bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkdfu.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/dfu.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/flasher_args.json --pid 9 --flash-size 2MB\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu-list\n\nbuild CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D ESP_DFU_LIST=\"1\" -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_dfu_util.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\dfu-flash\n\nbuild CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D ESP_DFU_BIN=\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/dfu.bin\" -D ESP_DFU_PID=\"9\" -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/run_dfu_util.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\uf2-app\n\nbuild CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkuf2.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/uf2-app.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/flasher_args.json --chip-id 0xc47e5767 --bin app\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\uf2\n\nbuild CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND || _project_elf_src bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/mkuf2.py write -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/uf2.bin --json C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/flasher_args.json --chip-id 0xc47e5767\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\spiffs_storage_bin\n\nbuild CMakeFiles/spiffs_storage_bin | ${cmake_ninja_workdir}CMakeFiles/spiffs_storage_bin: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\n\n\n#############################################\n# Custom command for CMakeFiles\\storage-flash\n\nbuild CMakeFiles/storage-flash | ${cmake_ninja_workdir}CMakeFiles/storage-flash: CUSTOM_COMMAND || spiffs_storage_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@storage-flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for CMakeFiles\\encrypted-storage-flash\n\nbuild CMakeFiles/encrypted-storage-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-storage-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Error: The target encrypted-storage-flash requires\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env \"FAIL_MESSAGE=Failed executing target (see errors on lines above)\" C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/fail.cmake\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/install: phony esp-idf/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_xtensa\n\n\n#############################################\n# Order-only phony target for __idf_xtensa\n\nbuild cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_esp_ringbuf\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\nbuild esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  OBJECT_FILE_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_xtensa\n\n\n#############################################\n# Link the static library esp-idf\\xtensa\\libxtensa.a\n\nbuild esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\__idf_xtensa.pdb\n  TARGET_FILE = esp-idf\\xtensa\\libxtensa.a\n  TARGET_PDB = esp-idf\\xtensa\\libxtensa.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/xtensa/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/xtensa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/xtensa/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/install: phony esp-idf/xtensa/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/xtensa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/xtensa/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/install/local: phony esp-idf/xtensa/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/xtensa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/xtensa/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\xtensa && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/xtensa/install/strip: phony esp-idf/xtensa/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf\n\n\n#############################################\n# Order-only phony target for __idf_esp_ringbuf\n\nbuild cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_efuse\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\__idf_esp_ringbuf.pdb\n  TARGET_PDB = esp-idf\\esp_ringbuf\\libesp_ringbuf.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf\n\n\n#############################################\n# Link the static library esp-idf\\esp_ringbuf\\libesp_ringbuf.a\n\nbuild esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/efuse/libefuse.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\__idf_esp_ringbuf.pdb\n  TARGET_FILE = esp-idf\\esp_ringbuf\\libesp_ringbuf.a\n  TARGET_PDB = esp-idf\\esp_ringbuf\\libesp_ringbuf.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_ringbuf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_ringbuf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_ringbuf/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_ringbuf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_ringbuf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_ringbuf && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_efuse\n\n\n#############################################\n# Order-only phony target for __idf_efuse\n\nbuild cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_driver\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\nbuild esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  OBJECT_FILE_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_efuse\n\n\n#############################################\n# Link the static library esp-idf\\efuse\\libefuse.a\n\nbuild esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/driver/libdriver.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\__idf_efuse.pdb\n  TARGET_FILE = esp-idf\\efuse\\libefuse.a\n  TARGET_PDB = esp-idf\\efuse\\libefuse.pdb\n\n\n#############################################\n# Utility command for efuse-common-table\n\nbuild esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table\n\n\n#############################################\n# Utility command for efuse_common_table\n\nbuild esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table\n\n\n#############################################\n# Utility command for efuse-custom-table\n\nbuild esp-idf/efuse/efuse-custom-table: phony\n\n\n#############################################\n# Utility command for efuse_custom_table\n\nbuild esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table\n\n\n#############################################\n# Utility command for show-efuse-table\n\nbuild esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table\n\n\n#############################################\n# Utility command for show_efuse_table\n\nbuild esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table\n\n\n#############################################\n# Utility command for efuse_test_table\n\nbuild esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/efuse/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse-common-table\n\nbuild esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256\"\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_common_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"efuse_common_table\" is deprecated. Have you wanted to run \"efuse-common-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_custom_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"efuse_custom_table\" is deprecated. Have you wanted to run \"efuse-custom-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\show-efuse-table\n\nbuild esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --info\"\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\show_efuse_table\n\nbuild esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"show_efuse_table\" is deprecated. Have you wanted to run \"show-efuse-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\efuse\\CMakeFiles\\efuse_test_table\n\nbuild esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\efuse && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/efuse_table_gen.py C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_driver\n\n\n#############################################\n# Order-only phony target for __idf_driver\n\nbuild cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_esp_pm\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\gpio.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\gpio_glitch_filter_ops.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/rtc_io.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\rtc_io.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/spi_bus_lock.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\spi_bus_lock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/dedic_gpio.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\dedic_gpio.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_pin_glitch_filter.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\gpio_pin_glitch_filter.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gptimer\\gptimer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gptimer\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer_priv.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gptimer\\gptimer_priv.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gptimer\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_common.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_std.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_std.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_pdm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_tdm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/ledc.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\ledc\\ledc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\ledc\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cap.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_cap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_cmpr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_com.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_com.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_fault.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_fault.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_gen.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_gen.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_oper.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_oper.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_sync.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_sync.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_timer.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_timer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/pulse_cnt.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\pcnt\\pulse_cnt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\pcnt\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_common.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_encoder.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_encoder.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_rx.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_rx.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_tx.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_tx.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_transaction.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc\\sdmmc_transaction.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_host.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc\\sdmmc_host.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/sdm.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sigma_delta\\sdm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sigma_delta\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_common.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\\spi_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_master.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\\spi_master.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\\spi_slave.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_crc.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\\sdspi_crc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_host.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\\sdspi_host.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_transaction.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\\sdspi_transaction.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\sdspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave_hd.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\\spi_slave_hd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi\\gpspi\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor/temperature_sensor.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/temperature_sensor.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\temperature_sensor\\temperature_sensor.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\temperature_sensor\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/touch_sensor.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\\touch_sensor.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/uart.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\uart\\uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\uart\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\usb_serial_jtag\\usb_serial_jtag.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\usb_serial_jtag\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\nbuild esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_driver_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_driver\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\usb_serial_jtag\\usb_serial_jtag_connection_monitor.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  OBJECT_FILE_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\usb_serial_jtag\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_driver\n\n\n#############################################\n# Link the static library esp-idf\\driver\\libdriver.a\n\nbuild esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_pin_glitch_filter.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave_hd.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor/temperature_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag/usb_serial_jtag_connection_monitor.c.obj || esp-idf/esp_pm/libesp_pm.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\__idf_driver.pdb\n  TARGET_FILE = esp-idf\\driver\\libdriver.a\n  TARGET_PDB = esp-idf\\driver\\libdriver.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\driver && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\driver && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/driver/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\driver && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\driver && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\driver && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_pm\n\n\n#############################################\n# Order-only phony target for __idf_esp_pm\n\nbuild cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_mbedtls\n\nbuild esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\__idf_esp_pm.pdb\n  TARGET_PDB = esp-idf\\esp_pm\\libesp_pm.pdb\n\nbuild esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\__idf_esp_pm.pdb\n  TARGET_PDB = esp-idf\\esp_pm\\libesp_pm.pdb\n\nbuild esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\__idf_esp_pm.pdb\n  TARGET_PDB = esp-idf\\esp_pm\\libesp_pm.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_pm\n\n\n#############################################\n# Link the static library esp-idf\\esp_pm\\libesp_pm.a\n\nbuild esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj || esp-idf/mbedtls/libmbedtls.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\__idf_esp_pm.pdb\n  TARGET_FILE = esp-idf\\esp_pm\\libesp_pm.a\n  TARGET_PDB = esp-idf\\esp_pm\\libesp_pm.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_pm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_pm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_pm/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_pm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_pm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_pm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_mbedtls\n\n\n#############################################\n# Order-only phony target for __idf_mbedtls\n\nbuild cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S\n\nbuild esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__idf_mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__idf_mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\libmbedtls.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_mbedtls\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\libmbedtls.a\n\nbuild esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj || esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__idf_mbedtls.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\libmbedtls.a\n  TARGET_PDB = esp-idf\\mbedtls\\libmbedtls.pdb\n\n\n#############################################\n# Utility command for custom_bundle\n\nbuild esp-idf/mbedtls/custom_bundle: phony\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for x509_crt_bundle.S\n\nbuild x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D DATA_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/data_file_embed_asm.cmake\"\n  DESC = Generating ../../x509_crt_bundle.S\n  restat = 1\n\n\n#############################################\n# Custom command for esp-idf\\mbedtls\\x509_crt_bundle\n\nbuild esp-idf/mbedtls/x509_crt_bundle | ${cmake_ninja_workdir}esp-idf/mbedtls/x509_crt_bundle: CUSTOM_COMMAND || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q\"\n  DESC = Generating x509_crt_bundle\n  restat = 1\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for apidoc\n\nbuild esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for esp-idf\\mbedtls\\mbedtls\\CMakeFiles\\apidoc\n\nbuild esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\mbedtls\\doxygen && doxygen mbedtls.doxyfile\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\include && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\include && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/include/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\include && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\include && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\include && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target everest\n\n\n#############################################\n# Order-only phony target for everest\n\nbuild cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\everest.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.pdb\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\everest.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.pdb\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\everest.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target everest\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.a\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\everest.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.a\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\libeverest.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target p256m\n\n\n#############################################\n# Order-only phony target for p256m\n\nbuild cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_mbedcrypto\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256m.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\libp256m.pdb\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256m.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\libp256m.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target p256m\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\libp256m.a\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256m.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\libp256m.a\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\libp256m.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target mbedcrypto\n\n\n#############################################\n# Order-only phony target for mbedcrypto\n\nbuild cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\crypto_shared_gdma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_hardware.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_mem.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_timing.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\esp_sha.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/sha.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/sha.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\\sha.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_ds\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_bignum.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_bignum.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp32s3/bignum.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp32s3/bignum.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp32s3\\bignum.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha1.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha256.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha512.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\sha\\dma\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\aes\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\md\\esp_md.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\md\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target mbedcrypto\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.a\n\nbuild esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp32s3/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\mbedcrypto.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.a\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedcrypto.pdb\n  RSP_FILE = CMakeFiles\\mbedcrypto.rsp\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target mbedx509\n\n\n#############################################\n# Order-only phony target for mbedx509\n\nbuild cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target mbedx509\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.a\n\nbuild esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedx509.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.a\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedx509.pdb\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target mbedtls\n\n\n#############################################\n# Order-only phony target for mbedtls\n\nbuild cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_esp_app_format\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\mbedtls_debug.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\esp_platform_time.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\\net_sockets.c.obj.d\n  FLAGS = -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  OBJECT_FILE_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\mbedtls\\port\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target mbedtls\n\n\n#############################################\n# Link the static library esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.a\n\nbuild esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mbedtls.pdb\n  TARGET_FILE = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.a\n  TARGET_PDB = esp-idf\\mbedtls\\mbedtls\\library\\libmbedtls.pdb\n\n\n#############################################\n# Utility command for lib\n\nbuild esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/xtensa/libxtensa.a\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\library && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\library && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mbedtls/mbedtls/library/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\library && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\library && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mbedtls\\mbedtls\\library && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util\n\n\n#############################################\n# Phony custom command for esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\lib\n\nbuild esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_app_format\n\n\n#############################################\n# Order-only phony target for __idf_esp_app_format\n\nbuild cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_bootloader_support\n\nbuild esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"main\\\" -DPROJECT_VER=\\\"1\\\"\n  DEP_FILE = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\__idf_esp_app_format.pdb\n  TARGET_PDB = esp-idf\\esp_app_format\\libesp_app_format.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_app_format\n\n\n#############################################\n# Link the static library esp-idf\\esp_app_format\\libesp_app_format.a\n\nbuild esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\__idf_esp_app_format.pdb\n  TARGET_FILE = esp-idf\\esp_app_format\\libesp_app_format.a\n  TARGET_PDB = esp-idf\\esp_app_format\\libesp_app_format.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_app_format/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_app_format && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_bootloader_support\n\n\n#############################################\n# Order-only phony target for __idf_bootloader_support\n\nbuild cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_esp_partition\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\nbuild esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\idf\\bootloader_sha.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  OBJECT_FILE_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\idf\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_bootloader_support\n\n\n#############################################\n# Link the static library esp-idf\\bootloader_support\\libbootloader_support.a\n\nbuild esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj || esp-idf/esp_partition/libesp_partition.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\__idf_bootloader_support.pdb\n  TARGET_FILE = esp-idf\\bootloader_support\\libbootloader_support.a\n  TARGET_PDB = esp-idf\\bootloader_support\\libbootloader_support.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/bootloader_support/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for bootloader-flash\n\nbuild esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader\n\n\n#############################################\n# Utility command for encrypted-bootloader-flash\n\nbuild esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/bootloader/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for esp-idf\\bootloader\\CMakeFiles\\bootloader-flash\n\nbuild esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for esp-idf\\bootloader\\CMakeFiles\\encrypted-bootloader-flash\n\nbuild esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bootloader && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Error: The target encrypted-bootloader-flash requires\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env \"FAIL_MESSAGE=Failed executing target (see errors on lines above)\" C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/fail.cmake\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for app-flash\n\nbuild esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app\n\n\n#############################################\n# Utility command for encrypted-app-flash\n\nbuild esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash\n\n\n#############################################\n# Utility command for app_check_size\n\nbuild esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esptool_py/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util\n\n\n#############################################\n# Custom command for esp-idf\\esptool_py\\CMakeFiles\\app-flash\n\nbuild esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || _project_elf_src app esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for esp-idf\\esptool_py\\CMakeFiles\\encrypted-app-flash\n\nbuild esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Error: The target encrypted-app-flash requires\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env \"FAIL_MESSAGE=Failed executing target (see errors on lines above)\" C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/fail.cmake\"\n\n\n#############################################\n# Custom command for esp-idf\\esptool_py\\CMakeFiles\\app_check_size\n\nbuild esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary main.elf\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for partition_table_bin\n\nbuild esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin\n\n\n#############################################\n# Utility command for partition-table\n\nbuild esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin\n\n\n#############################################\n# Utility command for partition_table\n\nbuild esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table\n\n\n#############################################\n# Utility command for partition-table-flash\n\nbuild esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash\n\n\n#############################################\n# Utility command for encrypted-partition-table-flash\n\nbuild esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash\n\n\n#############################################\n# Utility command for partition_table-flash\n\nbuild esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/partition_table/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util\n\n\n#############################################\n# Phony custom command for esp-idf\\partition_table\\CMakeFiles\\partition_table_bin\n\nbuild esp-idf/partition_table/CMakeFiles/partition_table_bin | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table_bin: phony partition_table/partition-table.bin partition_table/partition-table.bin\n\n\n#############################################\n# Custom command for partition_table\\partition-table.bin\n\nbuild partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/partitions.csv C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/gen_esp32part.py\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/partitions.csv C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Partition table binary generated. Contents:\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo ******************************************************************************* && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo *******************************************************************************\"\n  DESC = Generating ../../partition_table/partition-table.bin\n  restat = 1\n\n\n#############################################\n# Custom command for esp-idf\\partition_table\\CMakeFiles\\partition-table\n\nbuild esp-idf/partition_table/CMakeFiles/partition-table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Partition table binary generated. Contents:\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo ******************************************************************************* && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo *******************************************************************************\"\n\n\n#############################################\n# Custom command for esp-idf\\partition_table\\CMakeFiles\\partition_table\n\nbuild esp-idf/partition_table/CMakeFiles/partition_table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table: CUSTOM_COMMAND || esp-idf/partition_table/partition-table esp-idf/partition_table/partition_table_bin\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"partition_table\" is deprecated. Have you wanted to run \"partition-table\" instead?\n\n\n#############################################\n# Custom command for esp-idf\\partition_table\\CMakeFiles\\partition-table-flash\n\nbuild esp-idf/partition_table/CMakeFiles/partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\n  pool = console\n\n\n#############################################\n# Custom command for esp-idf\\partition_table\\CMakeFiles\\encrypted-partition-table-flash\n\nbuild esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"Error: The target encrypted-partition-table-flash requires\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.\" && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E env \"FAIL_MESSAGE=Failed executing target (see errors on lines above)\" C:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/scripts/fail.cmake\"\n\n\n#############################################\n# Custom command for esp-idf\\partition_table\\CMakeFiles\\partition_table-flash\n\nbuild esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND || esp-idf/partition_table/partition-table-flash\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\partition_table && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -E echo \"\n  DESC = Warning: command \"partition_table-flash\" is deprecated. Have you wanted to run \"partition-table-flash\" instead?\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_partition\n\n\n#############################################\n# Order-only phony target for __idf_esp_partition\n\nbuild cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_app_update\n\nbuild esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\__idf_esp_partition.pdb\n  TARGET_PDB = esp-idf\\esp_partition\\libesp_partition.pdb\n\nbuild esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include\n  OBJECT_DIR = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\__idf_esp_partition.pdb\n  TARGET_PDB = esp-idf\\esp_partition\\libesp_partition.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_partition\n\n\n#############################################\n# Link the static library esp-idf\\esp_partition\\libesp_partition.a\n\nbuild esp-idf/esp_partition/libesp_partition.a: C_STATIC_LIBRARY_LINKER____idf_esp_partition_ esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj || esp-idf/app_update/libapp_update.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\__idf_esp_partition.pdb\n  TARGET_FILE = esp-idf\\esp_partition\\libesp_partition.a\n  TARGET_PDB = esp-idf\\esp_partition\\libesp_partition.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_partition && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_partition && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_partition/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_partition && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_partition && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_partition && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_app_update\n\n\n#############################################\n# Order-only phony target for __idf_app_update\n\nbuild cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_mm\n\nbuild esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\n  OBJECT_FILE_DIR = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\n  TARGET_COMPILE_PDB = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\__idf_app_update.pdb\n  TARGET_PDB = esp-idf\\app_update\\libapp_update.pdb\n\nbuild esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\n  OBJECT_FILE_DIR = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\n  TARGET_COMPILE_PDB = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\__idf_app_update.pdb\n  TARGET_PDB = esp-idf\\app_update\\libapp_update.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_app_update\n\n\n#############################################\n# Link the static library esp-idf\\app_update\\libapp_update.a\n\nbuild esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_update_ esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_mm/libesp_mm.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\__idf_app_update.pdb\n  TARGET_FILE = esp-idf\\app_update\\libapp_update.a\n  TARGET_PDB = esp-idf\\app_update\\libapp_update.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_update && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_update && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/app_update/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_update && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_update && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_update && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_mm\n\n\n#############################################\n# Order-only phony target for __idf_esp_mm\n\nbuild cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_spi_flash\n\nbuild esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\__idf_esp_mm.pdb\n  TARGET_PDB = esp-idf\\esp_mm\\libesp_mm.pdb\n\nbuild esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/port/esp32s3/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\\ext_mem_layout.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\__idf_esp_mm.pdb\n  TARGET_PDB = esp-idf\\esp_mm\\libesp_mm.pdb\n\nbuild esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj: C_COMPILER____idf_esp_mm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_cache.c || cmake_object_order_depends_target___idf_esp_mm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\__idf_esp_mm.pdb\n  TARGET_PDB = esp-idf\\esp_mm\\libesp_mm.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_mm\n\n\n#############################################\n# Link the static library esp-idf\\esp_mm\\libesp_mm.a\n\nbuild esp-idf/esp_mm/libesp_mm.a: C_STATIC_LIBRARY_LINKER____idf_esp_mm_ esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj || esp-idf/spi_flash/libspi_flash.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\__idf_esp_mm.pdb\n  TARGET_FILE = esp-idf\\esp_mm\\libesp_mm.a\n  TARGET_PDB = esp-idf\\esp_mm\\libesp_mm.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_mm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_mm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_mm/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_mm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_mm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_mm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_spi_flash\n\n\n#############################################\n# Order-only phony target for __idf_spi_flash\n\nbuild cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_pthread\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_flash_oct_flash_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_hpm_enable.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\nbuild esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_spi_flash\n\n\n#############################################\n# Link the static library esp-idf\\spi_flash\\libspi_flash.a\n\nbuild esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/pthread/libpthread.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\__idf_spi_flash.pdb\n  TARGET_FILE = esp-idf\\spi_flash\\libspi_flash.a\n  TARGET_PDB = esp-idf\\spi_flash\\libspi_flash.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/spi_flash/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spi_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_pthread\n\n\n#############################################\n# Order-only phony target for __idf_pthread\n\nbuild cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_esp_system\n\nbuild esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  OBJECT_FILE_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\nbuild esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  OBJECT_FILE_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\nbuild esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  OBJECT_FILE_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\nbuild esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  OBJECT_FILE_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\nbuild esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  OBJECT_FILE_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_pthread\n\n\n#############################################\n# Link the static library esp-idf\\pthread\\libpthread.a\n\nbuild esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj || esp-idf/esp_system/libesp_system.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\__idf_pthread.pdb\n  TARGET_FILE = esp-idf\\pthread\\libpthread.a\n  TARGET_PDB = esp-idf\\pthread\\libpthread.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\pthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\pthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/pthread/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\pthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\pthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\pthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_system\n\n\n#############################################\n# Order-only phony target for __idf_esp_system\n\nbuild cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_rom\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-stack-protector\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-stack-protector\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\debug_stubs.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\brownout.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\highint_hdl.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/clk.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/reset_reason.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/system_internal.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/apb_backup_dma.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_handler_asm.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\nbuild esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S || cmake_object_order_depends_target___idf_esp_system\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_system\n\n\n#############################################\n# Link the static library esp-idf\\esp_system\\libesp_system.a\n\nbuild esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj || esp-idf/esp_rom/libesp_rom.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\__idf_esp_system.pdb\n  TARGET_FILE = esp-idf\\esp_system\\libesp_system.a\n  TARGET_PDB = esp-idf\\esp_system\\libesp_system.pdb\n\n\n#############################################\n# Utility command for __ldgen_output_sections.ld\n\nbuild esp-idf/esp_system/__ldgen_output_sections.ld: phony esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a\n\n\n#############################################\n# Utility command for memory_ld\n\nbuild esp-idf/esp_system/memory_ld: phony esp-idf/esp_system/CMakeFiles/memory_ld esp-idf/esp_system/ld/memory.ld\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_system/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util\n\n\n#############################################\n# Phony custom command for esp-idf\\esp_system\\CMakeFiles\\__ldgen_output_sections.ld\n\nbuild esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a\n\n\n#############################################\n# Custom command for esp-idf\\esp_system\\ld\\sections.ld\n\nbuild esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/esp32s3/sections.ld.in C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/app.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/linker_common.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/newlib.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/system_libs.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/common.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/soc.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/linker.lf C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/st7789/libst7789.a C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && python C:/Espressif/frameworks/esp-idf-v5.1.2/tools/ldgen/ldgen.py --config C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig --fragments-list C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/app.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/linker_common.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/newlib.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/system_libs.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/common.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/soc.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/linker.lf;C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/linker.lf --input C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/esp32s3/sections.ld.in --output C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/Espressif/frameworks/esp-idf-v5.1.2/Kconfig --env-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config.env --libraries-file C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/ldgen_libraries --objdump C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\"\n  DESC = Generating ld/sections.ld\n  restat = 1\n\n\n#############################################\n# Phony custom command for esp-idf\\esp_system\\CMakeFiles\\memory_ld\n\nbuild esp-idf/esp_system/CMakeFiles/memory_ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory_ld: phony esp-idf/esp_system/ld/memory.ld\n\n\n#############################################\n# Custom command for esp-idf\\esp_system\\ld\\memory.ld\n\nbuild esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/esp32s3/memory.ld.in config/sdkconfig.h\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system && C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -C -P -x c -E -o C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/ld/memory.ld -I C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -I C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/esp32s3/memory.ld.in\"\n  DESC = Generating memory.ld linker script...\n  restat = 1\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_system/port/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port\\soc\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/soc/esp32s3/edit_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port\\soc\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/soc/esp32s3/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_system/port/soc/esp32s3/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port\\soc\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/soc/esp32s3/install: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port\\soc\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/soc/esp32s3/install/local: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_system\\port\\soc\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_system/port/soc/esp32s3/install/strip: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_rom\n\n\n#############################################\n# Order-only phony target for __idf_esp_rom\n\nbuild cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\nbuild esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_rom\n\n\n#############################################\n# Link the static library esp-idf\\esp_rom\\libesp_rom.a\n\nbuild esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/hal/libhal.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\__idf_esp_rom.pdb\n  TARGET_FILE = esp-idf\\esp_rom\\libesp_rom.a\n  TARGET_PDB = esp-idf\\esp_rom\\libesp_rom.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_rom/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_rom && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_hal\n\n\n#############################################\n# Order-only phony target for __idf_hal\n\nbuild cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\clk_tree_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/systimer_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gdma_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/lcd_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_phy_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_phy_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/xt_wdt_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/rtc_cntl_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\nbuild esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_dwc_hal.c || cmake_object_order_depends_target___idf_hal\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  OBJECT_FILE_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_hal\n\n\n#############################################\n# Link the static library esp-idf\\hal\\libhal.a\n\nbuild esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj || esp-idf/log/liblog.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\__idf_hal.pdb\n  TARGET_FILE = esp-idf\\hal\\libhal.a\n  TARGET_PDB = esp-idf\\hal\\libhal.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/hal/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\hal && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_log\n\n\n#############################################\n# Order-only phony target for __idf_log\n\nbuild cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_buffers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\nbuild esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf_log_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_freertos.c || cmake_object_order_depends_target___idf_log\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_freertos.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  OBJECT_FILE_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_log\n\n\n#############################################\n# Link the static library esp-idf\\log\\liblog.a\n\nbuild esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj || esp-idf/heap/libheap.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\log\\CMakeFiles\\__idf_log.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\log\\CMakeFiles\\__idf_log.dir\\__idf_log.pdb\n  TARGET_FILE = esp-idf\\log\\liblog.a\n  TARGET_PDB = esp-idf\\log\\liblog.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/log/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\log && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_heap\n\n\n#############################################\n# Order-only phony target for __idf_heap\n\nbuild cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\nbuild esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj: C_COMPILER____idf_heap_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/esp32s3/memory_layout.c || cmake_object_order_depends_target___idf_heap\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  OBJECT_FILE_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_heap\n\n\n#############################################\n# Link the static library esp-idf\\heap\\libheap.a\n\nbuild esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj || esp-idf/soc/libsoc.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\__idf_heap.pdb\n  TARGET_FILE = esp-idf\\heap\\libheap.a\n  TARGET_PDB = esp-idf\\heap\\libheap.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\heap && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\heap && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/heap/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\heap && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\heap && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\heap && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_soc\n\n\n#############################################\n# Order-only phony target for __idf_soc\n\nbuild cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_hw_support\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_otg_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_otg_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\nbuild esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  OBJECT_FILE_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_soc\n\n\n#############################################\n# Link the static library esp-idf\\soc\\libsoc.a\n\nbuild esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\__idf_soc.pdb\n  TARGET_FILE = esp-idf\\soc\\libsoc.a\n  TARGET_PDB = esp-idf\\soc\\libsoc.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/soc/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\soc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support\n\n\n#############################################\n# Order-only phony target for __idf_esp_hw_support\n\nbuild cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\io_mux.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_clk_tree.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_cpu.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_impl_gdma.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/async_memcpy_impl_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_impl_gdma.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_hmac.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_hmac.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_hmac.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_ds.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_ds.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_ds.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/mspi_timing_config.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/mspi_timing_config.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\mspi_timing_config.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_crypto_lock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_memprot.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\nbuild esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_memprot_conv.c || cmake_object_order_depends_target___idf_esp_hw_support\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support\n\n\n#############################################\n# Link the static library esp-idf\\esp_hw_support\\libesp_hw_support.a\n\nbuild esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_impl_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_hmac.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_ds.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/mspi_timing_config.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj || esp-idf/freertos/libfreertos.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\__idf_esp_hw_support.pdb\n  TARGET_FILE = esp-idf\\esp_hw_support\\libesp_hw_support.a\n  TARGET_PDB = esp-idf\\esp_hw_support\\libesp_hw_support.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_hw_support/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_hw_support/port/esp32s3/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/install: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/install/local: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hw_support\\port\\esp32s3 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hw_support/port/esp32s3/install/strip: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_freertos\n\n\n#############################################\n# Order-only phony target for __idf_freertos\n\nbuild cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_newlib\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/croutine.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\croutine.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-openocd.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-openocd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/port_systick.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\port_systick.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/freertos_v8_compat.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_v8_compat.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj: ASM_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_context.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\nbuild esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj: ASM_COMPILER____idf_freertos_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_freertos\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vectors.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  OBJECT_FILE_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_freertos\n\n\n#############################################\n# Link the static library esp-idf\\freertos\\libfreertos.a\n\nbuild esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj || esp-idf/newlib/libnewlib.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\__idf_freertos.pdb\n  TARGET_FILE = esp-idf\\freertos\\libfreertos.a\n  TARGET_PDB = esp-idf\\freertos\\libfreertos.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/freertos/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\freertos && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_newlib\n\n\n#############################################\n# Order-only phony target for __idf_newlib\n\nbuild cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_cxx\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/abort.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\abort.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\assert.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\heap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-builtin\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\locks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\poll.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\pthread.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\random.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\reent_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\newlib_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\syscalls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\termios.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\stdatomic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\time.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\sysconf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\realpath.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\nbuild esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\port\\esp_time_impl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  OBJECT_FILE_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_newlib\n\n\n#############################################\n# Link the static library esp-idf\\newlib\\libnewlib.a\n\nbuild esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj || esp-idf/cxx/libcxx.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\__idf_newlib.pdb\n  TARGET_FILE = esp-idf\\newlib\\libnewlib.a\n  TARGET_PDB = esp-idf\\newlib\\libnewlib.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/newlib/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/newlib/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/port/edit_cache: phony esp-idf/newlib/port/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/newlib/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/port/rebuild_cache: phony esp-idf/newlib/port/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/newlib/port/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/newlib/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/port/install: phony esp-idf/newlib/port/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/newlib/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/port/install/local: phony esp-idf/newlib/port/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/newlib/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/port/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\newlib\\port && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/newlib/port/install/strip: phony esp-idf/newlib/port/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_cxx\n\n\n#############################################\n# Order-only phony target for __idf_cxx\n\nbuild cmake_object_order_depends_target___idf_cxx: phony || cmake_object_order_depends_target___idf_esp_common\n\nbuild esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include\n  OBJECT_DIR = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\n  OBJECT_FILE_DIR = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\n  TARGET_COMPILE_PDB = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\__idf_cxx.pdb\n  TARGET_PDB = esp-idf\\cxx\\libcxx.pdb\n\nbuild esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include\n  OBJECT_DIR = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\n  OBJECT_FILE_DIR = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\n  TARGET_COMPILE_PDB = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\__idf_cxx.pdb\n  TARGET_PDB = esp-idf\\cxx\\libcxx.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_cxx\n\n\n#############################################\n# Link the static library esp-idf\\cxx\\libcxx.a\n\nbuild esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj || esp-idf/esp_common/libesp_common.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\__idf_cxx.pdb\n  TARGET_FILE = esp-idf\\cxx\\libcxx.a\n  TARGET_PDB = esp-idf\\cxx\\libcxx.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cxx && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cxx && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/cxx/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cxx && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cxx && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cxx && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_common\n\n\n#############################################\n# Order-only phony target for __idf_esp_common\n\nbuild cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_timer\n\nbuild esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include\n  OBJECT_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\__idf_esp_common.pdb\n  TARGET_PDB = esp-idf\\esp_common\\libesp_common.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_common\n\n\n#############################################\n# Link the static library esp-idf\\esp_common\\libesp_common.a\n\nbuild esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_timer/libesp_timer.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\__idf_esp_common.pdb\n  TARGET_FILE = esp-idf\\esp_common\\libesp_common.a\n  TARGET_PDB = esp-idf\\esp_common\\libesp_common.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_common/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_common && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_timer\n\n\n#############################################\n# Order-only phony target for __idf_esp_timer\n\nbuild cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_esp_event\n\nbuild esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\nbuild esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\nbuild esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\nbuild esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\nbuild esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_timer\n\n\n#############################################\n# Link the static library esp-idf\\esp_timer\\libesp_timer.a\n\nbuild esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer_ esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj || esp-idf/esp_event/libesp_event.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\__idf_esp_timer.pdb\n  TARGET_FILE = esp-idf\\esp_timer\\libesp_timer.a\n  TARGET_PDB = esp-idf\\esp_timer\\libesp_timer.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_timer && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_timer && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_timer/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_timer && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_timer && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_timer && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_app_trace\n\n\n#############################################\n# Order-only phony target for __idf_app_trace\n\nbuild cmake_object_order_depends_target___idf_app_trace: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  OBJECT_FILE_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  TARGET_COMPILE_PDB = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\__idf_app_trace.pdb\n  TARGET_PDB = esp-idf\\app_trace\\libapp_trace.pdb\n\nbuild esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  OBJECT_FILE_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  TARGET_COMPILE_PDB = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\__idf_app_trace.pdb\n  TARGET_PDB = esp-idf\\app_trace\\libapp_trace.pdb\n\nbuild esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  OBJECT_FILE_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  TARGET_COMPILE_PDB = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\__idf_app_trace.pdb\n  TARGET_PDB = esp-idf\\app_trace\\libapp_trace.pdb\n\nbuild esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  OBJECT_FILE_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\__idf_app_trace.pdb\n  TARGET_PDB = esp-idf\\app_trace\\libapp_trace.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_app_trace\n\n\n#############################################\n# Link the static library esp-idf\\app_trace\\libapp_trace.a\n\nbuild esp-idf/app_trace/libapp_trace.a: C_STATIC_LIBRARY_LINKER____idf_app_trace_ esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\__idf_app_trace.pdb\n  TARGET_FILE = esp-idf\\app_trace\\libapp_trace.a\n  TARGET_PDB = esp-idf\\app_trace\\libapp_trace.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_trace && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_trace/edit_cache: phony esp-idf/app_trace/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/app_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_trace && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_trace/rebuild_cache: phony esp-idf/app_trace/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/app_trace/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/app_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_trace/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_trace && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_trace/install: phony esp-idf/app_trace/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/app_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_trace/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_trace && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_trace/install/local: phony esp-idf/app_trace/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/app_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_trace/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\app_trace && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/app_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_event\n\n\n#############################################\n# Order-only phony target for __idf_esp_event\n\nbuild cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target___idf_nvs_flash\n\nbuild esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\__idf_esp_event.pdb\n  TARGET_PDB = esp-idf\\esp_event\\libesp_event.pdb\n\nbuild esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\__idf_esp_event.pdb\n  TARGET_PDB = esp-idf\\esp_event\\libesp_event.pdb\n\nbuild esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\__idf_esp_event.pdb\n  TARGET_PDB = esp-idf\\esp_event\\libesp_event.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_event\n\n\n#############################################\n# Link the static library esp-idf\\esp_event\\libesp_event.a\n\nbuild esp-idf/esp_event/libesp_event.a: C_STATIC_LIBRARY_LINKER____idf_esp_event_ esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj || esp-idf/nvs_flash/libnvs_flash.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\__idf_esp_event.pdb\n  TARGET_FILE = esp-idf\\esp_event\\libesp_event.a\n  TARGET_PDB = esp-idf\\esp_event\\libesp_event.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_event && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_event && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_event/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_event && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_event && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_event && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_nvs_flash\n\n\n#############################################\n# Order-only phony target for __idf_nvs_flash\n\nbuild cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_phy\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\nbuild esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  OBJECT_FILE_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_nvs_flash\n\n\n#############################################\n# Link the static library esp-idf\\nvs_flash\\libnvs_flash.a\n\nbuild esp-idf/nvs_flash/libnvs_flash.a: C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj || esp-idf/esp_phy/libesp_phy.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\__idf_nvs_flash.pdb\n  TARGET_FILE = esp-idf\\nvs_flash\\libnvs_flash.a\n  TARGET_PDB = esp-idf\\nvs_flash\\libnvs_flash.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\nvs_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\nvs_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/nvs_flash/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\nvs_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\nvs_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\nvs_flash && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_phy\n\n\n#############################################\n# Order-only phony target for __idf_esp_phy\n\nbuild cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_vfs\n\nbuild esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\nbuild esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\nbuild esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\nbuild esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\nbuild esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_phy\n\n\n#############################################\n# Link the static library esp-idf\\esp_phy\\libesp_phy.a\n\nbuild esp-idf/esp_phy/libesp_phy.a: C_STATIC_LIBRARY_LINKER____idf_esp_phy_ esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/vfs/libvfs.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\__idf_esp_phy.pdb\n  TARGET_FILE = esp-idf\\esp_phy\\libesp_phy.a\n  TARGET_PDB = esp-idf\\esp_phy\\libesp_phy.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_phy && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_phy/edit_cache: phony esp-idf/esp_phy/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_phy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_phy && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_phy/rebuild_cache: phony esp-idf/esp_phy/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_phy/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_phy/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_phy/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_phy && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_phy/install: phony esp-idf/esp_phy/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_phy/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_phy/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_phy && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_phy/install/local: phony esp-idf/esp_phy/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_phy/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_phy/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_phy && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_vfs\n\n\n#############################################\n# Order-only phony target for __idf_vfs\n\nbuild cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_lwip\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_uart.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_console.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_console.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\nbuild esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj: C_COMPILER____idf_vfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_usb_serial_jtag.c || cmake_object_order_depends_target___idf_vfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_usb_serial_jtag.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  OBJECT_FILE_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_vfs\n\n\n#############################################\n# Link the static library esp-idf\\vfs\\libvfs.a\n\nbuild esp-idf/vfs/libvfs.a: C_STATIC_LIBRARY_LINKER____idf_vfs_ esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj || esp-idf/lwip/liblwip.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\__idf_vfs.pdb\n  TARGET_FILE = esp-idf\\vfs\\libvfs.a\n  TARGET_PDB = esp-idf\\vfs\\libvfs.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\vfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\vfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/vfs/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\vfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\vfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\vfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_lwip\n\n\n#############################################\n# Order-only phony target for __idf_lwip\n\nbuild cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_esp_netif\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-type-limits\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-array-parameter\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-type-limits\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\nbuild esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip\n  DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  OBJECT_FILE_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_lwip\n\n\n#############################################\n# Link the static library esp-idf\\lwip\\liblwip.a\n\nbuild esp-idf/lwip/liblwip.a: C_STATIC_LIBRARY_LINKER____idf_lwip_ esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\__idf_lwip.pdb\n  TARGET_FILE = esp-idf\\lwip\\liblwip.a\n  TARGET_PDB = esp-idf\\lwip\\liblwip.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\lwip && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\lwip && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/lwip/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\lwip && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\lwip && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\lwip && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif_stack && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif_stack/edit_cache: phony esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif_stack && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif_stack/rebuild_cache: phony esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_netif_stack/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_netif_stack/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif_stack && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif_stack/install: phony esp-idf/esp_netif_stack/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_netif_stack/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif_stack && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif_stack/install/local: phony esp-idf/esp_netif_stack/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_netif_stack/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif_stack && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_netif\n\n\n#############################################\n# Order-only phony target for __idf_esp_netif\n\nbuild cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_wpa_supplicant\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_sntp.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\nbuild esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif\n  DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_netif\n\n\n#############################################\n# Link the static library esp-idf\\esp_netif\\libesp_netif.a\n\nbuild esp-idf/esp_netif/libesp_netif.a: C_STATIC_LIBRARY_LINKER____idf_esp_netif_ esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj || esp-idf/wpa_supplicant/libwpa_supplicant.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\__idf_esp_netif.pdb\n  TARGET_FILE = esp-idf\\esp_netif\\libesp_netif.a\n  TARGET_PDB = esp-idf\\esp_netif\\libesp_netif.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_netif/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_netif && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_wpa_supplicant\n\n\n#############################################\n# Order-only phony target for __idf_wpa_supplicant\n\nbuild cmake_object_order_depends_target___idf_wpa_supplicant: phony || cmake_object_order_depends_target___idf_esp_coex\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/pmksa_cache_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_11.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/comeback_token.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/dragonfly.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_common/eap_wsc_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae_pk.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/bss.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/bss.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\bss.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/scan.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/scan.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\scan.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_scan.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_scan.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_scan.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant\n  DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.1.2-dirty\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__\n  DEP_FILE = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  OBJECT_FILE_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_wpa_supplicant\n\n\n#############################################\n# Link the static library esp-idf\\wpa_supplicant\\libwpa_supplicant.a\n\nbuild esp-idf/wpa_supplicant/libwpa_supplicant.a: C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_ esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/bss.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/scan.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_scan.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj || esp-idf/esp_coex/libesp_coex.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\__idf_wpa_supplicant.pdb\n  TARGET_FILE = esp-idf\\wpa_supplicant\\libwpa_supplicant.a\n  TARGET_PDB = esp-idf\\wpa_supplicant\\libwpa_supplicant.pdb\n  RSP_FILE = CMakeFiles\\__idf_wpa_supplicant.rsp\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wpa_supplicant && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wpa_supplicant && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/wpa_supplicant/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wpa_supplicant && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wpa_supplicant && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wpa_supplicant && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_coex\n\n\n#############################################\n# Order-only phony target for __idf_esp_coex\n\nbuild cmake_object_order_depends_target___idf_esp_coex: phony || cmake_object_order_depends_target___idf_esp_wifi\n\nbuild esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/esp32s3/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32s3\\esp_coex_adapter.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include\n  OBJECT_DIR = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\__idf_esp_coex.pdb\n  TARGET_PDB = esp-idf\\esp_coex\\libesp_coex.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_coex\n\n\n#############################################\n# Link the static library esp-idf\\esp_coex\\libesp_coex.a\n\nbuild esp-idf/esp_coex/libesp_coex.a: C_STATIC_LIBRARY_LINKER____idf_esp_coex_ esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32s3/esp_coex_adapter.c.obj || esp-idf/esp_wifi/libesp_wifi.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\__idf_esp_coex.pdb\n  TARGET_FILE = esp-idf\\esp_coex\\libesp_coex.a\n  TARGET_PDB = esp-idf\\esp_coex\\libesp_coex.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_coex && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_coex/edit_cache: phony esp-idf/esp_coex/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_coex/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_coex && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_coex/rebuild_cache: phony esp-idf/esp_coex/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_coex/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_coex/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_coex/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_coex && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_coex/install: phony esp-idf/esp_coex/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_coex/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_coex/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_coex && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_coex/install/local: phony esp-idf/esp_coex/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_coex/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_coex/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_coex && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_wifi\n\n\n#############################################\n# Order-only phony target for __idf_esp_wifi\n\nbuild cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_http_parser\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/esp32s3/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32s3\\esp_adapter.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\nbuild esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_wifi\n\n\n#############################################\n# Link the static library esp-idf\\esp_wifi\\libesp_wifi.a\n\nbuild esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj || esp-idf/http_parser/libhttp_parser.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\__idf_esp_wifi.pdb\n  TARGET_FILE = esp-idf\\esp_wifi\\libesp_wifi.a\n  TARGET_PDB = esp-idf\\esp_wifi\\libesp_wifi.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_wifi && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_wifi && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_wifi/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_wifi && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_wifi && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_wifi && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bt/edit_cache: phony esp-idf/bt/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/bt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bt/rebuild_cache: phony esp-idf/bt/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/bt/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/bt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bt/install: phony esp-idf/bt/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/bt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bt/install/local: phony esp-idf/bt/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/bt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\bt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_unity\n\n\n#############################################\n# Order-only phony target for __idf_unity\n\nbuild cmake_object_order_depends_target___idf_unity: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\nbuild esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  OBJECT_FILE_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_unity\n\n\n#############################################\n# Link the static library esp-idf\\unity\\libunity.a\n\nbuild esp-idf/unity/libunity.a: C_STATIC_LIBRARY_LINKER____idf_unity_ esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\__idf_unity.pdb\n  TARGET_FILE = esp-idf\\unity\\libunity.a\n  TARGET_PDB = esp-idf\\unity\\libunity.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\unity && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/unity/edit_cache: phony esp-idf/unity/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\unity && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/unity/rebuild_cache: phony esp-idf/unity/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/unity/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/unity/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/unity/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\unity && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/unity/install: phony esp-idf/unity/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/unity/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\unity && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/unity/install/local: phony esp-idf/unity/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/unity/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\unity && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_cmock\n\n\n#############################################\n# Order-only phony target for __idf_cmock\n\nbuild cmake_object_order_depends_target___idf_cmock: phony || cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER____idf_cmock_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src\n  OBJECT_DIR = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\n  OBJECT_FILE_DIR = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\n  TARGET_COMPILE_PDB = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\__idf_cmock.pdb\n  TARGET_PDB = esp-idf\\cmock\\libcmock.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_cmock\n\n\n#############################################\n# Link the static library esp-idf\\cmock\\libcmock.a\n\nbuild esp-idf/cmock/libcmock.a: C_STATIC_LIBRARY_LINKER____idf_cmock_ esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj || esp-idf/unity/libunity.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\__idf_cmock.pdb\n  TARGET_FILE = esp-idf\\cmock\\libcmock.a\n  TARGET_PDB = esp-idf\\cmock\\libcmock.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cmock && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cmock/edit_cache: phony esp-idf/cmock/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/cmock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cmock && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cmock/rebuild_cache: phony esp-idf/cmock/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/cmock/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/cmock/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmock/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cmock && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cmock/install: phony esp-idf/cmock/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/cmock/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmock/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cmock && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cmock/install/local: phony esp-idf/cmock/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/cmock/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmock/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\cmock && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/cmock/install/strip: phony esp-idf/cmock/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_console\n\n\n#############################################\n# Order-only phony target for __idf_console\n\nbuild cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/commands.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/esp_console_repl.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/split_argv.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\nbuild esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  OBJECT_FILE_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_console\n\n\n#############################################\n# Link the static library esp-idf\\console\\libconsole.a\n\nbuild esp-idf/console/libconsole.a: C_STATIC_LIBRARY_LINKER____idf_console_ esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\console\\CMakeFiles\\__idf_console.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\console\\CMakeFiles\\__idf_console.dir\\__idf_console.pdb\n  TARGET_FILE = esp-idf\\console\\libconsole.a\n  TARGET_PDB = esp-idf\\console\\libconsole.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\console && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\console && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/console/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\console && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\console && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\console && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_http_parser\n\n\n#############################################\n# Order-only phony target for __idf_http_parser\n\nbuild cmake_object_order_depends_target___idf_http_parser: phony || cmake_object_order_depends_target___idf_esp-tls\n\nbuild esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj: C_COMPILER____idf_http_parser_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\n  OBJECT_FILE_DIR = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\n  TARGET_COMPILE_PDB = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\__idf_http_parser.pdb\n  TARGET_PDB = esp-idf\\http_parser\\libhttp_parser.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_http_parser\n\n\n#############################################\n# Link the static library esp-idf\\http_parser\\libhttp_parser.a\n\nbuild esp-idf/http_parser/libhttp_parser.a: C_STATIC_LIBRARY_LINKER____idf_http_parser_ esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj || esp-idf/esp-tls/libesp-tls.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\__idf_http_parser.pdb\n  TARGET_FILE = esp-idf\\http_parser\\libhttp_parser.a\n  TARGET_PDB = esp-idf\\http_parser\\libhttp_parser.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\http_parser && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/http_parser/edit_cache: phony esp-idf/http_parser/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/http_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\http_parser && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/http_parser/rebuild_cache: phony esp-idf/http_parser/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/http_parser/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/http_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/http_parser/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\http_parser && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/http_parser/install: phony esp-idf/http_parser/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/http_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/http_parser/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\http_parser && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/http_parser/install/local: phony esp-idf/http_parser/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/http_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/http_parser/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\http_parser && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/http_parser/install/strip: phony esp-idf/http_parser/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp-tls\n\n\n#############################################\n# Order-only phony target for __idf_esp-tls\n\nbuild cmake_object_order_depends_target___idf_esp-tls: phony || cmake_object_order_depends_target___idf_esp_adc\n\nbuild esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  OBJECT_FILE_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\__idf_esp-tls.pdb\n  TARGET_PDB = esp-idf\\esp-tls\\libesp-tls.pdb\n\nbuild esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  OBJECT_FILE_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\n  TARGET_COMPILE_PDB = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\__idf_esp-tls.pdb\n  TARGET_PDB = esp-idf\\esp-tls\\libesp-tls.pdb\n\nbuild esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  OBJECT_FILE_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\__idf_esp-tls.pdb\n  TARGET_PDB = esp-idf\\esp-tls\\libesp-tls.pdb\n\nbuild esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  OBJECT_FILE_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\__idf_esp-tls.pdb\n  TARGET_PDB = esp-idf\\esp-tls\\libesp-tls.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp-tls\n\n\n#############################################\n# Link the static library esp-idf\\esp-tls\\libesp-tls.a\n\nbuild esp-idf/esp-tls/libesp-tls.a: C_STATIC_LIBRARY_LINKER____idf_esp-tls_ esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj || esp-idf/esp_adc/libesp_adc.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\__idf_esp-tls.pdb\n  TARGET_FILE = esp-idf\\esp-tls\\libesp-tls.a\n  TARGET_PDB = esp-idf\\esp-tls\\libesp-tls.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp-tls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp-tls/edit_cache: phony esp-idf/esp-tls/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp-tls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp-tls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp-tls/rebuild_cache: phony esp-idf/esp-tls/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp-tls/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp-tls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp-tls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp-tls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp-tls/install: phony esp-idf/esp-tls/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp-tls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp-tls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp-tls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp-tls/install/local: phony esp-idf/esp-tls/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp-tls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp-tls/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp-tls && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_adc\n\n\n#############################################\n# Order-only phony target for __idf_esp_adc\n\nbuild cmake_object_order_depends_target___idf_esp_adc: phony || cmake_object_order_depends_target___idf_esp_eth\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_filter.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\nbuild esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_adc\n\n\n#############################################\n# Link the static library esp-idf\\esp_adc\\libesp_adc.a\n\nbuild esp-idf/esp_adc/libesp_adc.a: C_STATIC_LIBRARY_LINKER____idf_esp_adc_ esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj || esp-idf/esp_eth/libesp_eth.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\__idf_esp_adc.pdb\n  TARGET_FILE = esp-idf\\esp_adc\\libesp_adc.a\n  TARGET_PDB = esp-idf\\esp_adc\\libesp_adc.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_adc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_adc/edit_cache: phony esp-idf/esp_adc/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_adc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_adc/rebuild_cache: phony esp-idf/esp_adc/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_adc/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_adc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_adc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_adc/install: phony esp-idf/esp_adc/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_adc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_adc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_adc/install/local: phony esp-idf/esp_adc/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_adc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_adc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_adc/install/strip: phony esp-idf/esp_adc/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_eth\n\n\n#############################################\n# Order-only phony target for __idf_esp_eth\n\nbuild cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_esp_gdbstub\n\nbuild esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\__idf_esp_eth.pdb\n  TARGET_PDB = esp-idf\\esp_eth\\libesp_eth.pdb\n\nbuild esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_802_3.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\__idf_esp_eth.pdb\n  TARGET_PDB = esp-idf\\esp_eth\\libesp_eth.pdb\n\nbuild esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\__idf_esp_eth.pdb\n  TARGET_PDB = esp-idf\\esp_eth\\libesp_eth.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_eth\n\n\n#############################################\n# Link the static library esp-idf\\esp_eth\\libesp_eth.a\n\nbuild esp-idf/esp_eth/libesp_eth.a: C_STATIC_LIBRARY_LINKER____idf_esp_eth_ esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\__idf_esp_eth.pdb\n  TARGET_FILE = esp-idf\\esp_eth\\libesp_eth.a\n  TARGET_PDB = esp-idf\\esp_eth\\libesp_eth.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_eth && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_eth/edit_cache: phony esp-idf/esp_eth/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_eth/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_eth && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_eth/rebuild_cache: phony esp-idf/esp_eth/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_eth/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_eth/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_eth/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_eth && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_eth/install: phony esp-idf/esp_eth/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_eth/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_eth/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_eth && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_eth/install/local: phony esp-idf/esp_eth/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_eth/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_eth/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_eth && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_gdbstub\n\n\n#############################################\n# Order-only phony target for __idf_esp_gdbstub\n\nbuild cmake_object_order_depends_target___idf_esp_gdbstub: phony || cmake_object_order_depends_target___idf_tcp_transport\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub_xtensa.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj: ASM_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub-entry.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj: ASM_COMPILER____idf_esp_gdbstub_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\xt_debugexception.S.obj.d\n  FLAGS = -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_gdbstub\n\n\n#############################################\n# Link the static library esp-idf\\esp_gdbstub\\libesp_gdbstub.a\n\nbuild esp-idf/esp_gdbstub/libesp_gdbstub.a: C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_ esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj || esp-idf/tcp_transport/libtcp_transport.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\__idf_esp_gdbstub.pdb\n  TARGET_FILE = esp-idf\\esp_gdbstub\\libesp_gdbstub.a\n  TARGET_PDB = esp-idf\\esp_gdbstub\\libesp_gdbstub.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_gdbstub && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_gdbstub/edit_cache: phony esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_gdbstub && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_gdbstub/rebuild_cache: phony esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_gdbstub/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_gdbstub && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_gdbstub/install: phony esp-idf/esp_gdbstub/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_gdbstub && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_gdbstub/install/local: phony esp-idf/esp_gdbstub/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_gdbstub/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_gdbstub && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_hid\n\n\n#############################################\n# Order-only phony target for __idf_esp_hid\n\nbuild cmake_object_order_depends_target___idf_esp_hid: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILER____idf_esp_hid_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\__idf_esp_hid.pdb\n  TARGET_PDB = esp-idf\\esp_hid\\libesp_hid.pdb\n\nbuild esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\__idf_esp_hid.pdb\n  TARGET_PDB = esp-idf\\esp_hid\\libesp_hid.pdb\n\nbuild esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include\n  OBJECT_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\__idf_esp_hid.pdb\n  TARGET_PDB = esp-idf\\esp_hid\\libesp_hid.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_hid\n\n\n#############################################\n# Link the static library esp-idf\\esp_hid\\libesp_hid.a\n\nbuild esp-idf/esp_hid/libesp_hid.a: C_STATIC_LIBRARY_LINKER____idf_esp_hid_ esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\__idf_esp_hid.pdb\n  TARGET_FILE = esp-idf\\esp_hid\\libesp_hid.a\n  TARGET_PDB = esp-idf\\esp_hid\\libesp_hid.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hid && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hid/edit_cache: phony esp-idf/esp_hid/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_hid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hid && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hid/rebuild_cache: phony esp-idf/esp_hid/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_hid/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_hid/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hid/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hid && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hid/install: phony esp-idf/esp_hid/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_hid/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hid/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hid && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hid/install/local: phony esp-idf/esp_hid/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_hid/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hid/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_hid && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_hid/install/strip: phony esp-idf/esp_hid/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_tcp_transport\n\n\n#############################################\n# Order-only phony target for __idf_tcp_transport\n\nbuild cmake_object_order_depends_target___idf_tcp_transport: phony || cmake_object_order_depends_target___idf_esp_http_client\n\nbuild esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  OBJECT_FILE_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\nbuild esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  OBJECT_FILE_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\nbuild esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  OBJECT_FILE_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\nbuild esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  OBJECT_FILE_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\nbuild esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  OBJECT_FILE_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_tcp_transport\n\n\n#############################################\n# Link the static library esp-idf\\tcp_transport\\libtcp_transport.a\n\nbuild esp-idf/tcp_transport/libtcp_transport.a: C_STATIC_LIBRARY_LINKER____idf_tcp_transport_ esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj || esp-idf/esp_http_client/libesp_http_client.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\__idf_tcp_transport.pdb\n  TARGET_FILE = esp-idf\\tcp_transport\\libtcp_transport.a\n  TARGET_PDB = esp-idf\\tcp_transport\\libtcp_transport.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\tcp_transport && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/tcp_transport/edit_cache: phony esp-idf/tcp_transport/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\tcp_transport && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/tcp_transport/rebuild_cache: phony esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/tcp_transport/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/tcp_transport/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcp_transport/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\tcp_transport && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/tcp_transport/install: phony esp-idf/tcp_transport/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/tcp_transport/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcp_transport/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\tcp_transport && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/tcp_transport/install/local: phony esp-idf/tcp_transport/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/tcp_transport/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcp_transport/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\tcp_transport && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_http_client\n\n\n#############################################\n# Order-only phony target for __idf_esp_http_client\n\nbuild cmake_object_order_depends_target___idf_esp_http_client: phony || cmake_object_order_depends_target___idf_esp_http_server\n\nbuild esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\__idf_esp_http_client.pdb\n  TARGET_PDB = esp-idf\\esp_http_client\\libesp_http_client.pdb\n\nbuild esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\__idf_esp_http_client.pdb\n  TARGET_PDB = esp-idf\\esp_http_client\\libesp_http_client.pdb\n\nbuild esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\__idf_esp_http_client.pdb\n  TARGET_PDB = esp-idf\\esp_http_client\\libesp_http_client.pdb\n\nbuild esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\__idf_esp_http_client.pdb\n  TARGET_PDB = esp-idf\\esp_http_client\\libesp_http_client.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_http_client\n\n\n#############################################\n# Link the static library esp-idf\\esp_http_client\\libesp_http_client.a\n\nbuild esp-idf/esp_http_client/libesp_http_client.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_client_ esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj || esp-idf/esp_http_server/libesp_http_server.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\__idf_esp_http_client.pdb\n  TARGET_FILE = esp-idf\\esp_http_client\\libesp_http_client.a\n  TARGET_PDB = esp-idf\\esp_http_client\\libesp_http_client.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_client && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_client/edit_cache: phony esp-idf/esp_http_client/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_client && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_client/rebuild_cache: phony esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_http_client/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_http_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_client/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_client && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_client/install: phony esp-idf/esp_http_client/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_http_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_client/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_client && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_client/install/local: phony esp-idf/esp_http_client/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_http_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_client/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_client && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_http_server\n\n\n#############################################\n# Order-only phony target for __idf_esp_http_server\n\nbuild cmake_object_order_depends_target___idf_esp_http_server: phony || cmake_object_order_depends_target___idf_esp_https_ota\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\nbuild esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_http_server\n\n\n#############################################\n# Link the static library esp-idf\\esp_http_server\\libesp_http_server.a\n\nbuild esp-idf/esp_http_server/libesp_http_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_server_ esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj || esp-idf/esp_https_ota/libesp_https_ota.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\__idf_esp_http_server.pdb\n  TARGET_FILE = esp-idf\\esp_http_server\\libesp_http_server.a\n  TARGET_PDB = esp-idf\\esp_http_server\\libesp_http_server.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_server/edit_cache: phony esp-idf/esp_http_server/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_server/rebuild_cache: phony esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_http_server/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_http_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_server/install: phony esp-idf/esp_http_server/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_http_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_server/install/local: phony esp-idf/esp_http_server/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_http_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_http_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_https_ota\n\n\n#############################################\n# Order-only phony target for __idf_esp_https_ota\n\nbuild cmake_object_order_depends_target___idf_esp_https_ota: phony || cmake_object_order_depends_target___idf_ulp\n\nbuild esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include\n  OBJECT_DIR = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\__idf_esp_https_ota.pdb\n  TARGET_PDB = esp-idf\\esp_https_ota\\libesp_https_ota.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_https_ota\n\n\n#############################################\n# Link the static library esp-idf\\esp_https_ota\\libesp_https_ota.a\n\nbuild esp-idf/esp_https_ota/libesp_https_ota.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_ esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj || esp-idf/ulp/libulp.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\__idf_esp_https_ota.pdb\n  TARGET_FILE = esp-idf\\esp_https_ota\\libesp_https_ota.a\n  TARGET_PDB = esp-idf\\esp_https_ota\\libesp_https_ota.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_ota && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_ota/edit_cache: phony esp-idf/esp_https_ota/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_ota && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_ota/rebuild_cache: phony esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_https_ota/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_https_ota/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_ota && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_ota/install: phony esp-idf/esp_https_ota/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_https_ota/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_ota && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_ota/install/local: phony esp-idf/esp_https_ota/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_https_ota/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_ota && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_server/edit_cache: phony esp-idf/esp_https_server/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_server/rebuild_cache: phony esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_https_server/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_server/install: phony esp-idf/esp_https_server/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_server/install/local: phony esp-idf/esp_https_server/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_server/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_https_server && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_psram && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_psram/edit_cache: phony esp-idf/esp_psram/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_psram/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_psram && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_psram/rebuild_cache: phony esp-idf/esp_psram/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_psram/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_psram/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_psram/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_psram && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_psram/install: phony esp-idf/esp_psram/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_psram/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_psram/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_psram && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_psram/install/local: phony esp-idf/esp_psram/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_psram/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_psram/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_psram && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_psram/install/strip: phony esp-idf/esp_psram/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_lcd\n\n\n#############################################\n# Order-only phony target for __idf_esp_lcd\n\nbuild cmake_object_order_depends_target___idf_esp_lcd: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i2c.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i2c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_spi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i80.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i80.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\nbuild esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_rgb.c || cmake_object_order_depends_target___idf_esp_lcd\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_rgb.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_lcd\n\n\n#############################################\n# Link the static library esp-idf\\esp_lcd\\libesp_lcd.a\n\nbuild esp-idf/esp_lcd/libesp_lcd.a: C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\__idf_esp_lcd.pdb\n  TARGET_FILE = esp-idf\\esp_lcd\\libesp_lcd.a\n  TARGET_PDB = esp-idf\\esp_lcd\\libesp_lcd.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_lcd && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_lcd/edit_cache: phony esp-idf/esp_lcd/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_lcd && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_lcd/rebuild_cache: phony esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_lcd/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_lcd/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_lcd/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_lcd && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_lcd/install: phony esp-idf/esp_lcd/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_lcd/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_lcd/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_lcd && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_lcd/install/local: phony esp-idf/esp_lcd/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_lcd/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_lcd/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_lcd && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_lcd/install/strip: phony esp-idf/esp_lcd/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_protobuf-c\n\n\n#############################################\n# Order-only phony target for __idf_protobuf-c\n\nbuild cmake_object_order_depends_target___idf_protobuf-c: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\n  OBJECT_FILE_DIR = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\n  TARGET_COMPILE_PDB = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\__idf_protobuf-c.pdb\n  TARGET_PDB = esp-idf\\protobuf-c\\libprotobuf-c.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_protobuf-c\n\n\n#############################################\n# Link the static library esp-idf\\protobuf-c\\libprotobuf-c.a\n\nbuild esp-idf/protobuf-c/libprotobuf-c.a: C_STATIC_LIBRARY_LINKER____idf_protobuf-c_ esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\__idf_protobuf-c.pdb\n  TARGET_FILE = esp-idf\\protobuf-c\\libprotobuf-c.a\n  TARGET_PDB = esp-idf\\protobuf-c\\libprotobuf-c.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protobuf-c && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protobuf-c/edit_cache: phony esp-idf/protobuf-c/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protobuf-c && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protobuf-c/rebuild_cache: phony esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/protobuf-c/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/protobuf-c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protobuf-c/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protobuf-c && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protobuf-c/install: phony esp-idf/protobuf-c/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/protobuf-c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protobuf-c/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protobuf-c && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protobuf-c/install/local: phony esp-idf/protobuf-c/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/protobuf-c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protobuf-c/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protobuf-c && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_protocomm\n\n\n#############################################\n# Order-only phony target for __idf_protocomm\n\nbuild cmake_object_order_depends_target___idf_protocomm: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\nbuild esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  OBJECT_FILE_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_protocomm\n\n\n#############################################\n# Link the static library esp-idf\\protocomm\\libprotocomm.a\n\nbuild esp-idf/protocomm/libprotocomm.a: C_STATIC_LIBRARY_LINKER____idf_protocomm_ esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\__idf_protocomm.pdb\n  TARGET_FILE = esp-idf\\protocomm\\libprotocomm.a\n  TARGET_PDB = esp-idf\\protocomm\\libprotocomm.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protocomm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protocomm/edit_cache: phony esp-idf/protocomm/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/protocomm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protocomm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protocomm/rebuild_cache: phony esp-idf/protocomm/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/protocomm/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/protocomm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protocomm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protocomm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protocomm/install: phony esp-idf/protocomm/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/protocomm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protocomm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protocomm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protocomm/install/local: phony esp-idf/protocomm/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/protocomm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protocomm/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\protocomm && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_esp_local_ctrl\n\n\n#############################################\n# Order-only phony target for __idf_esp_local_ctrl\n\nbuild cmake_object_order_depends_target___idf_esp_local_ctrl: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c\n  OBJECT_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\__idf_esp_local_ctrl.pdb\n  TARGET_PDB = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.pdb\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c\n  OBJECT_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\__idf_esp_local_ctrl.pdb\n  TARGET_PDB = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.pdb\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c\n  OBJECT_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\__idf_esp_local_ctrl.pdb\n  TARGET_PDB = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.pdb\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c\n  OBJECT_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\n  OBJECT_FILE_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\__idf_esp_local_ctrl.pdb\n  TARGET_PDB = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_esp_local_ctrl\n\n\n#############################################\n# Link the static library esp-idf\\esp_local_ctrl\\libesp_local_ctrl.a\n\nbuild esp-idf/esp_local_ctrl/libesp_local_ctrl.a: C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_ esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\__idf_esp_local_ctrl.pdb\n  TARGET_FILE = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.a\n  TARGET_PDB = esp-idf\\esp_local_ctrl\\libesp_local_ctrl.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_local_ctrl && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_local_ctrl/edit_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_local_ctrl && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_local_ctrl/rebuild_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/esp_local_ctrl/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_local_ctrl && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_local_ctrl/install: phony esp-idf/esp_local_ctrl/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_local_ctrl && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_local_ctrl/install/local: phony esp-idf/esp_local_ctrl/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esp_local_ctrl && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/esp_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_espcoredump\n\n\n#############################################\n# Order-only phony target for __idf_espcoredump\n\nbuild cmake_object_order_depends_target___idf_espcoredump: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_checksum.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_checksum.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\nbuild esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/port/xtensa/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\\core_dump_port.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  OBJECT_FILE_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_espcoredump\n\n\n#############################################\n# Link the static library esp-idf\\espcoredump\\libespcoredump.a\n\nbuild esp-idf/espcoredump/libespcoredump.a: C_STATIC_LIBRARY_LINKER____idf_espcoredump_ esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\__idf_espcoredump.pdb\n  TARGET_FILE = esp-idf\\espcoredump\\libespcoredump.a\n  TARGET_PDB = esp-idf\\espcoredump\\libespcoredump.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\espcoredump && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/espcoredump/edit_cache: phony esp-idf/espcoredump/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/espcoredump/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\espcoredump && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/espcoredump/rebuild_cache: phony esp-idf/espcoredump/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/espcoredump/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/espcoredump/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espcoredump/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\espcoredump && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/espcoredump/install: phony esp-idf/espcoredump/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/espcoredump/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espcoredump/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\espcoredump && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/espcoredump/install/local: phony esp-idf/espcoredump/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/espcoredump/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espcoredump/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\espcoredump && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_wear_levelling\n\n\n#############################################\n# Order-only phony target for __idf_wear_levelling\n\nbuild cmake_object_order_depends_target___idf_wear_levelling: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\nbuild esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  OBJECT_FILE_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_wear_levelling\n\n\n#############################################\n# Link the static library esp-idf\\wear_levelling\\libwear_levelling.a\n\nbuild esp-idf/wear_levelling/libwear_levelling.a: C_STATIC_LIBRARY_LINKER____idf_wear_levelling_ esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\__idf_wear_levelling.pdb\n  TARGET_FILE = esp-idf\\wear_levelling\\libwear_levelling.a\n  TARGET_PDB = esp-idf\\wear_levelling\\libwear_levelling.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wear_levelling && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wear_levelling/edit_cache: phony esp-idf/wear_levelling/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wear_levelling && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wear_levelling/rebuild_cache: phony esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/wear_levelling/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/wear_levelling/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wear_levelling/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wear_levelling && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wear_levelling/install: phony esp-idf/wear_levelling/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/wear_levelling/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wear_levelling/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wear_levelling && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wear_levelling/install/local: phony esp-idf/wear_levelling/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/wear_levelling/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wear_levelling/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wear_levelling && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_sdmmc\n\n\n#############################################\n# Order-only phony target for __idf_sdmmc\n\nbuild cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\nbuild esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  OBJECT_FILE_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_sdmmc\n\n\n#############################################\n# Link the static library esp-idf\\sdmmc\\libsdmmc.a\n\nbuild esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\__idf_sdmmc.pdb\n  TARGET_FILE = esp-idf\\sdmmc\\libsdmmc.a\n  TARGET_PDB = esp-idf\\sdmmc\\libsdmmc.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\sdmmc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\sdmmc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/sdmmc/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\sdmmc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\sdmmc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\sdmmc && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_fatfs\n\n\n#############################################\n# Order-only phony target for __idf_fatfs\n\nbuild cmake_object_order_depends_target___idf_fatfs: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\nbuild esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  OBJECT_FILE_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_fatfs\n\n\n#############################################\n# Link the static library esp-idf\\fatfs\\libfatfs.a\n\nbuild esp-idf/fatfs/libfatfs.a: C_STATIC_LIBRARY_LINKER____idf_fatfs_ esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\__idf_fatfs.pdb\n  TARGET_FILE = esp-idf\\fatfs\\libfatfs.a\n  TARGET_PDB = esp-idf\\fatfs\\libfatfs.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\fatfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/fatfs/edit_cache: phony esp-idf/fatfs/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\fatfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/fatfs/rebuild_cache: phony esp-idf/fatfs/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/fatfs/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/fatfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fatfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\fatfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/fatfs/install: phony esp-idf/fatfs/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/fatfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fatfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\fatfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/fatfs/install/local: phony esp-idf/fatfs/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/fatfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fatfs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\fatfs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\idf_test && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/idf_test/edit_cache: phony esp-idf/idf_test/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/idf_test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\idf_test && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/idf_test/rebuild_cache: phony esp-idf/idf_test/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/idf_test/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/idf_test/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/idf_test/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\idf_test && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/idf_test/install: phony esp-idf/idf_test/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/idf_test/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/idf_test/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\idf_test && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/idf_test/install/local: phony esp-idf/idf_test/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/idf_test/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/idf_test/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\idf_test && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ieee802154 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ieee802154/edit_cache: phony esp-idf/ieee802154/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ieee802154 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ieee802154/rebuild_cache: phony esp-idf/ieee802154/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/ieee802154/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ieee802154/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ieee802154 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ieee802154/install: phony esp-idf/ieee802154/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ieee802154/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ieee802154 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ieee802154/install/local: phony esp-idf/ieee802154/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ieee802154/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ieee802154 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_json\n\n\n#############################################\n# Order-only phony target for __idf_json\n\nbuild cmake_object_order_depends_target___idf_json: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\json\\CMakeFiles\\__idf_json.dir\n  OBJECT_FILE_DIR = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\n  TARGET_COMPILE_PDB = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\__idf_json.pdb\n  TARGET_PDB = esp-idf\\json\\libjson.pdb\n\nbuild esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\json\\CMakeFiles\\__idf_json.dir\n  OBJECT_FILE_DIR = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\n  TARGET_COMPILE_PDB = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\__idf_json.pdb\n  TARGET_PDB = esp-idf\\json\\libjson.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_json\n\n\n#############################################\n# Link the static library esp-idf\\json\\libjson.a\n\nbuild esp-idf/json/libjson.a: C_STATIC_LIBRARY_LINKER____idf_json_ esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\json\\CMakeFiles\\__idf_json.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\json\\CMakeFiles\\__idf_json.dir\\__idf_json.pdb\n  TARGET_FILE = esp-idf\\json\\libjson.a\n  TARGET_PDB = esp-idf\\json\\libjson.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\json && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/json/edit_cache: phony esp-idf/json/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/json/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\json && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/json/rebuild_cache: phony esp-idf/json/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/json/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/json/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/json/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\json && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/json/install: phony esp-idf/json/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/json/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/json/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\json && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/json/install/local: phony esp-idf/json/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/json/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/json/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\json && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_mqtt\n\n\n#############################################\n# Order-only phony target for __idf_mqtt\n\nbuild cmake_object_order_depends_target___idf_mqtt: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\n  OBJECT_FILE_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\n  TARGET_COMPILE_PDB = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\__idf_mqtt.pdb\n  TARGET_PDB = esp-idf\\mqtt\\libmqtt.pdb\n\nbuild esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\n  OBJECT_FILE_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\n  TARGET_COMPILE_PDB = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\__idf_mqtt.pdb\n  TARGET_PDB = esp-idf\\mqtt\\libmqtt.pdb\n\nbuild esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\n  OBJECT_FILE_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\n  TARGET_COMPILE_PDB = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\__idf_mqtt.pdb\n  TARGET_PDB = esp-idf\\mqtt\\libmqtt.pdb\n\nbuild esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n  OBJECT_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\n  OBJECT_FILE_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\n  TARGET_COMPILE_PDB = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\__idf_mqtt.pdb\n  TARGET_PDB = esp-idf\\mqtt\\libmqtt.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_mqtt\n\n\n#############################################\n# Link the static library esp-idf\\mqtt\\libmqtt.a\n\nbuild esp-idf/mqtt/libmqtt.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_ esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\__idf_mqtt.pdb\n  TARGET_FILE = esp-idf\\mqtt\\libmqtt.a\n  TARGET_PDB = esp-idf\\mqtt\\libmqtt.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mqtt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mqtt/edit_cache: phony esp-idf/mqtt/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/mqtt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mqtt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mqtt/rebuild_cache: phony esp-idf/mqtt/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/mqtt/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/mqtt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mqtt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mqtt/install: phony esp-idf/mqtt/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/mqtt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mqtt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mqtt/install/local: phony esp-idf/mqtt/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/mqtt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\mqtt && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\openthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/openthread/edit_cache: phony esp-idf/openthread/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\openthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/openthread/rebuild_cache: phony esp-idf/openthread/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/openthread/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/openthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\openthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/openthread/install: phony esp-idf/openthread/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/openthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\openthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/openthread/install/local: phony esp-idf/openthread/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/openthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openthread/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\openthread && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_perfmon\n\n\n#############################################\n# Order-only phony target for __idf_perfmon\n\nbuild cmake_object_order_depends_target___idf_perfmon: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj: C_COMPILER____idf_perfmon_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  OBJECT_FILE_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  TARGET_COMPILE_PDB = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\__idf_perfmon.pdb\n  TARGET_PDB = esp-idf\\perfmon\\libperfmon.pdb\n\nbuild esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  OBJECT_FILE_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  TARGET_COMPILE_PDB = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\__idf_perfmon.pdb\n  TARGET_PDB = esp-idf\\perfmon\\libperfmon.pdb\n\nbuild esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch\n  OBJECT_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  OBJECT_FILE_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  TARGET_COMPILE_PDB = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\__idf_perfmon.pdb\n  TARGET_PDB = esp-idf\\perfmon\\libperfmon.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_perfmon\n\n\n#############################################\n# Link the static library esp-idf\\perfmon\\libperfmon.a\n\nbuild esp-idf/perfmon/libperfmon.a: C_STATIC_LIBRARY_LINKER____idf_perfmon_ esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\__idf_perfmon.pdb\n  TARGET_FILE = esp-idf\\perfmon\\libperfmon.a\n  TARGET_PDB = esp-idf\\perfmon\\libperfmon.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/perfmon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\perfmon && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/perfmon/edit_cache: phony esp-idf/perfmon/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/perfmon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\perfmon && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/perfmon/rebuild_cache: phony esp-idf/perfmon/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/perfmon/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/perfmon/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/perfmon/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\perfmon && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/perfmon/install: phony esp-idf/perfmon/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/perfmon/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/perfmon/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\perfmon && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/perfmon/install/local: phony esp-idf/perfmon/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/perfmon/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/perfmon/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\perfmon && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/perfmon/install/strip: phony esp-idf/perfmon/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_spiffs\n\n\n#############################################\n# Order-only phony target for __idf_spiffs\n\nbuild cmake_object_order_depends_target___idf_spiffs: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\nbuild esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  OBJECT_FILE_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_spiffs\n\n\n#############################################\n# Link the static library esp-idf\\spiffs\\libspiffs.a\n\nbuild esp-idf/spiffs/libspiffs.a: C_STATIC_LIBRARY_LINKER____idf_spiffs_ esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\__idf_spiffs.pdb\n  TARGET_FILE = esp-idf\\spiffs\\libspiffs.a\n  TARGET_PDB = esp-idf\\spiffs\\libspiffs.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spiffs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spiffs/edit_cache: phony esp-idf/spiffs/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/spiffs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spiffs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spiffs/rebuild_cache: phony esp-idf/spiffs/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/spiffs/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/spiffs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spiffs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spiffs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spiffs/install: phony esp-idf/spiffs/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/spiffs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spiffs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spiffs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spiffs/install/local: phony esp-idf/spiffs/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/spiffs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spiffs/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\spiffs && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_touch_element\n\n\n#############################################\n# Order-only phony target for __idf_touch_element\n\nbuild cmake_object_order_depends_target___idf_touch_element: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj: C_COMPILER____idf_touch_element_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_element.c || cmake_object_order_depends_target___idf_touch_element\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_element.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  OBJECT_FILE_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  TARGET_COMPILE_PDB = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\__idf_touch_element.pdb\n  TARGET_PDB = esp-idf\\touch_element\\libtouch_element.pdb\n\nbuild esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj: C_COMPILER____idf_touch_element_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_button.c || cmake_object_order_depends_target___idf_touch_element\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_button.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  OBJECT_FILE_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  TARGET_COMPILE_PDB = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\__idf_touch_element.pdb\n  TARGET_PDB = esp-idf\\touch_element\\libtouch_element.pdb\n\nbuild esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj: C_COMPILER____idf_touch_element_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_slider.c || cmake_object_order_depends_target___idf_touch_element\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_slider.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  OBJECT_FILE_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  TARGET_COMPILE_PDB = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\__idf_touch_element.pdb\n  TARGET_PDB = esp-idf\\touch_element\\libtouch_element.pdb\n\nbuild esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj: C_COMPILER____idf_touch_element_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_matrix.c || cmake_object_order_depends_target___idf_touch_element\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_matrix.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include\n  OBJECT_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  OBJECT_FILE_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  TARGET_COMPILE_PDB = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\__idf_touch_element.pdb\n  TARGET_PDB = esp-idf\\touch_element\\libtouch_element.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_touch_element\n\n\n#############################################\n# Link the static library esp-idf\\touch_element\\libtouch_element.a\n\nbuild esp-idf/touch_element/libtouch_element.a: C_STATIC_LIBRARY_LINKER____idf_touch_element_ esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\__idf_touch_element.pdb\n  TARGET_FILE = esp-idf\\touch_element\\libtouch_element.a\n  TARGET_PDB = esp-idf\\touch_element\\libtouch_element.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/touch_element/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\touch_element && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/touch_element/edit_cache: phony esp-idf/touch_element/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/touch_element/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\touch_element && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/touch_element/rebuild_cache: phony esp-idf/touch_element/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/touch_element/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/touch_element/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/touch_element/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\touch_element && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/touch_element/install: phony esp-idf/touch_element/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/touch_element/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/touch_element/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\touch_element && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/touch_element/install/local: phony esp-idf/touch_element/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/touch_element/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/touch_element/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\touch_element && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/touch_element/install/strip: phony esp-idf/touch_element/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_ulp\n\n\n#############################################\n# Order-only phony target for __idf_ulp\n\nbuild cmake_object_order_depends_target___idf_ulp: phony || esp-idf/esp_system/memory_ld esp-idf/mbedtls/custom_bundle\n\nbuild esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj: C_COMPILER____idf_ulp_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_common.c || cmake_object_order_depends_target___idf_ulp\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\ulp_common\\ulp_common.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include\n  OBJECT_DIR = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\n  OBJECT_FILE_DIR = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\ulp_common\n  TARGET_COMPILE_PDB = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\__idf_ulp.pdb\n  TARGET_PDB = esp-idf\\ulp\\libulp.pdb\n\nbuild esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_adc.c.obj: C_COMPILER____idf_ulp_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_adc.c || cmake_object_order_depends_target___idf_ulp\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\ulp_common\\ulp_adc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include\n  OBJECT_DIR = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\n  OBJECT_FILE_DIR = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\ulp_common\n  TARGET_COMPILE_PDB = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\__idf_ulp.pdb\n  TARGET_PDB = esp-idf\\ulp\\libulp.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_ulp\n\n\n#############################################\n# Link the static library esp-idf\\ulp\\libulp.a\n\nbuild esp-idf/ulp/libulp.a: C_STATIC_LIBRARY_LINKER____idf_ulp_ esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_adc.c.obj || esp-idf/esp_system/memory_ld esp-idf/mbedtls/custom_bundle\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\__idf_ulp.pdb\n  TARGET_FILE = esp-idf\\ulp\\libulp.a\n  TARGET_PDB = esp-idf\\ulp\\libulp.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ulp && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ulp/edit_cache: phony esp-idf/ulp/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/ulp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ulp && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ulp/rebuild_cache: phony esp-idf/ulp/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/ulp/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/ulp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ulp/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ulp && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ulp/install: phony esp-idf/ulp/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/ulp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ulp/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ulp && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ulp/install/local: phony esp-idf/ulp/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/ulp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ulp/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\ulp && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_usb\n\n\n#############################################\n# Order-only phony target for __idf_usb\n\nbuild cmake_object_order_depends_target___idf_usb: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hcd_dwc.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hcd_dwc.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hub.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hub.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_helpers.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_helpers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_host.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_host.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_private.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_private.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usbh.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usbh.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\nbuild esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj: C_COMPILER____idf_usb_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_phy.c || cmake_object_order_depends_target___idf_usb\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_phy.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  OBJECT_FILE_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_usb\n\n\n#############################################\n# Link the static library esp-idf\\usb\\libusb.a\n\nbuild esp-idf/usb/libusb.a: C_STATIC_LIBRARY_LINKER____idf_usb_ esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\__idf_usb.pdb\n  TARGET_FILE = esp-idf\\usb\\libusb.a\n  TARGET_PDB = esp-idf\\usb\\libusb.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\usb && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/usb/edit_cache: phony esp-idf/usb/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\usb && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/usb/rebuild_cache: phony esp-idf/usb/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/usb/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/usb/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/usb/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\usb && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/usb/install: phony esp-idf/usb/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/usb/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/usb/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\usb && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/usb/install/local: phony esp-idf/usb/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/usb/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/usb/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\usb && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/usb/install/strip: phony esp-idf/usb/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_wifi_provisioning\n\n\n#############################################\n# Order-only phony target for __idf_wifi_provisioning\n\nbuild cmake_object_order_depends_target___idf_wifi_provisioning: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_ctrl.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_ctrl.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_ctrl.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  OBJECT_FILE_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_wifi_provisioning\n\n\n#############################################\n# Link the static library esp-idf\\wifi_provisioning\\libwifi_provisioning.a\n\nbuild esp-idf/wifi_provisioning/libwifi_provisioning.a: C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj || esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\__idf_wifi_provisioning.pdb\n  TARGET_FILE = esp-idf\\wifi_provisioning\\libwifi_provisioning.a\n  TARGET_PDB = esp-idf\\wifi_provisioning\\libwifi_provisioning.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wifi_provisioning && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wifi_provisioning/edit_cache: phony esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wifi_provisioning && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wifi_provisioning/rebuild_cache: phony esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/wifi_provisioning/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wifi_provisioning && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wifi_provisioning/install: phony esp-idf/wifi_provisioning/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wifi_provisioning && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wifi_provisioning/install/local: phony esp-idf/wifi_provisioning/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/wifi_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\wifi_provisioning && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_main\n\n\n#############################################\n# Order-only phony target for __idf_main\n\nbuild cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_st7789 cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/decode_png.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/decode_png.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\decode_png.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/pngle.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/pngle.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\pngle.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/bme680.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/bme680.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bme680.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/i2cdev.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/i2cdev.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\i2cdev.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_api.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/VL53L1X_api.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\VL53L1X_api.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_calibration.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/VL53L1X_calibration.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\VL53L1X_calibration.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/RdWr_Byte.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/RdWr_Byte.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\RdWr_Byte.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/ds3231.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/ds3231.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\ds3231.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/icm42670.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/icm42670.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\icm42670.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\nbuild esp-idf/main/CMakeFiles/__idf_main.dir/mcp342x.c.obj: C_COMPILER____idf_main_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/mcp342x.c || cmake_object_order_depends_target___idf_main\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\mcp342x.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  OBJECT_FILE_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_main\n\n\n#############################################\n# Link the static library esp-idf\\main\\libmain.a\n\nbuild esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/decode_png.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/pngle.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bme680.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/i2cdev.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_api.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/VL53L1X_calibration.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/RdWr_Byte.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/ds3231.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/icm42670.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/mcp342x.c.obj || esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/st7789/libst7789.a esp-idf/touch_element/libtouch_element.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\main\\CMakeFiles\\__idf_main.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\main\\CMakeFiles\\__idf_main.dir\\__idf_main.pdb\n  TARGET_FILE = esp-idf\\main\\libmain.a\n  TARGET_PDB = esp-idf\\main\\libmain.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/main/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\main && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Write statements declared in CMakeLists.txt:\n# C:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt\n# =============================================================================\n\n# =============================================================================\n# Object build statements for STATIC_LIBRARY target __idf_st7789\n\n\n#############################################\n# Order-only phony target for __idf_st7789\n\nbuild cmake_object_order_depends_target___idf_st7789: phony || cmake_object_order_depends_target___idf_xtensa\n\nbuild esp-idf/st7789/CMakeFiles/__idf_st7789.dir/st7789.c.obj: C_COMPILER____idf_st7789_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/st7789.c || cmake_object_order_depends_target___idf_st7789\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\\st7789.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\n  OBJECT_FILE_DIR = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\n  TARGET_COMPILE_PDB = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\\__idf_st7789.pdb\n  TARGET_PDB = esp-idf\\st7789\\libst7789.pdb\n\nbuild esp-idf/st7789/CMakeFiles/__idf_st7789.dir/fontx.c.obj: C_COMPILER____idf_st7789_ C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/fontx.c || cmake_object_order_depends_target___idf_st7789\n  DEFINES = -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS\n  DEP_FILE = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\\fontx.c.obj.d\n  FLAGS = -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration\n  INCLUDES = -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include\n  OBJECT_DIR = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\n  OBJECT_FILE_DIR = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\n  TARGET_COMPILE_PDB = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\\__idf_st7789.pdb\n  TARGET_PDB = esp-idf\\st7789\\libst7789.pdb\n\n\n# =============================================================================\n# Link build statements for STATIC_LIBRARY target __idf_st7789\n\n\n#############################################\n# Link the static library esp-idf\\st7789\\libst7789.a\n\nbuild esp-idf/st7789/libst7789.a: C_STATIC_LIBRARY_LINKER____idf_st7789_ esp-idf/st7789/CMakeFiles/__idf_st7789.dir/st7789.c.obj esp-idf/st7789/CMakeFiles/__idf_st7789.dir/fontx.c.obj || esp-idf/xtensa/libxtensa.a\n  LANGUAGE_COMPILE_FLAGS = -mlongcalls\n  OBJECT_DIR = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\n  POST_BUILD = cd .\n  PRE_LINK = cd .\n  TARGET_COMPILE_PDB = esp-idf\\st7789\\CMakeFiles\\__idf_st7789.dir\\__idf_st7789.pdb\n  TARGET_FILE = esp-idf\\st7789\\libst7789.a\n  TARGET_PDB = esp-idf\\st7789\\libst7789.pdb\n\n\n#############################################\n# Utility command for edit_cache\n\nbuild esp-idf/st7789/CMakeFiles/edit_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\st7789 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake-gui.exe -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake cache editor...\n  pool = console\n  restat = 1\n\nbuild esp-idf/st7789/edit_cache: phony esp-idf/st7789/CMakeFiles/edit_cache.util\n\n\n#############################################\n# Utility command for rebuild_cache\n\nbuild esp-idf/st7789/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\st7789 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe --regenerate-during-build -SC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway -BC:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\"\n  DESC = Running CMake to regenerate build system...\n  pool = console\n  restat = 1\n\nbuild esp-idf/st7789/rebuild_cache: phony esp-idf/st7789/CMakeFiles/rebuild_cache.util\n\n\n#############################################\n# Utility command for list_install_components\n\nbuild esp-idf/st7789/list_install_components: phony\n\n\n#############################################\n# Utility command for install\n\nbuild esp-idf/st7789/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/st7789/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\st7789 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -P cmake_install.cmake\"\n  DESC = Install the project...\n  pool = console\n  restat = 1\n\nbuild esp-idf/st7789/install: phony esp-idf/st7789/CMakeFiles/install.util\n\n\n#############################################\n# Utility command for install/local\n\nbuild esp-idf/st7789/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/st7789/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\st7789 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake\"\n  DESC = Installing only the local directory...\n  pool = console\n  restat = 1\n\nbuild esp-idf/st7789/install/local: phony esp-idf/st7789/CMakeFiles/install/local.util\n\n\n#############################################\n# Utility command for install/strip\n\nbuild esp-idf/st7789/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/st7789/all\n  COMMAND = cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\st7789 && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake\"\n  DESC = Installing the project stripped...\n  pool = console\n  restat = 1\n\nbuild esp-idf/st7789/install/strip: phony esp-idf/st7789/CMakeFiles/install/strip.util\n\n# =============================================================================\n# Target aliases.\n\nbuild __idf_app_trace: phony esp-idf/app_trace/libapp_trace.a\n\nbuild __idf_app_update: phony esp-idf/app_update/libapp_update.a\n\nbuild __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a\n\nbuild __idf_cmock: phony esp-idf/cmock/libcmock.a\n\nbuild __idf_console: phony esp-idf/console/libconsole.a\n\nbuild __idf_cxx: phony esp-idf/cxx/libcxx.a\n\nbuild __idf_driver: phony esp-idf/driver/libdriver.a\n\nbuild __idf_efuse: phony esp-idf/efuse/libefuse.a\n\nbuild __idf_esp-tls: phony esp-idf/esp-tls/libesp-tls.a\n\nbuild __idf_esp_adc: phony esp-idf/esp_adc/libesp_adc.a\n\nbuild __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a\n\nbuild __idf_esp_coex: phony esp-idf/esp_coex/libesp_coex.a\n\nbuild __idf_esp_common: phony esp-idf/esp_common/libesp_common.a\n\nbuild __idf_esp_eth: phony esp-idf/esp_eth/libesp_eth.a\n\nbuild __idf_esp_event: phony esp-idf/esp_event/libesp_event.a\n\nbuild __idf_esp_gdbstub: phony esp-idf/esp_gdbstub/libesp_gdbstub.a\n\nbuild __idf_esp_hid: phony esp-idf/esp_hid/libesp_hid.a\n\nbuild __idf_esp_http_client: phony esp-idf/esp_http_client/libesp_http_client.a\n\nbuild __idf_esp_http_server: phony esp-idf/esp_http_server/libesp_http_server.a\n\nbuild __idf_esp_https_ota: phony esp-idf/esp_https_ota/libesp_https_ota.a\n\nbuild __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a\n\nbuild __idf_esp_lcd: phony esp-idf/esp_lcd/libesp_lcd.a\n\nbuild __idf_esp_local_ctrl: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a\n\nbuild __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a\n\nbuild __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a\n\nbuild __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a\n\nbuild __idf_esp_phy: phony esp-idf/esp_phy/libesp_phy.a\n\nbuild __idf_esp_pm: phony esp-idf/esp_pm/libesp_pm.a\n\nbuild __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a\n\nbuild __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a\n\nbuild __idf_esp_system: phony esp-idf/esp_system/libesp_system.a\n\nbuild __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a\n\nbuild __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a\n\nbuild __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a\n\nbuild __idf_fatfs: phony esp-idf/fatfs/libfatfs.a\n\nbuild __idf_freertos: phony esp-idf/freertos/libfreertos.a\n\nbuild __idf_hal: phony esp-idf/hal/libhal.a\n\nbuild __idf_heap: phony esp-idf/heap/libheap.a\n\nbuild __idf_http_parser: phony esp-idf/http_parser/libhttp_parser.a\n\nbuild __idf_json: phony esp-idf/json/libjson.a\n\nbuild __idf_log: phony esp-idf/log/liblog.a\n\nbuild __idf_lwip: phony esp-idf/lwip/liblwip.a\n\nbuild __idf_main: phony esp-idf/main/libmain.a\n\nbuild __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a\n\nbuild __idf_mqtt: phony esp-idf/mqtt/libmqtt.a\n\nbuild __idf_newlib: phony esp-idf/newlib/libnewlib.a\n\nbuild __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a\n\nbuild __idf_perfmon: phony esp-idf/perfmon/libperfmon.a\n\nbuild __idf_protobuf-c: phony esp-idf/protobuf-c/libprotobuf-c.a\n\nbuild __idf_protocomm: phony esp-idf/protocomm/libprotocomm.a\n\nbuild __idf_pthread: phony esp-idf/pthread/libpthread.a\n\nbuild __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a\n\nbuild __idf_soc: phony esp-idf/soc/libsoc.a\n\nbuild __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a\n\nbuild __idf_spiffs: phony esp-idf/spiffs/libspiffs.a\n\nbuild __idf_st7789: phony esp-idf/st7789/libst7789.a\n\nbuild __idf_tcp_transport: phony esp-idf/tcp_transport/libtcp_transport.a\n\nbuild __idf_touch_element: phony esp-idf/touch_element/libtouch_element.a\n\nbuild __idf_ulp: phony esp-idf/ulp/libulp.a\n\nbuild __idf_unity: phony esp-idf/unity/libunity.a\n\nbuild __idf_usb: phony esp-idf/usb/libusb.a\n\nbuild __idf_vfs: phony esp-idf/vfs/libvfs.a\n\nbuild __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a\n\nbuild __idf_wifi_provisioning: phony esp-idf/wifi_provisioning/libwifi_provisioning.a\n\nbuild __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a\n\nbuild __idf_xtensa: phony esp-idf/xtensa/libxtensa.a\n\nbuild __ldgen_output_sections.ld: phony esp-idf/esp_system/__ldgen_output_sections.ld\n\nbuild apidoc: phony esp-idf/mbedtls/mbedtls/apidoc\n\nbuild app-flash: phony esp-idf/esptool_py/app-flash\n\nbuild app_check_size: phony esp-idf/esptool_py/app_check_size\n\nbuild bootloader-flash: phony esp-idf/bootloader/bootloader-flash\n\nbuild custom_bundle: phony esp-idf/mbedtls/custom_bundle\n\nbuild efuse-common-table: phony esp-idf/efuse/efuse-common-table\n\nbuild efuse-custom-table: phony esp-idf/efuse/efuse-custom-table\n\nbuild efuse_common_table: phony esp-idf/efuse/efuse_common_table\n\nbuild efuse_custom_table: phony esp-idf/efuse/efuse_custom_table\n\nbuild efuse_test_table: phony esp-idf/efuse/efuse_test_table\n\nbuild encrypted-app-flash: phony esp-idf/esptool_py/encrypted-app-flash\n\nbuild encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash\n\nbuild encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash\n\nbuild everest: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\n\nbuild lib: phony esp-idf/mbedtls/mbedtls/library/lib\n\nbuild libapp_trace.a: phony esp-idf/app_trace/libapp_trace.a\n\nbuild libapp_update.a: phony esp-idf/app_update/libapp_update.a\n\nbuild libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a\n\nbuild libcmock.a: phony esp-idf/cmock/libcmock.a\n\nbuild libconsole.a: phony esp-idf/console/libconsole.a\n\nbuild libcxx.a: phony esp-idf/cxx/libcxx.a\n\nbuild libdriver.a: phony esp-idf/driver/libdriver.a\n\nbuild libefuse.a: phony esp-idf/efuse/libefuse.a\n\nbuild libesp-tls.a: phony esp-idf/esp-tls/libesp-tls.a\n\nbuild libesp_adc.a: phony esp-idf/esp_adc/libesp_adc.a\n\nbuild libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a\n\nbuild libesp_coex.a: phony esp-idf/esp_coex/libesp_coex.a\n\nbuild libesp_common.a: phony esp-idf/esp_common/libesp_common.a\n\nbuild libesp_eth.a: phony esp-idf/esp_eth/libesp_eth.a\n\nbuild libesp_event.a: phony esp-idf/esp_event/libesp_event.a\n\nbuild libesp_gdbstub.a: phony esp-idf/esp_gdbstub/libesp_gdbstub.a\n\nbuild libesp_hid.a: phony esp-idf/esp_hid/libesp_hid.a\n\nbuild libesp_http_client.a: phony esp-idf/esp_http_client/libesp_http_client.a\n\nbuild libesp_http_server.a: phony esp-idf/esp_http_server/libesp_http_server.a\n\nbuild libesp_https_ota.a: phony esp-idf/esp_https_ota/libesp_https_ota.a\n\nbuild libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a\n\nbuild libesp_lcd.a: phony esp-idf/esp_lcd/libesp_lcd.a\n\nbuild libesp_local_ctrl.a: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a\n\nbuild libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a\n\nbuild libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a\n\nbuild libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a\n\nbuild libesp_phy.a: phony esp-idf/esp_phy/libesp_phy.a\n\nbuild libesp_pm.a: phony esp-idf/esp_pm/libesp_pm.a\n\nbuild libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a\n\nbuild libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a\n\nbuild libesp_system.a: phony esp-idf/esp_system/libesp_system.a\n\nbuild libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a\n\nbuild libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a\n\nbuild libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a\n\nbuild libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\n\nbuild libfatfs.a: phony esp-idf/fatfs/libfatfs.a\n\nbuild libfreertos.a: phony esp-idf/freertos/libfreertos.a\n\nbuild libhal.a: phony esp-idf/hal/libhal.a\n\nbuild libheap.a: phony esp-idf/heap/libheap.a\n\nbuild libhttp_parser.a: phony esp-idf/http_parser/libhttp_parser.a\n\nbuild libjson.a: phony esp-idf/json/libjson.a\n\nbuild liblog.a: phony esp-idf/log/liblog.a\n\nbuild liblwip.a: phony esp-idf/lwip/liblwip.a\n\nbuild libmain.a: phony esp-idf/main/libmain.a\n\nbuild libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a\n\nbuild libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a\n\nbuild libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a\n\nbuild libmqtt.a: phony esp-idf/mqtt/libmqtt.a\n\nbuild libnewlib.a: phony esp-idf/newlib/libnewlib.a\n\nbuild libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a\n\nbuild libp256m.a: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\n\nbuild libperfmon.a: phony esp-idf/perfmon/libperfmon.a\n\nbuild libprotobuf-c.a: phony esp-idf/protobuf-c/libprotobuf-c.a\n\nbuild libprotocomm.a: phony esp-idf/protocomm/libprotocomm.a\n\nbuild libpthread.a: phony esp-idf/pthread/libpthread.a\n\nbuild libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a\n\nbuild libsoc.a: phony esp-idf/soc/libsoc.a\n\nbuild libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a\n\nbuild libspiffs.a: phony esp-idf/spiffs/libspiffs.a\n\nbuild libst7789.a: phony esp-idf/st7789/libst7789.a\n\nbuild libtcp_transport.a: phony esp-idf/tcp_transport/libtcp_transport.a\n\nbuild libtouch_element.a: phony esp-idf/touch_element/libtouch_element.a\n\nbuild libulp.a: phony esp-idf/ulp/libulp.a\n\nbuild libunity.a: phony esp-idf/unity/libunity.a\n\nbuild libusb.a: phony esp-idf/usb/libusb.a\n\nbuild libvfs.a: phony esp-idf/vfs/libvfs.a\n\nbuild libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a\n\nbuild libwifi_provisioning.a: phony esp-idf/wifi_provisioning/libwifi_provisioning.a\n\nbuild libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.a\n\nbuild libxtensa.a: phony esp-idf/xtensa/libxtensa.a\n\nbuild mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a\n\nbuild mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a\n\nbuild mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a\n\nbuild memory_ld: phony esp-idf/esp_system/memory_ld\n\nbuild p256m: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\n\nbuild partition-table: phony esp-idf/partition_table/partition-table\n\nbuild partition-table-flash: phony esp-idf/partition_table/partition-table-flash\n\nbuild partition_table: phony esp-idf/partition_table/partition_table\n\nbuild partition_table-flash: phony esp-idf/partition_table/partition_table-flash\n\nbuild partition_table_bin: phony esp-idf/partition_table/partition_table_bin\n\nbuild show-efuse-table: phony esp-idf/efuse/show-efuse-table\n\nbuild show_efuse_table: phony esp-idf/efuse/show_efuse_table\n\n# =============================================================================\n# Folder targets.\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\n\nbuild all: phony bootloader app main.elf spiffs_storage_bin esp-idf/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf\n\nbuild esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_ringbuf/all esp-idf/efuse/all esp-idf/driver/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_partition/all esp-idf/app_update/all esp-idf/esp_mm/all esp-idf/spi_flash/all esp-idf/pthread/all esp-idf/esp_system/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_phy/all esp-idf/vfs/all esp-idf/lwip/all esp-idf/esp_netif_stack/all esp-idf/esp_netif/all esp-idf/wpa_supplicant/all esp-idf/esp_coex/all esp-idf/esp_wifi/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_adc/all esp-idf/esp_eth/all esp-idf/esp_gdbstub/all esp-idf/esp_hid/all esp-idf/tcp_transport/all esp-idf/esp_http_client/all esp-idf/esp_http_server/all esp-idf/esp_https_ota/all esp-idf/esp_https_server/all esp-idf/esp_psram/all esp-idf/esp_lcd/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/esp_local_ctrl/all esp-idf/espcoredump/all esp-idf/wear_levelling/all esp-idf/sdmmc/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/json/all esp-idf/mqtt/all esp-idf/openthread/all esp-idf/perfmon/all esp-idf/spiffs/all esp-idf/touch_element/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/st7789/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace\n\nbuild esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update\n\nbuild esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader\n\nbuild esp-idf/bootloader/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support\n\nbuild esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt\n\nbuild esp-idf/bt/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock\n\nbuild esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console\n\nbuild esp-idf/console/all: phony esp-idf/console/libconsole.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx\n\nbuild esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver\n\nbuild esp-idf/driver/all: phony esp-idf/driver/libdriver.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse\n\nbuild esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls\n\nbuild esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc\n\nbuild esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format\n\nbuild esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex\n\nbuild esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common\n\nbuild esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth\n\nbuild esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event\n\nbuild esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub\n\nbuild esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid\n\nbuild esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client\n\nbuild esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server\n\nbuild esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota\n\nbuild esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server\n\nbuild esp-idf/esp_https_server/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support\n\nbuild esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32s3/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3\n\nbuild esp-idf/esp_hw_support/port/esp32s3/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd\n\nbuild esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl\n\nbuild esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm\n\nbuild esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif\n\nbuild esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack\n\nbuild esp-idf/esp_netif_stack/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition\n\nbuild esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy\n\nbuild esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm\n\nbuild esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram\n\nbuild esp-idf/esp_psram/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf\n\nbuild esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom\n\nbuild esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system\n\nbuild esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a esp-idf/esp_system/port/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port\n\nbuild esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32s3/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3\n\nbuild esp-idf/esp_system/port/soc/esp32s3/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer\n\nbuild esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi\n\nbuild esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump\n\nbuild esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py\n\nbuild esp-idf/esptool_py/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs\n\nbuild esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos\n\nbuild esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal\n\nbuild esp-idf/hal/all: phony esp-idf/hal/libhal.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap\n\nbuild esp-idf/heap/all: phony esp-idf/heap/libheap.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser\n\nbuild esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test\n\nbuild esp-idf/idf_test/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154\n\nbuild esp-idf/ieee802154/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json\n\nbuild esp-idf/json/all: phony esp-idf/json/libjson.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log\n\nbuild esp-idf/log/all: phony esp-idf/log/liblog.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip\n\nbuild esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main\n\nbuild esp-idf/main/all: phony esp-idf/main/libmain.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls\n\nbuild esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls\n\nbuild esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/3rdparty/all esp-idf/mbedtls/mbedtls/library/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/all esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/everest/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m\n\nbuild esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include\n\nbuild esp-idf/mbedtls/mbedtls/include/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library\n\nbuild esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt\n\nbuild esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib\n\nbuild esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/port/all\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port\n\nbuild esp-idf/newlib/port/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash\n\nbuild esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread\n\nbuild esp-idf/openthread/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table\n\nbuild esp-idf/partition_table/all: phony\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon\n\nbuild esp-idf/perfmon/all: phony esp-idf/perfmon/libperfmon.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c\n\nbuild esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm\n\nbuild esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread\n\nbuild esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc\n\nbuild esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc\n\nbuild esp-idf/soc/all: phony esp-idf/soc/libsoc.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash\n\nbuild esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs\n\nbuild esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789\n\nbuild esp-idf/st7789/all: phony esp-idf/st7789/libst7789.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport\n\nbuild esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element\n\nbuild esp-idf/touch_element/all: phony esp-idf/touch_element/libtouch_element.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp\n\nbuild esp-idf/ulp/all: phony esp-idf/ulp/libulp.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity\n\nbuild esp-idf/unity/all: phony esp-idf/unity/libunity.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb\n\nbuild esp-idf/usb/all: phony esp-idf/usb/libusb.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs\n\nbuild esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling\n\nbuild esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning\n\nbuild esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant\n\nbuild esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a\n\n# =============================================================================\n\n#############################################\n# Folder: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa\n\nbuild esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a\n\n# =============================================================================\n# Built-in targets\n\n\n#############################################\n# Re-run CMake if any of its inputs changed.\n\nbuild build.ninja: RERUN_CMAKE | C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/ieee802154/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/error.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version_features.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/uf2.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/idf_component.yml C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/partitions.csv C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in storage-flash_args.in\n  pool = console\n\n\n#############################################\n# A missing CMake input file is not an error.\n\nbuild C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/cmock/CMock/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_coex/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_phy/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/esp_wifi/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/heap/tlsf/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/ieee802154/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/json/cJSON/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/lwip/lwip/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/lib/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/openthread/openthread/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/spiffs/spiffs/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/.git/modules/components/unity/unity/HEAD C$:/Espressif/frameworks/esp-idf-v5.1.2/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c3_family/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/host/nimble/nimble/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/console/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/sources.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif_stack/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ld/ld.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/espefuse.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/log/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/error.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library/version_features.c C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/lib/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/openthread/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/.git C$:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/CMakeLists.txt C$:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/project_include.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/build.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/component.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/depgraph.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/dfu.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/git_submodules.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/idf.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/kconfig.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/ldgen.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/project_description.json.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/targets.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/tool_version_check.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/toolchain-esp32s3.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/uf2.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/utilities.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/cmake/version.cmake C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/confgen.py C$:/Espressif/frameworks/esp-idf-v5.1.2/tools/kconfig_new/config.env.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/CMakeLists.txt C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/idf_component.yml C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/partitions.csv C$:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in storage-flash_args.in: phony\n\n\n#############################################\n# Clean additional files.\n\nbuild CMakeFiles/clean.additional: CLEAN_ADDITIONAL\n\n\n#############################################\n# Clean all the built files.\n\nbuild clean: CLEAN CMakeFiles/clean.additional\n\n\n#############################################\n# Print all primary targets available.\n\nbuild help: HELP\n\n\n#############################################\n# Make the all target the default.\n\ndefault all\n"
  },
  {
    "path": "Code/build/cmake_install.cmake",
    "content": "# Install script for directory: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for each subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmake_install.cmake\")\n\nendif()\n\nif(CMAKE_INSTALL_COMPONENT)\n  set(CMAKE_INSTALL_MANIFEST \"install_manifest_${CMAKE_INSTALL_COMPONENT}.txt\")\nelse()\n  set(CMAKE_INSTALL_MANIFEST \"install_manifest.txt\")\nendif()\n\nstring(REPLACE \";\" \"\\n\" CMAKE_INSTALL_MANIFEST_CONTENT\n       \"${CMAKE_INSTALL_MANIFEST_FILES}\")\nfile(WRITE \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/${CMAKE_INSTALL_MANIFEST}\"\n     \"${CMAKE_INSTALL_MANIFEST_CONTENT}\")\n"
  },
  {
    "path": "Code/build/compile_commands.json",
    "content": "[\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -o CMakeFiles\\\\main.elf.dir\\\\project_elf_src_esp32s3.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\project_elf_src_esp32s3.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\project_elf_src_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\eri.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\eri.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\eri.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\xt_trax.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xt_trax.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xt_trax.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\xtensa_intr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xtensa_intr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xtensa_intr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\xtensa\\\\CMakeFiles\\\\__idf_xtensa.dir\\\\xtensa_intr_asm.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xtensa_intr_asm.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\xtensa\\\\xtensa_intr_asm.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_ringbuf\\\\CMakeFiles\\\\__idf_esp_ringbuf.dir\\\\ringbuf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_ringbuf\\\\ringbuf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_ringbuf\\\\ringbuf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_table.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_table.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_table.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_fields.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_fields.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_fields.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_rtc_calib.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_rtc_calib.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_rtc_calib.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\esp32s3\\\\esp_efuse_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\esp32s3\\\\esp_efuse_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_api.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_api.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_fields.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_fields.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_fields.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\esp_efuse_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\esp_efuse_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\efuse\\\\CMakeFiles\\\\__idf_efuse.dir\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\efuse\\\\src\\\\efuse_controller\\\\keys\\\\with_key_purposes\\\\esp_efuse_api_key.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gpio\\\\gpio.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gpio\\\\gpio_glitch_filter_ops.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio_glitch_filter_ops.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio_glitch_filter_ops.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gpio\\\\rtc_io.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\rtc_io.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\rtc_io.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\spi_bus_lock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\spi_bus_lock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\spi_bus_lock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\adc_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\adc_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\adc_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\adc_dma_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\adc_dma_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\adc_dma_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gpio\\\\dedic_gpio.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\dedic_gpio.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\dedic_gpio.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gpio\\\\gpio_pin_glitch_filter.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio_pin_glitch_filter.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gpio\\\\gpio_pin_glitch_filter.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gptimer\\\\gptimer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gptimer\\\\gptimer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gptimer\\\\gptimer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\gptimer\\\\gptimer_priv.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gptimer\\\\gptimer_priv.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\gptimer\\\\gptimer_priv.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\timer_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\timer_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\timer_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\i2c\\\\i2c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2c\\\\i2c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2c\\\\i2c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\i2s\\\\i2s_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\i2s\\\\i2s_std.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_std.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_std.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\i2s_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\i2s_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\i2s_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\i2s\\\\i2s_pdm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_pdm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_pdm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\i2s\\\\i2s_tdm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_tdm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\i2s\\\\i2s_tdm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\ledc\\\\ledc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\ledc\\\\ledc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\ledc\\\\ledc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_cap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_cap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_cap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_cmpr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_cmpr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_cmpr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_com.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_com.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_com.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_fault.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_fault.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_fault.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_gen.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_gen.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_gen.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_oper.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_oper.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_oper.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_sync.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_sync.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_sync.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\mcpwm\\\\mcpwm_timer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_timer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\mcpwm\\\\mcpwm_timer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\mcpwm_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\mcpwm_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\mcpwm_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\pcnt\\\\pulse_cnt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\pcnt\\\\pulse_cnt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\pcnt\\\\pulse_cnt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\pcnt_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\pcnt_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\pcnt_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\rmt\\\\rmt_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\rmt\\\\rmt_encoder.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_encoder.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_encoder.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\rmt\\\\rmt_rx.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_rx.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_rx.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\rmt\\\\rmt_tx.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_tx.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\rmt\\\\rmt_tx.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\rmt_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\rmt_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\rmt_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\sdmmc\\\\sdmmc_transaction.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sdmmc\\\\sdmmc_transaction.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sdmmc\\\\sdmmc_transaction.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\sdmmc\\\\sdmmc_host.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sdmmc\\\\sdmmc_host.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sdmmc\\\\sdmmc_host.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\sigma_delta\\\\sdm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sigma_delta\\\\sdm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\sigma_delta\\\\sdm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\sigma_delta_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\sigma_delta_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\sigma_delta_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\gpspi\\\\spi_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\gpspi\\\\spi_master.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_master.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_master.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\gpspi\\\\spi_slave.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_slave.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_slave.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\sdspi\\\\sdspi_crc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_crc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_crc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\sdspi\\\\sdspi_host.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_host.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_host.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\sdspi\\\\sdspi_transaction.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_transaction.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\sdspi\\\\sdspi_transaction.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\spi\\\\gpspi\\\\spi_slave_hd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_slave_hd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\spi\\\\gpspi\\\\spi_slave_hd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\temperature_sensor\\\\temperature_sensor.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\temperature_sensor\\\\temperature_sensor.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\temperature_sensor\\\\temperature_sensor.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\deprecated\\\\rtc_temperature_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\rtc_temperature_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\deprecated\\\\rtc_temperature_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\touch_sensor\\\\touch_sensor_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\touch_sensor\\\\touch_sensor_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\touch_sensor\\\\touch_sensor_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\touch_sensor\\\\esp32s3\\\\touch_sensor.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\touch_sensor\\\\esp32s3\\\\touch_sensor.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\touch_sensor\\\\esp32s3\\\\touch_sensor.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\twai\\\\twai.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\twai\\\\twai.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\twai\\\\twai.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\uart\\\\uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\uart\\\\uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\uart\\\\uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\usb_serial_jtag\\\\usb_serial_jtag.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\usb_serial_jtag\\\\usb_serial_jtag.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\usb_serial_jtag\\\\usb_serial_jtag.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\driver\\\\CMakeFiles\\\\__idf_driver.dir\\\\usb_serial_jtag\\\\usb_serial_jtag_connection_monitor.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\usb_serial_jtag\\\\usb_serial_jtag_connection_monitor.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\driver\\\\usb_serial_jtag\\\\usb_serial_jtag_connection_monitor.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_pm\\\\CMakeFiles\\\\__idf_esp_pm.dir\\\\pm_locks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_locks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_locks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_pm\\\\CMakeFiles\\\\__idf_esp_pm.dir\\\\pm_trace.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_trace.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_trace.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_pm\\\\CMakeFiles\\\\__idf_esp_pm.dir\\\\pm_impl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_impl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_pm\\\\pm_impl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\CMakeFiles\\\\__idf_mbedtls.dir\\\\esp_crt_bundle\\\\esp_crt_bundle.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\esp_crt_bundle\\\\esp_crt_bundle.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\esp_crt_bundle\\\\esp_crt_bundle.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\mbedtls\\\\CMakeFiles\\\\__idf_mbedtls.dir\\\\__\\\\__\\\\x509_crt_bundle.S.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\x509_crt_bundle.S\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\build\\\\x509_crt_bundle.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\CMakeFiles\\\\everest.dir\\\\library\\\\everest.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\everest.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\everest.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\CMakeFiles\\\\everest.dir\\\\library\\\\x25519.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\x25519.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\x25519.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\CMakeFiles\\\\everest.dir\\\\library\\\\Hacl_Curve25519_joined.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\Hacl_Curve25519_joined.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\everest\\\\library\\\\Hacl_Curve25519_joined.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\CMakeFiles\\\\p256m.dir\\\\p256-m_driver_entrypoints.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\p256-m_driver_entrypoints.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\p256-m_driver_entrypoints.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\CMakeFiles\\\\p256m.dir\\\\p256-m\\\\p256-m.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\p256-m\\\\p256-m.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\3rdparty\\\\p256-m\\\\p256-m\\\\p256-m.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\aes.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aes.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aes.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\aesni.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aesni.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aesni.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\aesce.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aesce.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aesce.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\aria.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aria.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\aria.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\asn1parse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\asn1parse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\asn1parse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\asn1write.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\asn1write.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\asn1write.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\base64.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\base64.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\base64.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\bignum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\bignum_core.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_core.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_core.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\bignum_mod.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_mod.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_mod.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\bignum_mod_raw.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_mod_raw.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\bignum_mod_raw.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\camellia.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\camellia.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\camellia.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ccm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ccm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ccm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\chacha20.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\chacha20.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\chacha20.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\chachapoly.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\chachapoly.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\chachapoly.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\cipher.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cipher.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cipher.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\cipher_wrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cipher_wrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cipher_wrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\constant_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\constant_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\constant_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\cmac.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cmac.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\cmac.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ctr_drbg.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ctr_drbg.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ctr_drbg.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\des.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\des.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\des.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\dhm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\dhm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\dhm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecdh.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecdh.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecdh.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecdsa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecdsa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecdsa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecjpake.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecjpake.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecjpake.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecp_curves.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp_curves.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp_curves.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ecp_curves_new.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp_curves_new.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ecp_curves_new.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\entropy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\entropy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\entropy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\entropy_poll.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\entropy_poll.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\entropy_poll.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\error.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\error.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\error.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\gcm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\gcm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\gcm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\hkdf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\hkdf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\hkdf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\hmac_drbg.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\hmac_drbg.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\hmac_drbg.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\lmots.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\lmots.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\lmots.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\lms.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\lms.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\lms.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\md.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\md.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\md.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\md5.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\md5.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\md5.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\memory_buffer_alloc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\memory_buffer_alloc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\memory_buffer_alloc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\nist_kw.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\nist_kw.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\nist_kw.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\oid.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\oid.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\oid.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\padlock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\padlock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\padlock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pk_wrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pk_wrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pk_wrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pkcs12.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs12.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs12.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pkcs5.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs5.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs5.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pkparse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkparse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkparse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\pkwrite.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkwrite.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkwrite.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\platform.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\platform.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\platform.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\platform_util.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\platform_util.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\platform_util.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\poly1305.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\poly1305.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\poly1305.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_aead.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_aead.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_aead.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_cipher.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_cipher.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_cipher.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_driver_wrappers_no_static.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_driver_wrappers_no_static.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_driver_wrappers_no_static.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_ecp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_ecp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_ecp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_ffdh.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_ffdh.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_ffdh.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_hash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_hash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_hash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_mac.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_mac.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_mac.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_pake.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_pake.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_pake.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_rsa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_rsa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_rsa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_se.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_se.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_se.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_slot_management.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_slot_management.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_slot_management.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_crypto_storage.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_storage.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_crypto_storage.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_its_file.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_its_file.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_its_file.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\psa_util.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_util.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\psa_util.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\ripemd160.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ripemd160.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ripemd160.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\rsa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\rsa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\rsa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\rsa_alt_helpers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\rsa_alt_helpers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\rsa_alt_helpers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\sha1.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha1.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha1.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\sha256.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha256.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha256.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\sha512.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha512.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha512.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\sha3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\sha3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\threading.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\threading.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\threading.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\timing.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\timing.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\timing.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\version.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\version.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\version.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\version_features.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\version_features.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\version_features.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha_gdma_impl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha_gdma_impl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha_gdma_impl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes_gdma_impl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes_gdma_impl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes_gdma_impl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\crypto_shared_gdma\\\\esp_crypto_shared_gdma.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\crypto_shared_gdma\\\\esp_crypto_shared_gdma.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\crypto_shared_gdma\\\\esp_crypto_shared_gdma.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_hardware.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_hardware.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_hardware.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_mem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_mem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_mem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_timing.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_timing.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_timing.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_xts.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_xts.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_xts.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\dma\\\\esp_aes.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\esp_sha.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\esp_sha.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\esp_sha.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\sha.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\sha.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\sha.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_ds\\\\esp_rsa_sign_alt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_ds\\\\esp_rsa_sign_alt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_ds\\\\esp_rsa_sign_alt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_bignum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_bignum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_bignum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp32s3\\\\bignum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp32s3\\\\bignum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp32s3\\\\bignum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha1.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha1.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha1.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha256.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha256.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha256.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha512.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha512.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\sha\\\\dma\\\\esp_sha512.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_gcm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_gcm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\aes\\\\esp_aes_gcm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/sha/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/aes/dma/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedcrypto.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\md\\\\esp_md.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\md\\\\esp_md.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\md\\\\esp_md.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\pkcs7.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs7.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\pkcs7.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509_create.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_create.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_create.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509_crl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_crl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_crl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509_crt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_crt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_crt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509_csr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_csr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509_csr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509write.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509write_crt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write_crt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write_crt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedx509.dir\\\\x509write_csr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write_csr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\x509write_csr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\debug.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\debug.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\debug.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\mps_reader.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\mps_reader.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\mps_reader.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\mps_trace.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\mps_trace.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\mps_trace.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_cache.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_cache.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_cache.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_ciphersuites.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_ciphersuites.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_ciphersuites.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_cookie.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_cookie.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_cookie.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_debug_helpers_generated.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_debug_helpers_generated.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_debug_helpers_generated.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_msg.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_msg.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_msg.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_ticket.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_ticket.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_ticket.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls12_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls12_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls12_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls12_server.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls12_server.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls12_server.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls13_keys.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_keys.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_keys.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls13_server.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_server.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_server.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls13_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\ssl_tls13_generic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_generic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\mbedtls\\\\library\\\\ssl_tls13_generic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\mbedtls_debug.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\mbedtls_debug.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\mbedtls_debug.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_platform_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_platform_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\esp_platform_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls  -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mbedtls\\\\mbedtls\\\\library\\\\CMakeFiles\\\\mbedtls.dir\\\\C_\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\net_sockets.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\net_sockets.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mbedtls\\\\port\\\\net_sockets.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\\\\\"main\\\\\\\" -DPROJECT_VER=\\\\\\\"1\\\\\\\" -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_app_format\\\\CMakeFiles\\\\__idf_esp_app_format.dir\\\\esp_app_desc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_app_format\\\\esp_app_desc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_app_format\\\\esp_app_desc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_common_loader.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common_loader.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_common_loader.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_clock_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_clock_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_mem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_mem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_mem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_random.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_random_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_random_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_efuse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_efuse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_efuse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\flash_encrypt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_encrypt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_encrypt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\secure_boot.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\secure_boot.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\secure_boot.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\bootloader_flash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\flash_qio_mode.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\bootloader_flash\\\\src\\\\bootloader_flash_config_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\bootloader_utility.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_utility.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\bootloader_utility.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\flash_partitions.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_partitions.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\flash_partitions.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\esp_image_format.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp_image_format.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\esp_image_format.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\bootloader_support\\\\CMakeFiles\\\\__idf_bootloader_support.dir\\\\src\\\\idf\\\\bootloader_sha.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\idf\\\\bootloader_sha.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\bootloader_support\\\\src\\\\idf\\\\bootloader_sha.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_partition\\\\CMakeFiles\\\\__idf_esp_partition.dir\\\\partition.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_partition\\\\partition.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_partition\\\\partition.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_partition\\\\CMakeFiles\\\\__idf_esp_partition.dir\\\\partition_target.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_partition\\\\partition_target.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_partition\\\\partition_target.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_update\\\\CMakeFiles\\\\__idf_app_update.dir\\\\esp_ota_ops.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_update\\\\esp_ota_ops.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_update\\\\esp_ota_ops.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_update\\\\CMakeFiles\\\\__idf_app_update.dir\\\\esp_ota_app_desc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_update\\\\esp_ota_app_desc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_update\\\\esp_ota_app_desc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_mm\\\\CMakeFiles\\\\__idf_esp_mm.dir\\\\esp_mmu_map.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\esp_mmu_map.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\esp_mmu_map.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_mm\\\\CMakeFiles\\\\__idf_esp_mm.dir\\\\port\\\\esp32s3\\\\ext_mem_layout.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\port\\\\esp32s3\\\\ext_mem_layout.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\port\\\\esp32s3\\\\ext_mem_layout.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_mm\\\\CMakeFiles\\\\__idf_esp_mm.dir\\\\esp_cache.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\esp_cache.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_mm\\\\esp_cache.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\flash_brownout_hook.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_brownout_hook.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_brownout_hook.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\esp32s3\\\\spi_flash_oct_flash_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp32s3\\\\spi_flash_oct_flash_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp32s3\\\\spi_flash_oct_flash_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_hpm_enable.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_hpm_enable.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_hpm_enable.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_drivers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_drivers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_drivers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_generic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_generic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_generic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_issi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_issi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_issi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_mxic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_mxic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_mxic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_gd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_gd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_gd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_winbond.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_winbond.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_winbond.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_boya.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_boya.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_boya.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_mxic_opi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_mxic_opi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_mxic_opi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_chip_th.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_th.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_chip_th.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\memspi_host_driver.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\memspi_host_driver.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\memspi_host_driver.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\cache_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\cache_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\cache_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\flash_mmap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_mmap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_mmap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\flash_ops.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_ops.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\flash_ops.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_wrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_wrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_wrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\esp_flash_api.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp_flash_api.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp_flash_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\esp_flash_spi_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp_flash_spi_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\esp_flash_spi_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_os_func_app.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_os_func_app.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_os_func_app.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include/spi_flash -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\\\spi_flash\\\\CMakeFiles\\\\__idf_spi_flash.dir\\\\spi_flash_os_func_noos.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_os_func_noos.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spi_flash\\\\spi_flash_os_func_noos.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\pthread\\\\CMakeFiles\\\\__idf_pthread.dir\\\\pthread.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\pthread\\\\CMakeFiles\\\\__idf_pthread.dir\\\\pthread_cond_var.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_cond_var.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_cond_var.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\pthread\\\\CMakeFiles\\\\__idf_pthread.dir\\\\pthread_local_storage.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_local_storage.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_local_storage.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\pthread\\\\CMakeFiles\\\\__idf_pthread.dir\\\\pthread_rwlock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_rwlock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_rwlock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\pthread\\\\CMakeFiles\\\\__idf_pthread.dir\\\\pthread_semaphore.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_semaphore.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\pthread\\\\pthread_semaphore.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\esp_err.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_err.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_err.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\crosscore_int.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\crosscore_int.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\crosscore_int.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\esp_ipc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_ipc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_ipc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\freertos_hooks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\freertos_hooks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\freertos_hooks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\int_wdt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\int_wdt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\int_wdt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\panic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\panic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\panic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\esp_system.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_system.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\esp_system.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\startup.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\startup.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\startup.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\system_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\system_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\system_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\stack_check.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\stack_check.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\stack_check.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\ubsan.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\ubsan.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\ubsan.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\xt_wdt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\xt_wdt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\xt_wdt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\debug_stubs.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\debug_stubs.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\debug_stubs.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\cpu_start.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\cpu_start.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\cpu_start.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\panic_handler.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\panic_handler.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\panic_handler.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\esp_system_chip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\esp_system_chip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\esp_system_chip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\brownout.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\brownout.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\brownout.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\highint_hdl.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\highint_hdl.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\highint_hdl.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\clk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\clk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\clk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\reset_reason.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\reset_reason.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\reset_reason.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\system_internal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\system_internal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\system_internal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\cache_err_int.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\cache_err_int.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\cache_err_int.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\soc\\\\esp32s3\\\\apb_backup_dma.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\apb_backup_dma.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\soc\\\\esp32s3\\\\apb_backup_dma.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\panic_arch.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\panic_arch.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\panic_arch.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\panic_handler_asm.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\panic_handler_asm.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\panic_handler_asm.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack_asm.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack_asm.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\expression_with_stack_asm.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\debug_helpers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_helpers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_helpers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\debug_helpers_asm.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_helpers_asm.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_helpers_asm.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\debug_stubs.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_stubs.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\debug_stubs.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\trax.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\trax.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\trax.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_handler.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_handler.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_handler.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_system\\\\CMakeFiles\\\\__idf_esp_system.dir\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_routines.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_routines.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_system\\\\port\\\\arch\\\\xtensa\\\\esp_ipc_isr_routines.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_crc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_crc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_crc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_sys.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_sys.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_sys.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_spiflash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_spiflash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_spiflash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_efuse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_efuse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_efuse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_longjmp.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_longjmp.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_longjmp.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_systimer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_systimer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_systimer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_wdt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_wdt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_wdt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_esp32s2_esp32s3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_rom\\\\CMakeFiles\\\\__idf_esp_rom.dir\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_rom\\\\patches\\\\esp_rom_cache_writeback_esp32s3.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\mpu_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mpu_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mpu_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\efuse_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\efuse_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\efuse_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\esp32s3\\\\efuse_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\efuse_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\efuse_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\mmu_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mmu_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mmu_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\cache_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\cache_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\cache_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\rtc_io_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\rtc_io_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\rtc_io_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\gpio_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\gpio_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\gpio_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\uart_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\uart_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\uart_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\uart_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\uart_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\uart_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\adc_hal_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_hal_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_hal_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\adc_oneshot_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_oneshot_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_oneshot_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\esp32s3\\\\clk_tree_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\clk_tree_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\clk_tree_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_flash_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_flash_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_flash_encrypt_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_encrypt_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_encrypt_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\systimer_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\systimer_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\systimer_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\timer_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\timer_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\timer_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\ledc_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ledc_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ledc_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\ledc_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ledc_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ledc_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\i2c_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2c_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2c_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\i2c_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2c_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2c_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\rmt_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\rmt_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\rmt_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\pcnt_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\pcnt_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\pcnt_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\mcpwm_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mcpwm_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\mcpwm_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\twai_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\twai_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\twai_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\twai_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\twai_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\twai_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\gdma_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\gdma_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\gdma_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\i2s_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2s_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\i2s_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\sdm_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\sdm_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\sdm_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\adc_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\adc_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\lcd_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\lcd_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\lcd_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\sha_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\sha_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\sha_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\aes_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\aes_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\aes_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\brownout_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\brownout_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\brownout_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_slave_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_slave_hal_iram.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hal_iram.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hal_iram.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_slave_hd_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hd_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_slave_hd_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\hmac_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\hmac_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\hmac_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\ds_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ds_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\ds_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\spi_flash_hal_gpspi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal_gpspi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\spi_flash_hal_gpspi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\touch_sensor_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\touch_sensor_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\touch_sensor_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\usb_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\usb_phy_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_phy_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_phy_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\xt_wdt_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\xt_wdt_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\xt_wdt_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\esp32s3\\\\touch_sensor_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\touch_sensor_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\touch_sensor_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\esp32s3\\\\rtc_cntl_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\rtc_cntl_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\esp32s3\\\\rtc_cntl_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\hal\\\\CMakeFiles\\\\__idf_hal.dir\\\\usb_dwc_hal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_dwc_hal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\hal\\\\usb_dwc_hal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log_buffers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_buffers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_buffers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\log\\\\CMakeFiles\\\\__idf_log.dir\\\\log_freertos.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_freertos.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\log\\\\log_freertos.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\heap_caps.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\heap_caps.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\heap_caps.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\heap_caps_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\heap_caps_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\heap_caps_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\multi_heap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\multi_heap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\multi_heap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\tlsf\\\\tlsf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\tlsf\\\\tlsf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\tlsf\\\\tlsf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\port\\\\memory_layout_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\port\\\\memory_layout_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\port\\\\memory_layout_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\\\heap\\\\CMakeFiles\\\\__idf_heap.dir\\\\port\\\\esp32s3\\\\memory_layout.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\port\\\\esp32s3\\\\memory_layout.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\heap\\\\port\\\\esp32s3\\\\memory_layout.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\lldesc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\lldesc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\lldesc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\dport_access_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\dport_access_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\dport_access_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\interrupts.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\interrupts.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\interrupts.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\gpio_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gpio_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gpio_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\uart_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\uart_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\uart_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\adc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\adc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\adc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\dedic_gpio_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\dedic_gpio_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\dedic_gpio_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\gdma_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gdma_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\gdma_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\spi_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\spi_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\spi_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\ledc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\ledc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\ledc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\pcnt_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\pcnt_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\pcnt_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\rmt_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rmt_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rmt_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\sdm_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdm_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdm_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\i2s_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2s_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2s_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\i2c_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2c_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\i2c_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\temperature_sensor_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\temperature_sensor_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\temperature_sensor_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\timer_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\timer_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\timer_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\lcd_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\lcd_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\lcd_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\mcpwm_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\mcpwm_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\mcpwm_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\sdmmc_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdmmc_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\sdmmc_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\touch_sensor_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\touch_sensor_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\touch_sensor_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\twai_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\twai_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\twai_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\usb_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\usb_otg_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_otg_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\usb_otg_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\soc\\\\CMakeFiles\\\\__idf_soc.dir\\\\esp32s3\\\\rtc_io_periph.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rtc_io_periph.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\soc\\\\esp32s3\\\\rtc_io_periph.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\cpu.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\cpu.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\cpu.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_memory_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_memory_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_memory_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\cpu_region_protect.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\cpu_region_protect.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\cpu_region_protect.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_clk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_clk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_clk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\clk_ctrl_os.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\clk_ctrl_os.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\clk_ctrl_os.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\hw_random.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\hw_random.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\hw_random.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\intr_alloc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\intr_alloc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\intr_alloc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\mac_addr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\mac_addr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\mac_addr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\periph_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\periph_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\periph_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\revision.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\revision.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\revision.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\rtc_module.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\rtc_module.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\rtc_module.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sleep_modes.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_modes.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_modes.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sleep_gpio.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_gpio.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_gpio.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sleep_modem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_modem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_modem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\regi2c_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\regi2c_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\regi2c_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_gpio_reserve.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_gpio_reserve.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_gpio_reserve.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sar_periph_ctrl_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sar_periph_ctrl_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sar_periph_ctrl_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\io_mux.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\io_mux.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\io_mux.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\esp_clk_tree.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_clk_tree.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_clk_tree.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp_clk_tree_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp_clk_tree_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp_clk_tree_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\adc_share_hw_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\adc_share_hw_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\adc_share_hw_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sleep_cpu.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_cpu.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_cpu.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\dma\\\\gdma.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\gdma.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\gdma.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\dma\\\\async_memcpy_impl_gdma.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\async_memcpy_impl_gdma.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\async_memcpy_impl_gdma.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\dma\\\\esp_async_memcpy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\esp_async_memcpy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\dma\\\\esp_async_memcpy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\systimer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\systimer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\systimer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_hmac.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_hmac.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_hmac.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\esp_ds.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_ds.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\esp_ds.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\mspi_timing_tuning.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\mspi_timing_tuning.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\mspi_timing_tuning.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\mspi_timing_config.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\mspi_timing_config.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\mspi_timing_config.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\sleep_wake_stub.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_wake_stub.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\sleep_wake_stub.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_clk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_clk_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_clk_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_sleep.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_sleep.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_sleep.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\rtc_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\rtc_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\chip_info.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\chip_info.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\chip_info.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\esp_crypto_lock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_crypto_lock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_crypto_lock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\sar_periph_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\sar_periph_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\sar_periph_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp32s3\\\\esp_memprot.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_memprot.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp32s3\\\\esp_memprot.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/esp_private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hw_support\\\\CMakeFiles\\\\__idf_esp_hw_support.dir\\\\port\\\\esp_memprot_conv.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp_memprot_conv.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hw_support\\\\port\\\\esp_memprot_conv.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\heap_idf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\heap_idf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\heap_idf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\esp_additions\\\\idf_additions.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\esp_additions\\\\idf_additions.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\esp_additions\\\\idf_additions.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\list.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\list.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\list.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\queue.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\queue.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\queue.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\tasks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\tasks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\tasks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\timers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\timers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\timers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\croutine.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\croutine.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\croutine.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\event_groups.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\event_groups.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\event_groups.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\stream_buffer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\stream_buffer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\stream_buffer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\port.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\port.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\port.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\app_startup.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\app_startup.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\app_startup.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-openocd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-openocd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-openocd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\port_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\port_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\port_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\portasm.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\portasm.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\portasm.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\port_systick.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\port_systick.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\port_systick.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\esp_additions\\\\freertos_v8_compat.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\esp_additions\\\\freertos_v8_compat.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\esp_additions\\\\freertos_v8_compat.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_context.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_context.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_context.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_overlay_os_hook.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_overlay_os_hook.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_overlay_os_hook.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\freertos\\\\CMakeFiles\\\\__idf_freertos.dir\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_vectors.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_vectors.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\freertos\\\\FreeRTOS-Kernel\\\\portable\\\\xtensa\\\\xtensa_vectors.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\abort.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\abort.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\abort.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\assert.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\assert.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\assert.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -fno-builtin -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\heap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\heap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\heap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\locks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\locks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\locks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\poll.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\poll.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\poll.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\pthread.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\pthread.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\pthread.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\random.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\random.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\random.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\reent_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\reent_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\reent_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\newlib_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\newlib_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\newlib_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\syscalls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\syscalls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\syscalls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\termios.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\termios.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\termios.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\stdatomic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\stdatomic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\stdatomic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\sysconf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\sysconf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\sysconf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\realpath.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\realpath.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\realpath.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/priv_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\newlib\\\\CMakeFiles\\\\__idf_newlib.dir\\\\port\\\\esp_time_impl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\port\\\\esp_time_impl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\newlib\\\\port\\\\esp_time_impl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\\\cxx\\\\CMakeFiles\\\\__idf_cxx.dir\\\\cxx_exception_stubs.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cxx\\\\cxx_exception_stubs.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cxx\\\\cxx_exception_stubs.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\\\cxx\\\\CMakeFiles\\\\__idf_cxx.dir\\\\cxx_guards.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cxx\\\\cxx_guards.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cxx\\\\cxx_guards.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_common\\\\CMakeFiles\\\\__idf_esp_common.dir\\\\src\\\\esp_err_to_name.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_common\\\\src\\\\esp_err_to_name.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_common\\\\src\\\\esp_err_to_name.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_timer\\\\CMakeFiles\\\\__idf_esp_timer.dir\\\\src\\\\esp_timer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_timer\\\\CMakeFiles\\\\__idf_esp_timer.dir\\\\src\\\\ets_timer_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\ets_timer_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\ets_timer_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_timer\\\\CMakeFiles\\\\__idf_esp_timer.dir\\\\src\\\\system_time.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\system_time.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\system_time.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_timer\\\\CMakeFiles\\\\__idf_esp_timer.dir\\\\src\\\\esp_timer_impl_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer_impl_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer_impl_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_timer\\\\CMakeFiles\\\\__idf_esp_timer.dir\\\\src\\\\esp_timer_impl_systimer.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer_impl_systimer.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_timer\\\\src\\\\esp_timer_impl_systimer.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_trace\\\\CMakeFiles\\\\__idf_app_trace.dir\\\\app_trace.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\app_trace.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\app_trace.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_trace\\\\CMakeFiles\\\\__idf_app_trace.dir\\\\app_trace_util.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\app_trace_util.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\app_trace_util.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_trace\\\\CMakeFiles\\\\__idf_app_trace.dir\\\\host_file_io.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\host_file_io.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\host_file_io.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\app_trace\\\\CMakeFiles\\\\__idf_app_trace.dir\\\\port\\\\port_uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\port\\\\port_uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\app_trace\\\\port\\\\port_uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_event\\\\CMakeFiles\\\\__idf_esp_event.dir\\\\default_event_loop.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\default_event_loop.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\default_event_loop.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_event\\\\CMakeFiles\\\\__idf_esp_event.dir\\\\esp_event.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\esp_event.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\esp_event.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_event\\\\CMakeFiles\\\\__idf_esp_event.dir\\\\esp_event_private.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\esp_event_private.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_event\\\\esp_event_private.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_api.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_api.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_api.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_cxx_api.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_cxx_api.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_cxx_api.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_item_hash_list.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_item_hash_list.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_item_hash_list.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_page.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_page.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_page.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_pagemanager.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_pagemanager.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_pagemanager.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_storage.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_storage.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_storage.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_handle_simple.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_handle_simple.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_handle_simple.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_handle_locked.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_handle_locked.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_handle_locked.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_partition.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_partition_lookup.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition_lookup.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition_lookup.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_partition_manager.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition_manager.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_partition_manager.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\nvs_flash\\\\CMakeFiles\\\\__idf_nvs_flash.dir\\\\src\\\\nvs_types.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_types.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\nvs_flash\\\\src\\\\nvs_types.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_phy\\\\CMakeFiles\\\\__idf_esp_phy.dir\\\\src\\\\phy_override.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_override.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_override.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_phy\\\\CMakeFiles\\\\__idf_esp_phy.dir\\\\src\\\\lib_printf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\lib_printf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\lib_printf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_phy\\\\CMakeFiles\\\\__idf_esp_phy.dir\\\\src\\\\phy_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_phy\\\\CMakeFiles\\\\__idf_esp_phy.dir\\\\src\\\\phy_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\phy_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_phy\\\\CMakeFiles\\\\__idf_esp_phy.dir\\\\src\\\\btbb_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\btbb_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_phy\\\\src\\\\btbb_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs_eventfd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_eventfd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_eventfd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs_uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs_semihost.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_semihost.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_semihost.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs_console.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_console.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_console.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\vfs\\\\CMakeFiles\\\\__idf_vfs.dir\\\\vfs_usb_serial_jtag.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_usb_serial_jtag.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\vfs\\\\vfs_usb_serial_jtag.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\apps\\\\sntp\\\\sntp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\sntp\\\\sntp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\sntp\\\\sntp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\api_lib.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\api_lib.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\api_lib.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\api_msg.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\api_msg.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\api_msg.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\err.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\err.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\err.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\if_api.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\if_api.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\if_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\netbuf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netbuf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netbuf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\netdb.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netdb.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netdb.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\netifapi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netifapi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\netifapi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\sockets.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\sockets.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\sockets.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\api\\\\tcpip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\tcpip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\api\\\\tcpip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\apps\\\\sntp\\\\sntp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\apps\\\\sntp\\\\sntp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\apps\\\\sntp\\\\sntp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\apps\\\\netbiosns\\\\netbiosns.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\apps\\\\netbiosns\\\\netbiosns.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\apps\\\\netbiosns\\\\netbiosns.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\def.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\def.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\def.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\dns.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\dns.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\dns.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\inet_chksum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\inet_chksum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\inet_chksum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\mem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\mem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\mem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\memp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\memp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\memp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\netif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\netif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\netif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\pbuf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\pbuf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\pbuf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\raw.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\raw.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\raw.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\stats.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\stats.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\stats.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\sys.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\sys.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\sys.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-type-limits -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\tcp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\tcp_in.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp_in.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp_in.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\tcp_out.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp_out.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\tcp_out.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\timeouts.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\timeouts.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\timeouts.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\udp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\udp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\udp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\autoip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\autoip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\autoip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\dhcp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\dhcp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\dhcp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\etharp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\etharp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\etharp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\icmp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\icmp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\icmp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\igmp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\igmp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\igmp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_napt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_napt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_napt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_addr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_addr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_addr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_frag.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_frag.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv4\\\\ip4_frag.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\dhcp6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\dhcp6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\dhcp6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ethip6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ethip6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ethip6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\icmp6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\icmp6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\icmp6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\inet6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\inet6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\inet6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_addr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_addr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_addr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_frag.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_frag.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\ip6_frag.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\mld6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\mld6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\mld6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\core\\\\ipv6\\\\nd6.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\nd6.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\core\\\\ipv6\\\\nd6.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ethernet.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ethernet.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ethernet.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\bridgeif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\bridgeif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\bridgeif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\bridgeif_fdb.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\bridgeif_fdb.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\bridgeif_fdb.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\slipif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\slipif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\slipif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\auth.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\auth.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\auth.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ccp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ccp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ccp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-md5.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-md5.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-md5.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-new.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-new.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap-new.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-array-parameter -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap_ms.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap_ms.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\chap_ms.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\demand.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\demand.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\demand.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ecp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ecp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ecp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eui64.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eui64.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\eui64.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\fsm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\fsm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\fsm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipcp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipcp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipcp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipv6cp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipv6cp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ipv6cp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\lcp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\lcp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\lcp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\magic.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\magic.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\magic.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\mppe.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\mppe.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\mppe.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\multilink.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\multilink.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\multilink.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ppp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ppp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\ppp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppapi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppapi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppapi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppcrypt.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppcrypt.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppcrypt.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppoe.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppoe.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppoe.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppol2tp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppol2tp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppol2tp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -Wno-type-limits -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppos.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppos.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\pppos.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\upap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\upap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\upap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\lwip\\\\src\\\\netif\\\\ppp\\\\vj.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\vj.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\lwip\\\\src\\\\netif\\\\ppp\\\\vj.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\hooks\\\\tcp_isn_default.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\hooks\\\\tcp_isn_default.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\hooks\\\\tcp_isn_default.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\hooks\\\\lwip_default_hooks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\hooks\\\\lwip_default_hooks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\hooks\\\\lwip_default_hooks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\debug\\\\lwip_debug.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\debug\\\\lwip_debug.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\debug\\\\lwip_debug.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\sockets_ext.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\sockets_ext.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\sockets_ext.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\freertos\\\\sys_arch.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\freertos\\\\sys_arch.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\freertos\\\\sys_arch.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\port\\\\esp32xx\\\\vfs_lwip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\esp32xx\\\\vfs_lwip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\port\\\\esp32xx\\\\vfs_lwip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\apps\\\\ping\\\\esp_ping.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\esp_ping.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\esp_ping.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\apps\\\\ping\\\\ping.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\ping.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\ping.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\apps\\\\ping\\\\ping_sock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\ping_sock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\ping\\\\ping_sock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-format -o esp-idf\\\\lwip\\\\CMakeFiles\\\\__idf_lwip.dir\\\\apps\\\\dhcpserver\\\\dhcpserver.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\dhcpserver\\\\dhcpserver.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\lwip\\\\apps\\\\dhcpserver\\\\dhcpserver.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\esp_netif_handlers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_handlers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_handlers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\esp_netif_objects.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_objects.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_objects.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\esp_netif_defaults.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_defaults.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\esp_netif_defaults.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\esp_netif_lwip.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_lwip.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_lwip.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\esp_netif_sntp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_sntp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_sntp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\esp_netif_lwip_defaults.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_lwip_defaults.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\esp_netif_lwip_defaults.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\netif\\\\wlanif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\wlanif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\wlanif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\netif\\\\ethernetif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\ethernetif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\ethernetif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_netif\\\\CMakeFiles\\\\__idf_esp_netif.dir\\\\lwip\\\\netif\\\\esp_pbuf_ref.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\esp_pbuf_ref.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_netif\\\\lwip\\\\netif\\\\esp_pbuf_ref.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\port\\\\os_xtensa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\port\\\\os_xtensa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\port\\\\os_xtensa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\port\\\\eloop.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\port\\\\eloop.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\port\\\\eloop.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\ap_config.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ap_config.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ap_config.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\ieee802_1x.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ieee802_1x.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ieee802_1x.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\wpa_auth.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\wpa_auth.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\wpa_auth.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\wpa_auth_ie.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\wpa_auth_ie.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\wpa_auth_ie.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\pmksa_cache_auth.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\pmksa_cache_auth.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\pmksa_cache_auth.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\sta_info.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\sta_info.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\sta_info.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\ieee802_11.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ieee802_11.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\ieee802_11.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\ap\\\\comeback_token.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\comeback_token.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\ap\\\\comeback_token.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\sae.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\sae.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\sae.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\dragonfly.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\dragonfly.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\dragonfly.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\wpa_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\wpa_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\wpa_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\bitfield.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\bitfield.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\bitfield.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\aes-siv.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-siv.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-siv.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha256-kdf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-kdf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-kdf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\ccmp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\ccmp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\ccmp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\aes-gcm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-gcm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-gcm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\crypto_ops.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\crypto_ops.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\crypto_ops.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\dh_group5.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\dh_group5.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\dh_group5.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\dh_groups.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\dh_groups.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\dh_groups.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\ms_funcs.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\ms_funcs.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\ms_funcs.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha1-tlsprf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-tlsprf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-tlsprf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha256-tlsprf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-tlsprf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-tlsprf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha384-tlsprf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha384-tlsprf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha384-tlsprf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha256-prf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-prf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha256-prf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha1-prf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-prf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-prf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha384-prf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha384-prf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha384-prf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\md4-internal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\md4-internal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\md4-internal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\sha1-tprf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-tprf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\sha1-tprf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_common\\\\eap_wsc_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_common\\\\eap_wsc_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_common\\\\eap_wsc_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\ieee802_11_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\ieee802_11_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\ieee802_11_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\chap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\chap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\chap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_mschapv2.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_mschapv2.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_mschapv2.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_peap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_peap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_peap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_peap_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_peap_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_peap_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_tls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_tls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_tls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_tls_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_tls_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_tls_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_ttls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_ttls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_ttls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\mschapv2.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\mschapv2.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\mschapv2.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_fast.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_fast_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\eap_peer\\\\eap_fast_pac.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast_pac.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\eap_peer\\\\eap_fast_pac.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\rsn_supp\\\\pmksa_cache.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\pmksa_cache.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\pmksa_cache.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\rsn_supp\\\\wpa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\wpa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\wpa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\rsn_supp\\\\wpa_ie.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\wpa_ie.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\rsn_supp\\\\wpa_ie.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\base64.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\base64.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\base64.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\ext_password.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\ext_password.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\ext_password.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\uuid.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\uuid.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\uuid.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\wpabuf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\wpabuf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\wpabuf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\wpa_debug.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\wpa_debug.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\wpa_debug.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\utils\\\\json.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\json.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\utils\\\\json.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_attr_build.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_build.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_build.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_attr_parse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_parse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_parse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_attr_process.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_process.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_attr_process.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_dev_attr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_dev_attr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_dev_attr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\wps\\\\wps_enrollee.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_enrollee.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\wps\\\\wps_enrollee.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\sae_pk.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\sae_pk.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\sae_pk.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\bss.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\bss.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\bss.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\common\\\\scan.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\scan.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\common\\\\scan.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_scan.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_scan.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_scan.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_eap_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_eap_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_eap_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_wpa2_api_port.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa2_api_port.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa2_api_port.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_wpa_main.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa_main.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa_main.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_wpas_glue.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpas_glue.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpas_glue.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_wps.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wps.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wps.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_wpa3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_wpa3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_owe.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_owe.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_owe.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\esp_hostap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_hostap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\esp_hostap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\tls_mbedtls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\tls_mbedtls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\tls_mbedtls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\fastpbkdf2.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\fastpbkdf2.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\fastpbkdf2.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-bignum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-bignum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-bignum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-rsa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-rsa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-rsa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-ec.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-ec.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\esp_supplicant\\\\src\\\\crypto\\\\crypto_mbedtls-ec.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\rc4.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\rc4.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\rc4.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\des-internal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\des-internal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\des-internal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\aes-wrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-wrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-wrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\aes-unwrap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-unwrap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-unwrap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\\\wpa_supplicant\\\\CMakeFiles\\\\__idf_wpa_supplicant.dir\\\\src\\\\crypto\\\\aes-ccm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-ccm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wpa_supplicant\\\\src\\\\crypto\\\\aes-ccm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_coex\\\\CMakeFiles\\\\__idf_esp_coex.dir\\\\esp32s3\\\\esp_coex_adapter.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_coex\\\\esp32s3\\\\esp_coex_adapter.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_coex\\\\esp32s3\\\\esp_coex_adapter.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\mesh_event.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\mesh_event.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\mesh_event.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\smartconfig.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\smartconfig.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\smartconfig.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\wifi_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\wifi_default.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_default.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_default.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\wifi_netif.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_netif.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_netif.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\wifi_default_ap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_default_ap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\wifi_default_ap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\esp32s3\\\\esp_adapter.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\esp32s3\\\\esp_adapter.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\esp32s3\\\\esp_adapter.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_wifi\\\\CMakeFiles\\\\__idf_esp_wifi.dir\\\\src\\\\smartconfig_ack.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\smartconfig_ack.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_wifi\\\\src\\\\smartconfig_ack.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity\\\\src\\\\unity.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity\\\\src\\\\unity.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity\\\\src\\\\unity.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity_runner.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_runner.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_runner.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity_utils_freertos.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_freertos.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_freertos.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity_utils_cache.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_cache.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_cache.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity_utils_memory.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_memory.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_utils_memory.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\unity_port_esp32.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_port_esp32.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\unity_port_esp32.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\\\unity\\\\CMakeFiles\\\\__idf_unity.dir\\\\port\\\\esp\\\\unity_utils_memory_esp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\port\\\\esp\\\\unity_utils_memory_esp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\unity\\\\port\\\\esp\\\\unity_utils_memory_esp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\cmock\\\\CMakeFiles\\\\__idf_cmock.dir\\\\CMock\\\\src\\\\cmock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cmock\\\\CMock\\\\src\\\\cmock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\cmock\\\\CMock\\\\src\\\\cmock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\commands.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\commands.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\commands.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\esp_console_repl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\esp_console_repl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\esp_console_repl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\split_argv.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\split_argv.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\split_argv.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\linenoise\\\\linenoise.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\linenoise\\\\linenoise.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\linenoise\\\\linenoise.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_cmd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_cmd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_cmd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_date.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_date.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_date.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_dbl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_dbl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_dbl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_dstr.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_dstr.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_dstr.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_end.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_end.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_end.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_file.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_file.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_file.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_hashtable.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_hashtable.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_hashtable.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_int.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_int.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_int.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_lit.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_lit.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_lit.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_rem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_rem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_rem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_rex.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_rex.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_rex.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_str.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_str.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_str.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\arg_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\arg_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\console\\\\CMakeFiles\\\\__idf_console.dir\\\\argtable3\\\\argtable3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\argtable3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\console\\\\argtable3\\\\argtable3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\http_parser\\\\CMakeFiles\\\\__idf_http_parser.dir\\\\http_parser.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\http_parser\\\\http_parser.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\http_parser\\\\http_parser.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp-tls\\\\CMakeFiles\\\\__idf_esp-tls.dir\\\\esp_tls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp-tls\\\\CMakeFiles\\\\__idf_esp-tls.dir\\\\esp-tls-crypto\\\\esp_tls_crypto.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp-tls-crypto\\\\esp_tls_crypto.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp-tls-crypto\\\\esp_tls_crypto.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp-tls\\\\CMakeFiles\\\\__idf_esp-tls.dir\\\\esp_tls_error_capture.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls_error_capture.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls_error_capture.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp-tls\\\\CMakeFiles\\\\__idf_esp-tls.dir\\\\esp_tls_mbedtls.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls_mbedtls.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp-tls\\\\esp_tls_mbedtls.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_cali.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_cali.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_cali.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_cali_curve_fitting.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_cali_curve_fitting.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_cali_curve_fitting.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_oneshot.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_oneshot.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_oneshot.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\deprecated\\\\esp_adc_cal_common_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\deprecated\\\\esp_adc_cal_common_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\deprecated\\\\esp_adc_cal_common_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_continuous.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_continuous.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_continuous.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\adc_filter.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_filter.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\adc_filter.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\esp32s3\\\\curve_fitting_coefficients.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\esp32s3\\\\curve_fitting_coefficients.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\esp32s3\\\\curve_fitting_coefficients.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_adc\\\\CMakeFiles\\\\__idf_esp_adc.dir\\\\deprecated\\\\esp32s3\\\\esp_adc_cal_legacy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\deprecated\\\\esp32s3\\\\esp_adc_cal_legacy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_adc\\\\deprecated\\\\esp32s3\\\\esp_adc_cal_legacy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_eth\\\\CMakeFiles\\\\__idf_esp_eth.dir\\\\src\\\\esp_eth.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_eth\\\\CMakeFiles\\\\__idf_esp_eth.dir\\\\src\\\\esp_eth_phy_802_3.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth_phy_802_3.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth_phy_802_3.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_eth\\\\CMakeFiles\\\\__idf_esp_eth.dir\\\\src\\\\esp_eth_netif_glue.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth_netif_glue.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_eth\\\\src\\\\esp_eth_netif_glue.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\gdbstub.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\gdbstub.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\gdbstub.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\gdbstub_transport.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\gdbstub_transport.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\gdbstub_transport.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\packet.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\packet.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\packet.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\port\\\\xtensa\\\\gdbstub_xtensa.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\gdbstub_xtensa.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\gdbstub_xtensa.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\port\\\\xtensa\\\\gdbstub-entry.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\gdbstub-entry.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\gdbstub-entry.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -o esp-idf\\\\esp_gdbstub\\\\CMakeFiles\\\\__idf_esp_gdbstub.dir\\\\src\\\\port\\\\xtensa\\\\xt_debugexception.S.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\xt_debugexception.S\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_gdbstub\\\\src\\\\port\\\\xtensa\\\\xt_debugexception.S\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hid\\\\CMakeFiles\\\\__idf_esp_hid.dir\\\\src\\\\esp_hidd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hidd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hidd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hid\\\\CMakeFiles\\\\__idf_esp_hid.dir\\\\src\\\\esp_hidh.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hidh.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hidh.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\esp_hid\\\\CMakeFiles\\\\__idf_esp_hid.dir\\\\src\\\\esp_hid_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hid_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_hid\\\\src\\\\esp_hid_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\tcp_transport\\\\CMakeFiles\\\\__idf_tcp_transport.dir\\\\transport.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\tcp_transport\\\\CMakeFiles\\\\__idf_tcp_transport.dir\\\\transport_ssl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_ssl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_ssl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\tcp_transport\\\\CMakeFiles\\\\__idf_tcp_transport.dir\\\\transport_internal.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_internal.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_internal.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\tcp_transport\\\\CMakeFiles\\\\__idf_tcp_transport.dir\\\\transport_socks_proxy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_socks_proxy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_socks_proxy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\tcp_transport\\\\CMakeFiles\\\\__idf_tcp_transport.dir\\\\transport_ws.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_ws.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\tcp_transport\\\\transport_ws.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_client\\\\CMakeFiles\\\\__idf_esp_http_client.dir\\\\esp_http_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\esp_http_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\esp_http_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_client\\\\CMakeFiles\\\\__idf_esp_http_client.dir\\\\lib\\\\http_auth.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_auth.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_auth.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_client\\\\CMakeFiles\\\\__idf_esp_http_client.dir\\\\lib\\\\http_header.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_header.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_header.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_client\\\\CMakeFiles\\\\__idf_esp_http_client.dir\\\\lib\\\\http_utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_client\\\\lib\\\\http_utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_main.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_main.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_main.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_parse.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_parse.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_parse.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_sess.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_sess.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_sess.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_txrx.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_txrx.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_txrx.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_uri.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_uri.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_uri.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\httpd_ws.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_ws.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\httpd_ws.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/port/esp32 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_http_server\\\\CMakeFiles\\\\__idf_esp_http_server.dir\\\\src\\\\util\\\\ctrl_sock.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\util\\\\ctrl_sock.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_http_server\\\\src\\\\util\\\\ctrl_sock.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_https_ota\\\\CMakeFiles\\\\__idf_esp_https_ota.dir\\\\src\\\\esp_https_ota.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_https_ota\\\\src\\\\esp_https_ota.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_https_ota\\\\src\\\\esp_https_ota.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_io.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_io_i2c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_i2c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_i2c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_io_spi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_spi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_spi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_nt35510.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_nt35510.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_nt35510.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_ssd1306.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_ssd1306.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_ssd1306.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_st7789.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_st7789.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_st7789.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_ops.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_ops.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_ops.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_io_i80.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_i80.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_io_i80.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_lcd\\\\CMakeFiles\\\\__idf_esp_lcd.dir\\\\src\\\\esp_lcd_panel_rgb.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_rgb.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_lcd\\\\src\\\\esp_lcd_panel_rgb.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protobuf-c\\\\CMakeFiles\\\\__idf_protobuf-c.dir\\\\protobuf-c\\\\protobuf-c\\\\protobuf-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protobuf-c\\\\protobuf-c\\\\protobuf-c\\\\protobuf-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protobuf-c\\\\protobuf-c\\\\protobuf-c\\\\protobuf-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\common\\\\protocomm.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\common\\\\protocomm.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\common\\\\protocomm.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\proto-c\\\\constants.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\constants.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\constants.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\proto-c\\\\sec0.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec0.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec0.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\proto-c\\\\sec1.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec1.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec1.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\proto-c\\\\sec2.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec2.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\sec2.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\proto-c\\\\session.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\session.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\proto-c\\\\session.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\transports\\\\protocomm_console.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\transports\\\\protocomm_console.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\transports\\\\protocomm_console.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\transports\\\\protocomm_httpd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\transports\\\\protocomm_httpd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\transports\\\\protocomm_httpd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\security\\\\security0.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security0.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security0.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\security\\\\security1.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security1.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security1.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\security\\\\security2.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security2.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\security\\\\security2.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\crypto\\\\srp6a\\\\esp_srp.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\crypto\\\\srp6a\\\\esp_srp.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\crypto\\\\srp6a\\\\esp_srp.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\protocomm\\\\CMakeFiles\\\\__idf_protocomm.dir\\\\src\\\\crypto\\\\srp6a\\\\esp_srp_mpi.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\crypto\\\\srp6a\\\\esp_srp_mpi.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\protocomm\\\\src\\\\crypto\\\\srp6a\\\\esp_srp_mpi.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_local_ctrl\\\\CMakeFiles\\\\__idf_esp_local_ctrl.dir\\\\src\\\\esp_local_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_local_ctrl\\\\CMakeFiles\\\\__idf_esp_local_ctrl.dir\\\\src\\\\esp_local_ctrl_handler.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl_handler.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl_handler.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_local_ctrl\\\\CMakeFiles\\\\__idf_esp_local_ctrl.dir\\\\proto-c\\\\esp_local_ctrl.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\proto-c\\\\esp_local_ctrl.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\proto-c\\\\esp_local_ctrl.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\esp_local_ctrl\\\\CMakeFiles\\\\__idf_esp_local_ctrl.dir\\\\src\\\\esp_local_ctrl_transport_httpd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl_transport_httpd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\esp_local_ctrl\\\\src\\\\esp_local_ctrl_transport_httpd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_checksum.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_checksum.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_checksum.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_flash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_flash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_flash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_uart.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_uart.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_uart.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_elf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_elf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_elf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\core_dump_binary.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_binary.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\core_dump_binary.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include_core_dump/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\espcoredump\\\\CMakeFiles\\\\__idf_espcoredump.dir\\\\src\\\\port\\\\xtensa\\\\core_dump_port.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\port\\\\xtensa\\\\core_dump_port.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\espcoredump\\\\src\\\\port\\\\xtensa\\\\core_dump_port.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\Partition.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\Partition.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\Partition.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\SPI_Flash.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\SPI_Flash.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\SPI_Flash.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\WL_Ext_Perf.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Ext_Perf.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Ext_Perf.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\WL_Ext_Safe.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Ext_Safe.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Ext_Safe.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\WL_Flash.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Flash.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\WL_Flash.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\crc32.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\crc32.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\crc32.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++2b -fno-exceptions -fno-rtti -Wno-format -o esp-idf\\\\wear_levelling\\\\CMakeFiles\\\\__idf_wear_levelling.dir\\\\wear_levelling.cpp.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\wear_levelling.cpp\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wear_levelling\\\\wear_levelling.cpp\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_cmd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_cmd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_cmd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_init.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_init.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_init.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_io.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_io.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_io.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_mmc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_mmc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_mmc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\sdmmc\\\\CMakeFiles\\\\__idf_sdmmc.dir\\\\sdmmc_sd.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_sd.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\sdmmc\\\\sdmmc_sd.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\diskio\\\\diskio.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\diskio\\\\diskio_rawflash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_rawflash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_rawflash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\diskio\\\\diskio_sdmmc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_sdmmc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_sdmmc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\diskio\\\\diskio_wl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_wl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\diskio\\\\diskio_wl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\src\\\\ff.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\src\\\\ff.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\src\\\\ff.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\port\\\\freertos\\\\ffsystem.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\port\\\\freertos\\\\ffsystem.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\port\\\\freertos\\\\ffsystem.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\src\\\\ffunicode.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\src\\\\ffunicode.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\src\\\\ffunicode.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\vfs\\\\vfs_fat.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\vfs\\\\vfs_fat_sdmmc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat_sdmmc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat_sdmmc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\fatfs\\\\CMakeFiles\\\\__idf_fatfs.dir\\\\vfs\\\\vfs_fat_spiflash.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat_spiflash.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\fatfs\\\\vfs\\\\vfs_fat_spiflash.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\json\\\\CMakeFiles\\\\__idf_json.dir\\\\cJSON\\\\cJSON.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\json\\\\cJSON\\\\cJSON.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\json\\\\cJSON\\\\cJSON.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\json\\\\CMakeFiles\\\\__idf_json.dir\\\\cJSON\\\\cJSON_Utils.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\json\\\\cJSON\\\\cJSON_Utils.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\json\\\\cJSON\\\\cJSON_Utils.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mqtt\\\\CMakeFiles\\\\__idf_mqtt.dir\\\\esp-mqtt\\\\mqtt_client.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\mqtt_client.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\mqtt_client.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mqtt\\\\CMakeFiles\\\\__idf_mqtt.dir\\\\esp-mqtt\\\\lib\\\\mqtt_msg.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\mqtt_msg.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\mqtt_msg.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mqtt\\\\CMakeFiles\\\\__idf_mqtt.dir\\\\esp-mqtt\\\\lib\\\\mqtt_outbox.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\mqtt_outbox.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\mqtt_outbox.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\mqtt\\\\CMakeFiles\\\\__idf_mqtt.dir\\\\esp-mqtt\\\\lib\\\\platform_esp32_idf.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\platform_esp32_idf.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\mqtt\\\\esp-mqtt\\\\lib\\\\platform_esp32_idf.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\perfmon\\\\CMakeFiles\\\\__idf_perfmon.dir\\\\xtensa_perfmon_access.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_access.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_access.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\perfmon\\\\CMakeFiles\\\\__idf_perfmon.dir\\\\xtensa_perfmon_apis.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_apis.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_apis.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\perfmon\\\\CMakeFiles\\\\__idf_perfmon.dir\\\\xtensa_perfmon_masks.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_masks.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\perfmon\\\\xtensa_perfmon_masks.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs_api.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs_api.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs\\\\src\\\\spiffs_cache.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_cache.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_cache.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs\\\\src\\\\spiffs_check.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_check.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_check.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs\\\\src\\\\spiffs_gc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_gc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_gc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs\\\\src\\\\spiffs_hydrogen.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_hydrogen.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_hydrogen.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\spiffs\\\\src\\\\spiffs_nucleus.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_nucleus.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\spiffs\\\\src\\\\spiffs_nucleus.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\spiffs\\\\CMakeFiles\\\\__idf_spiffs.dir\\\\esp_spiffs.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\esp_spiffs.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\spiffs\\\\esp_spiffs.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\touch_element\\\\CMakeFiles\\\\__idf_touch_element.dir\\\\touch_element.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_element.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_element.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\touch_element\\\\CMakeFiles\\\\__idf_touch_element.dir\\\\touch_button.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_button.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_button.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\touch_element\\\\CMakeFiles\\\\__idf_touch_element.dir\\\\touch_slider.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_slider.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_slider.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\touch_element\\\\CMakeFiles\\\\__idf_touch_element.dir\\\\touch_matrix.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_matrix.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\touch_element\\\\touch_matrix.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\ulp\\\\CMakeFiles\\\\__idf_ulp.dir\\\\ulp_common\\\\ulp_common.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\ulp\\\\ulp_common\\\\ulp_common.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\ulp\\\\ulp_common\\\\ulp_common.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\ulp\\\\CMakeFiles\\\\__idf_ulp.dir\\\\ulp_common\\\\ulp_adc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\ulp\\\\ulp_common\\\\ulp_adc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\ulp\\\\ulp_common\\\\ulp_adc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\hcd_dwc.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\hcd_dwc.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\hcd_dwc.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\hub.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\hub.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\hub.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\usb_helpers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_helpers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_helpers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\usb_host.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_host.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_host.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\usb_private.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_private.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_private.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\usbh.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usbh.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usbh.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\usb\\\\CMakeFiles\\\\__idf_usb.dir\\\\usb_phy.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_phy.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\usb\\\\usb_phy.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\wifi_config.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_config.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_config.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\wifi_scan.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_scan.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_scan.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\wifi_ctrl.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_ctrl.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\wifi_ctrl.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\manager.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\manager.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\manager.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\handlers.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\handlers.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\handlers.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\scheme_console.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\scheme_console.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\scheme_console.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\proto-c\\\\wifi_config.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_config.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_config.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\proto-c\\\\wifi_scan.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_scan.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_scan.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\proto-c\\\\wifi_ctrl.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_ctrl.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_ctrl.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\proto-c\\\\wifi_constants.pb-c.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_constants.pb-c.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\proto-c\\\\wifi_constants.pb-c.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\wifi_provisioning\\\\CMakeFiles\\\\__idf_wifi_provisioning.dir\\\\src\\\\scheme_softap.c.obj -c C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\scheme_softap.c\",\n  \"file\": \"C:\\\\Espressif\\\\frameworks\\\\esp-idf-v5.1.2\\\\components\\\\wifi_provisioning\\\\src\\\\scheme_softap.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\main.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\main.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\main.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\decode_png.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\decode_png.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\decode_png.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\pngle.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\pngle.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\pngle.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\bme680.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\bme680.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\bme680.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\i2cdev.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\i2cdev.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\i2cdev.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\VL53L1X_api.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\VL53L1X_api.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\VL53L1X_api.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\VL53L1X_calibration.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\VL53L1X_calibration.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\VL53L1X_calibration.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\RdWr_Byte.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\RdWr_Byte.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\RdWr_Byte.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\ds3231.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\ds3231.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\ds3231.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\icm42670.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\icm42670.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\icm42670.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DMBEDTLS_CONFIG_FILE=\\\\\\\"mbedtls/esp_config.h\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\main\\\\CMakeFiles\\\\__idf_main.dir\\\\mcp342x.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\mcp342x.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\main\\\\mcp342x.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\st7789\\\\CMakeFiles\\\\__idf_st7789.dir\\\\st7789.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\components\\\\st7789\\\\st7789.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\components\\\\st7789\\\\st7789.c\"\n},\n{\n  \"directory\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n  \"command\": \"C:\\\\Espressif\\\\tools\\\\xtensa-esp32s3-elf\\\\esp-12.2.0_20230208\\\\xtensa-esp32s3-elf\\\\bin\\\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\\\\\"v5.1.2-dirty\\\\\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -o esp-idf\\\\st7789\\\\CMakeFiles\\\\__idf_st7789.dir\\\\fontx.c.obj -c C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\components\\\\st7789\\\\fontx.c\",\n  \"file\": \"C:\\\\Users\\\\Jatki\\\\OneDrive\\\\Documents\\\\ESP\\\\Gateway\\\\components\\\\st7789\\\\fontx.c\"\n}\n]"
  },
  {
    "path": "Code/build/config/kconfig_menus.json",
    "content": "[\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED\",\n        \"name\": \"SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_MIN_REGION_SIZE\",\n        \"name\": \"SOC_MPU_MIN_REGION_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGIONS_MAX_NUM\",\n        \"name\": \"SOC_MPU_REGIONS_MAX_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGION_RO_SUPPORTED\",\n        \"name\": \"SOC_MPU_REGION_RO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPU_REGION_WO_SUPPORTED\",\n        \"name\": \"SOC_MPU_REGION_WO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SUPPORTED\",\n        \"name\": \"SOC_ADC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORTED\",\n        \"name\": \"SOC_UART_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_SUPPORTED\",\n        \"name\": \"SOC_PCNT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_SUPPORTED\",\n        \"name\": \"SOC_WIFI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_SUPPORTED\",\n        \"name\": \"SOC_TWAI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_SUPPORTED\",\n        \"name\": \"SOC_GDMA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPTIMER_SUPPORTED\",\n        \"name\": \"SOC_GPTIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCDCAM_SUPPORTED\",\n        \"name\": \"SOC_LCDCAM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_SUPPORTED\",\n        \"name\": \"SOC_MCPWM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDICATED_GPIO_SUPPORTED\",\n        \"name\": \"SOC_DEDICATED_GPIO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_SUPPORT_WRAP\",\n        \"name\": \"SOC_CACHE_SUPPORT_WRAP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_SUPPORTED\",\n        \"name\": \"SOC_ULP_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_FSM_SUPPORTED\",\n        \"name\": \"SOC_ULP_FSM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RISCV_COPROC_SUPPORTED\",\n        \"name\": \"SOC_RISCV_COPROC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BT_SUPPORTED\",\n        \"name\": \"SOC_BT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_OTG_SUPPORTED\",\n        \"name\": \"SOC_USB_OTG_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n        \"name\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CCOMP_TIMER_SUPPORTED\",\n        \"name\": \"SOC_CCOMP_TIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ASYNC_MEMCPY_SUPPORTED\",\n        \"name\": \"SOC_ASYNC_MEMCPY_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORTS_SECURE_DL_MODE\",\n        \"name\": \"SOC_SUPPORTS_SECURE_DL_MODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_KEY_PURPOSE_FIELD\",\n        \"name\": \"SOC_EFUSE_KEY_PURPOSE_FIELD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_HOST_SUPPORTED\",\n        \"name\": \"SOC_SDMMC_HOST_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_SLOW_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_SLOW_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_MEM_SUPPORTED\",\n        \"name\": \"SOC_RTC_MEM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PSRAM_DMA_CAPABLE\",\n        \"name\": \"SOC_PSRAM_DMA_CAPABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_XT_WDT_SUPPORTED\",\n        \"name\": \"SOC_XT_WDT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTED\",\n        \"name\": \"SOC_I2S_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORTED\",\n        \"name\": \"SOC_RMT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_SUPPORTED\",\n        \"name\": \"SOC_SDM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPSPI_SUPPORTED\",\n        \"name\": \"SOC_GPSPI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORTED\",\n        \"name\": \"SOC_LEDC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORTED\",\n        \"name\": \"SOC_I2C_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_SUPPORTED\",\n        \"name\": \"SOC_SYSTIMER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORT_COEXISTENCE\",\n        \"name\": \"SOC_SUPPORT_COEXISTENCE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n        \"name\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORTED\",\n        \"name\": \"SOC_AES_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MPI_SUPPORTED\",\n        \"name\": \"SOC_MPI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORTED\",\n        \"name\": \"SOC_SHA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_HMAC_SUPPORTED\",\n        \"name\": \"SOC_HMAC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DIG_SIGN_SUPPORTED\",\n        \"name\": \"SOC_DIG_SIGN_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENC_SUPPORTED\",\n        \"name\": \"SOC_FLASH_ENC_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SECURE_BOOT_SUPPORTED\",\n        \"name\": \"SOC_SECURE_BOOT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_SUPPORTED\",\n        \"name\": \"SOC_MEMPROT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_SENSOR_SUPPORTED\",\n        \"name\": \"SOC_TOUCH_SENSOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BOD_SUPPORTED\",\n        \"name\": \"SOC_BOD_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_XTAL_SUPPORT_40M\",\n        \"name\": \"SOC_XTAL_SUPPORT_40M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\",\n        \"name\": \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_CTRL_SUPPORTED\",\n        \"name\": \"SOC_ADC_RTC_CTRL_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIG_CTRL_SUPPORTED\",\n        \"name\": \"SOC_ADC_DIG_CTRL_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_ARBITER_SUPPORTED\",\n        \"name\": \"SOC_ADC_ARBITER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\",\n        \"name\": \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_MONITOR_SUPPORTED\",\n        \"name\": \"SOC_ADC_MONITOR_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DMA_SUPPORTED\",\n        \"name\": \"SOC_ADC_DMA_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_PERIPH_NUM\",\n        \"name\": \"SOC_ADC_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_MAX_CHANNEL_NUM\",\n        \"name\": \"SOC_ADC_MAX_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_ATTEN_NUM\",\n        \"name\": \"SOC_ADC_ATTEN_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_CONTROLLER_NUM\",\n        \"name\": \"SOC_ADC_DIGI_CONTROLLER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_PATT_LEN_MAX\",\n        \"name\": \"SOC_ADC_PATT_LEN_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_MIN_BITWIDTH\",\n        \"name\": \"SOC_ADC_DIGI_MIN_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_MAX_BITWIDTH\",\n        \"name\": \"SOC_ADC_DIGI_MAX_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_RESULT_BYTES\",\n        \"name\": \"SOC_ADC_DIGI_RESULT_BYTES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\",\n        \"name\": \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_DIGI_IIR_FILTER_NUM\",\n        \"name\": \"SOC_ADC_DIGI_IIR_FILTER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\",\n        \"name\": \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\",\n        \"name\": \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_MIN_BITWIDTH\",\n        \"name\": \"SOC_ADC_RTC_MIN_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_RTC_MAX_BITWIDTH\",\n        \"name\": \"SOC_ADC_RTC_MAX_BITWIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_CALIBRATION_V1_SUPPORTED\",\n        \"name\": \"SOC_ADC_CALIBRATION_V1_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ADC_SELF_HW_CALI_SUPPORTED\",\n        \"name\": \"SOC_ADC_SELF_HW_CALI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_APB_BACKUP_DMA\",\n        \"name\": \"SOC_APB_BACKUP_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BROWNOUT_RESET_SUPPORTED\",\n        \"name\": \"SOC_BROWNOUT_RESET_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_WRITEBACK_SUPPORTED\",\n        \"name\": \"SOC_CACHE_WRITEBACK_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CACHE_FREEZE_SUPPORTED\",\n        \"name\": \"SOC_CACHE_FREEZE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_CORES_NUM\",\n        \"name\": \"SOC_CPU_CORES_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_INTR_NUM\",\n        \"name\": \"SOC_CPU_INTR_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_HAS_FPU\",\n        \"name\": \"SOC_CPU_HAS_FPU\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_BREAKPOINTS_NUM\",\n        \"name\": \"SOC_CPU_BREAKPOINTS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_WATCHPOINTS_NUM\",\n        \"name\": \"SOC_CPU_WATCHPOINTS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CPU_WATCHPOINT_SIZE\",\n        \"name\": \"SOC_CPU_WATCHPOINT_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_SIGNATURE_MAX_BIT_LEN\",\n        \"name\": \"SOC_DS_SIGNATURE_MAX_BIT_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\",\n        \"name\": \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DS_KEY_CHECK_MAX_WAIT_US\",\n        \"name\": \"SOC_DS_KEY_CHECK_MAX_WAIT_US\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_GROUPS\",\n        \"name\": \"SOC_GDMA_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_PAIRS_PER_GROUP\",\n        \"name\": \"SOC_GDMA_PAIRS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GDMA_SUPPORT_PSRAM\",\n        \"name\": \"SOC_GDMA_SUPPORT_PSRAM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_PORT\",\n        \"name\": \"SOC_GPIO_PORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_PIN_COUNT\",\n        \"name\": \"SOC_GPIO_PIN_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\",\n        \"name\": \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\",\n        \"name\": \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_SUPPORT_FORCE_HOLD\",\n        \"name\": \"SOC_GPIO_SUPPORT_FORCE_HOLD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_VALID_GPIO_MASK\",\n        \"name\": \"SOC_GPIO_VALID_GPIO_MASK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\",\n        \"name\": \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\",\n        \"name\": \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\",\n        \"name\": \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\",\n        \"name\": \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_NUM\",\n        \"name\": \"SOC_I2C_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_FIFO_LEN\",\n        \"name\": \"SOC_I2C_FIFO_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_CMD_REG_NUM\",\n        \"name\": \"SOC_I2C_CMD_REG_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_SLAVE\",\n        \"name\": \"SOC_I2C_SUPPORT_SLAVE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_HW_CLR_BUS\",\n        \"name\": \"SOC_I2C_SUPPORT_HW_CLR_BUS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_XTAL\",\n        \"name\": \"SOC_I2C_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2C_SUPPORT_RTC\",\n        \"name\": \"SOC_I2C_SUPPORT_RTC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_NUM\",\n        \"name\": \"SOC_I2S_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_HW_VERSION_2\",\n        \"name\": \"SOC_I2S_HW_VERSION_2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_XTAL\",\n        \"name\": \"SOC_I2S_SUPPORTS_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PLL_F160M\",\n        \"name\": \"SOC_I2S_SUPPORTS_PLL_F160M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PCM\",\n        \"name\": \"SOC_I2S_SUPPORTS_PCM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM_TX\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM_TX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_PDM_MAX_TX_LINES\",\n        \"name\": \"SOC_I2S_PDM_MAX_TX_LINES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_PDM_RX\",\n        \"name\": \"SOC_I2S_SUPPORTS_PDM_RX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_PDM_MAX_RX_LINES\",\n        \"name\": \"SOC_I2S_PDM_MAX_RX_LINES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_I2S_SUPPORTS_TDM\",\n        \"name\": \"SOC_I2S_SUPPORTS_TDM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_APB_CLOCK\",\n        \"name\": \"SOC_LEDC_SUPPORT_APB_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_XTAL_CLOCK\",\n        \"name\": \"SOC_LEDC_SUPPORT_XTAL_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_CHANNEL_NUM\",\n        \"name\": \"SOC_LEDC_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_TIMER_BIT_WIDTH\",\n        \"name\": \"SOC_LEDC_TIMER_BIT_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LEDC_SUPPORT_FADE_STOP\",\n        \"name\": \"SOC_LEDC_SUPPORT_FADE_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GROUPS\",\n        \"name\": \"SOC_MCPWM_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_OPERATORS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_OPERATORS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GENERATORS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_GENERATORS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\",\n        \"name\": \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\",\n        \"name\": \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\",\n        \"name\": \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\",\n        \"name\": \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\",\n        \"name\": \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MMU_PERIPH_NUM\",\n        \"name\": \"SOC_MMU_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_GROUPS\",\n        \"name\": \"SOC_PCNT_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_UNITS_PER_GROUP\",\n        \"name\": \"SOC_PCNT_UNITS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_CHANNELS_PER_UNIT\",\n        \"name\": \"SOC_PCNT_CHANNELS_PER_UNIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PCNT_THRES_POINT_PER_UNIT\",\n        \"name\": \"SOC_PCNT_THRES_POINT_PER_UNIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_GROUPS\",\n        \"name\": \"SOC_RMT_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_TX_CANDIDATES_PER_GROUP\",\n        \"name\": \"SOC_RMT_TX_CANDIDATES_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_RX_CANDIDATES_PER_GROUP\",\n        \"name\": \"SOC_RMT_RX_CANDIDATES_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_CHANNELS_PER_GROUP\",\n        \"name\": \"SOC_RMT_CHANNELS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_MEM_WORDS_PER_CHANNEL\",\n        \"name\": \"SOC_RMT_MEM_WORDS_PER_CHANNEL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RX_PINGPONG\",\n        \"name\": \"SOC_RMT_SUPPORT_RX_PINGPONG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RX_DEMODULATION\",\n        \"name\": \"SOC_RMT_SUPPORT_RX_DEMODULATION\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_SYNCHRO\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_SYNCHRO\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\",\n        \"name\": \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_XTAL\",\n        \"name\": \"SOC_RMT_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_RC_FAST\",\n        \"name\": \"SOC_RMT_SUPPORT_RC_FAST\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_APB\",\n        \"name\": \"SOC_RMT_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RMT_SUPPORT_DMA\",\n        \"name\": \"SOC_RMT_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_SUPPORTED\",\n        \"name\": \"SOC_LCD_I80_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_SUPPORTED\",\n        \"name\": \"SOC_LCD_RGB_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_BUSES\",\n        \"name\": \"SOC_LCD_I80_BUSES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_PANELS\",\n        \"name\": \"SOC_LCD_RGB_PANELS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_I80_BUS_WIDTH\",\n        \"name\": \"SOC_LCD_I80_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_RGB_DATA_WIDTH\",\n        \"name\": \"SOC_LCD_RGB_DATA_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_LCD_SUPPORT_RGB_YUV_CONV\",\n        \"name\": \"SOC_LCD_SUPPORT_RGB_YUV_CONV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\",\n        \"name\": \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\",\n        \"name\": \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\",\n        \"name\": \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_PIN_COUNT\",\n        \"name\": \"SOC_RTCIO_PIN_COUNT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_HOLD_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_HOLD_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTCIO_WAKE_SUPPORTED\",\n        \"name\": \"SOC_RTCIO_WAKE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_GROUPS\",\n        \"name\": \"SOC_SDM_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_CHANNELS_PER_GROUP\",\n        \"name\": \"SOC_SDM_CHANNELS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDM_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_SDM_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_PERIPH_NUM\",\n        \"name\": \"SOC_SPI_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAX_CS_NUM\",\n        \"name\": \"SOC_SPI_MAX_CS_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAXIMUM_BUFFER_SIZE\",\n        \"name\": \"SOC_SPI_MAXIMUM_BUFFER_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_DDRCLK\",\n        \"name\": \"SOC_SPI_SUPPORT_DDRCLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\",\n        \"name\": \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CD_SIG\",\n        \"name\": \"SOC_SPI_SUPPORT_CD_SIG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\",\n        \"name\": \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\",\n        \"name\": \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CLK_APB\",\n        \"name\": \"SOC_SPI_SUPPORT_CLK_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_CLK_XTAL\",\n        \"name\": \"SOC_SPI_SUPPORT_CLK_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\",\n        \"name\": \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_IS_INDEPENDENT\",\n        \"name\": \"SOC_MEMSPI_IS_INDEPENDENT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MAX_PRE_DIVIDER\",\n        \"name\": \"SOC_SPI_MAX_PRE_DIVIDER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_SUPPORT_OCT\",\n        \"name\": \"SOC_SPI_SUPPORT_OCT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_120M\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_120M\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\",\n        \"name\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPIRAM_SUPPORTED\",\n        \"name\": \"SOC_SPIRAM_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPIRAM_XIP_SUPPORTED\",\n        \"name\": \"SOC_SPIRAM_XIP_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_COUNTER_NUM\",\n        \"name\": \"SOC_SYSTIMER_COUNTER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_ALARM_NUM\",\n        \"name\": \"SOC_SYSTIMER_ALARM_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_BIT_WIDTH_LO\",\n        \"name\": \"SOC_SYSTIMER_BIT_WIDTH_LO\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_BIT_WIDTH_HI\",\n        \"name\": \"SOC_SYSTIMER_BIT_WIDTH_HI\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_FIXED_DIVIDER\",\n        \"name\": \"SOC_SYSTIMER_FIXED_DIVIDER\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_INT_LEVEL\",\n        \"name\": \"SOC_SYSTIMER_INT_LEVEL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\",\n        \"name\": \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUPS\",\n        \"name\": \"SOC_TIMER_GROUPS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\",\n        \"name\": \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\",\n        \"name\": \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_SUPPORT_XTAL\",\n        \"name\": \"SOC_TIMER_GROUP_SUPPORT_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_SUPPORT_APB\",\n        \"name\": \"SOC_TIMER_GROUP_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TIMER_GROUP_TOTAL_TIMERS\",\n        \"name\": \"SOC_TIMER_GROUP_TOTAL_TIMERS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_VERSION_2\",\n        \"name\": \"SOC_TOUCH_VERSION_2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_SENSOR_NUM\",\n        \"name\": \"SOC_TOUCH_SENSOR_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\",\n        \"name\": \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\",\n        \"name\": \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PAD_THRESHOLD_MAX\",\n        \"name\": \"SOC_TOUCH_PAD_THRESHOLD_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\",\n        \"name\": \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_CONTROLLER_NUM\",\n        \"name\": \"SOC_TWAI_CONTROLLER_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_CLK_SUPPORT_APB\",\n        \"name\": \"SOC_TWAI_CLK_SUPPORT_APB\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_BRP_MIN\",\n        \"name\": \"SOC_TWAI_BRP_MIN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_BRP_MAX\",\n        \"name\": \"SOC_TWAI_BRP_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TWAI_SUPPORTS_RX_STATUS\",\n        \"name\": \"SOC_TWAI_SUPPORTS_RX_STATUS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_NUM\",\n        \"name\": \"SOC_UART_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_FIFO_LEN\",\n        \"name\": \"SOC_UART_FIFO_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_BITRATE_MAX\",\n        \"name\": \"SOC_UART_BITRATE_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\",\n        \"name\": \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_WAKEUP_INT\",\n        \"name\": \"SOC_UART_SUPPORT_WAKEUP_INT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_APB_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_APB_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_RTC_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_RTC_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_SUPPORT_XTAL_CLK\",\n        \"name\": \"SOC_UART_SUPPORT_XTAL_CLK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_UART_REQUIRE_CORE_RESET\",\n        \"name\": \"SOC_UART_REQUIRE_CORE_RESET\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_USB_PERIPH_NUM\",\n        \"name\": \"SOC_USB_PERIPH_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_DMA_MAX_BUFFER_SIZE\",\n        \"name\": \"SOC_SHA_DMA_MAX_BUFFER_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_DMA\",\n        \"name\": \"SOC_SHA_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_RESUME\",\n        \"name\": \"SOC_SHA_SUPPORT_RESUME\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_GDMA\",\n        \"name\": \"SOC_SHA_GDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA1\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA1\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA224\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA224\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA256\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA384\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA384\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_224\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_224\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_256\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SHA_SUPPORT_SHA512_T\",\n        \"name\": \"SOC_SHA_SUPPORT_SHA512_T\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RSA_MAX_BIT_LEN\",\n        \"name\": \"SOC_RSA_MAX_BIT_LEN\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_DMA\",\n        \"name\": \"SOC_AES_SUPPORT_DMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_GDMA\",\n        \"name\": \"SOC_AES_GDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_AES_128\",\n        \"name\": \"SOC_AES_SUPPORT_AES_128\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_AES_SUPPORT_AES_256\",\n        \"name\": \"SOC_AES_SUPPORT_AES_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT0_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT0_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT1_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT1_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_EXT_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_EXT_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_WIFI_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_WIFI_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_BT_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_BT_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\",\n        \"name\": \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_CPU_PD\",\n        \"name\": \"SOC_PM_SUPPORT_CPU_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_TAGMEM_PD\",\n        \"name\": \"SOC_PM_SUPPORT_TAGMEM_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_RTC_PERIPH_PD\",\n        \"name\": \"SOC_PM_SUPPORT_RTC_PERIPH_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_RC_FAST_PD\",\n        \"name\": \"SOC_PM_SUPPORT_RC_FAST_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_VDDSDIO_PD\",\n        \"name\": \"SOC_PM_SUPPORT_VDDSDIO_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_MAC_BB_PD\",\n        \"name\": \"SOC_PM_SUPPORT_MAC_BB_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_MODEM_PD\",\n        \"name\": \"SOC_PM_SUPPORT_MODEM_PD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n        \"name\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\",\n        \"name\": \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\",\n        \"name\": \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\",\n        \"name\": \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_RC_FAST_D256_SUPPORTED\",\n        \"name\": \"SOC_CLK_RC_FAST_D256_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\",\n        \"name\": \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\",\n        \"name\": \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_CLK_XTAL32K_SUPPORTED\",\n        \"name\": \"SOC_CLK_XTAL32K_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\",\n        \"name\": \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\",\n        \"name\": \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_HARD_DIS_JTAG\",\n        \"name\": \"SOC_EFUSE_HARD_DIS_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_USB_JTAG\",\n        \"name\": \"SOC_EFUSE_DIS_USB_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_SOFT_DIS_JTAG\",\n        \"name\": \"SOC_EFUSE_SOFT_DIS_JTAG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_DIRECT_BOOT\",\n        \"name\": \"SOC_EFUSE_DIS_DIRECT_BOOT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_DIS_ICACHE\",\n        \"name\": \"SOC_EFUSE_DIS_ICACHE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\",\n        \"name\": \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SECURE_BOOT_V2_RSA\",\n        \"name\": \"SOC_SECURE_BOOT_V2_RSA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\",\n        \"name\": \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n        \"name\": \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n        \"name\": \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\",\n        \"name\": \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256\",\n        \"name\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\",\n        \"name\": \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MEMPROT_MEM_ALIGN_SIZE\",\n        \"name\": \"SOC_MEMPROT_MEM_ALIGN_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PHY_DIG_REGS_MEM_SIZE\",\n        \"name\": \"SOC_PHY_DIG_REGS_MEM_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_MAC_BB_PD_MEM_SIZE\",\n        \"name\": \"SOC_MAC_BB_PD_MEM_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\",\n        \"name\": \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_OPI_MODE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_OPI_MODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SPI_MEM_SUPPORT_WRAP\",\n        \"name\": \"SOC_SPI_MEM_SUPPORT_WRAP\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_COEX_HW_PTI\",\n        \"name\": \"SOC_COEX_HW_PTI\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EXTERNAL_COEX_ADVANCE\",\n        \"name\": \"SOC_EXTERNAL_COEX_ADVANCE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\",\n        \"name\": \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_USE_GPIO_MATRIX\",\n        \"name\": \"SOC_SDMMC_USE_GPIO_MATRIX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_NUM_SLOTS\",\n        \"name\": \"SOC_SDMMC_NUM_SLOTS\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\",\n        \"name\": \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\",\n        \"name\": \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_HW_TSF\",\n        \"name\": \"SOC_WIFI_HW_TSF\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_FTM_SUPPORT\",\n        \"name\": \"SOC_WIFI_FTM_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_GCMP_SUPPORT\",\n        \"name\": \"SOC_WIFI_GCMP_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_WAPI_SUPPORT\",\n        \"name\": \"SOC_WIFI_WAPI_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_CSI_SUPPORT\",\n        \"name\": \"SOC_WIFI_CSI_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_MESH_SUPPORT\",\n        \"name\": \"SOC_WIFI_MESH_SUPPORT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n        \"name\": \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_SUPPORTED\",\n        \"name\": \"SOC_BLE_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_MESH_SUPPORTED\",\n        \"name\": \"SOC_BLE_MESH_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_50_SUPPORTED\",\n        \"name\": \"SOC_BLE_50_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\",\n        \"name\": \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_BLUFI_SUPPORTED\",\n        \"name\": \"SOC_BLUFI_SUPPORTED\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_ULP_HAS_ADC\",\n        \"name\": \"SOC_ULP_HAS_ADC\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"SOC_PHY_COMBO_MODULE\",\n        \"name\": \"SOC_PHY_COMBO_MODULE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_CMAKE\",\n        \"name\": \"IDF_CMAKE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_ENV_FPGA\",\n        \"name\": \"IDF_ENV_FPGA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_CI_BUILD\",\n        \"name\": \"IDF_CI_BUILD\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH_RISCV\",\n        \"name\": \"IDF_TARGET_ARCH_RISCV\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH_XTENSA\",\n        \"name\": \"IDF_TARGET_ARCH_XTENSA\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ARCH\",\n        \"name\": \"IDF_TARGET_ARCH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"string\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET\",\n        \"name\": \"IDF_TARGET\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"string\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_LINUX\",\n        \"name\": \"IDF_TARGET_LINUX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32\",\n        \"name\": \"IDF_TARGET_ESP32\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32S2\",\n        \"name\": \"IDF_TARGET_ESP32S2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32S3\",\n        \"name\": \"IDF_TARGET_ESP32S3\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C3\",\n        \"name\": \"IDF_TARGET_ESP32C3\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C2\",\n        \"name\": \"IDF_TARGET_ESP32C2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32C6\",\n        \"name\": \"IDF_TARGET_ESP32C6\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_ESP32H2\",\n        \"name\": \"IDF_TARGET_ESP32H2\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_TARGET_LINUX\",\n        \"name\": \"IDF_TARGET_LINUX\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"IDF_FIRMWARE_CHIP_ID\",\n        \"name\": \"IDF_FIRMWARE_CHIP_ID\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"hex\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!IDF_TARGET_LINUX && <choice APP_BUILD_TYPE>\",\n                        \"help\": null,\n                        \"id\": \"APP_BUILD_TYPE_APP_2NDBOOT\",\n                        \"name\": \"APP_BUILD_TYPE_APP_2NDBOOT\",\n                        \"range\": null,\n                        \"title\": \"Default (binary application + 2nd stage bootloader)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice APP_BUILD_TYPE>\",\n                        \"help\": null,\n                        \"id\": \"APP_BUILD_TYPE_RAM\",\n                        \"name\": \"APP_BUILD_TYPE_RAM\",\n                        \"range\": null,\n                        \"title\": \"Build app runs entirely in RAM (EXPERIMENTAL)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Select the way the application is built.\\n\\nBy default, the application is built as a binary file in a format compatible with\\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\\nalso built. Application and bootloader binaries can be written into flash and\\nloaded/executed from there.\\n\\nAnother option, useful for only very small and limited applications, is to only link\\nthe .elf file of the application, such that it can be loaded directly into RAM over\\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\\nto build any complex application this way. However for some kinds of testing and debugging,\\nthis option may provide faster iterations, since the application does not need to be\\nwritten into flash.\\n\\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\\nA gdbinit file may look as follows (for ESP32):\\n\\n    # Connect to a running instance of OpenOCD\\n    target remote :3333\\n    # Reset and halt the target\\n    mon reset halt\\n    # Run to a specific point in ROM code,\\n    #  where most of initialization is complete.\\n    thb *0x40007d54\\n    c\\n    # Load the application into RAM\\n    load\\n    # Run till app_main\\n    tb app_main\\n    c\\n\\nExecute this gdbinit file as follows:\\n\\n    xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\\n\\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\\n\\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\\nstartup code, so there's no additional startup initialization required. You can use the\\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\\n\\nExample:\\n    esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\\n\\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\\nmemory footprint.\\n\\n    CONFIG_APP_BUILD_TYPE_RAM=y\\n    CONFIG_VFS_SUPPORT_TERMIOS=\\n    CONFIG_NEWLIB_NANO_FORMAT=y\\n    CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\\n    CONFIG_ESP_DEBUG_STUBS_ENABLE=\\n    CONFIG_ESP_ERR_TO_NAME_LOOKUP=\",\n                \"id\": \"build-type-application-build-type\",\n                \"name\": \"APP_BUILD_TYPE\",\n                \"title\": \"Application build type\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_GENERATE_BINARIES\",\n                \"name\": \"APP_BUILD_GENERATE_BINARIES\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_BOOTLOADER\",\n                \"name\": \"APP_BUILD_BOOTLOADER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"APP_BUILD_TYPE_RAM\",\n                \"help\": \"If this option is enabled, external memory and related peripherals, such as Cache, MMU,\\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\\nComponents that depend on the spi_flash component will also be unavailable, such as\\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.\",\n                \"id\": \"APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"name\": \"APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"range\": null,\n                \"title\": \"Build app without SPI_FLASH/PSRAM support (saves ram)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"APP_BUILD_USE_FLASH_SECTIONS\",\n                \"name\": \"APP_BUILD_USE_FLASH_SECTIONS\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\\nautomatically. (or will be append if you have one already)\",\n                \"id\": \"APP_REPRODUCIBLE_BUILD\",\n                \"name\": \"APP_REPRODUCIBLE_BUILD\",\n                \"range\": null,\n                \"title\": \"Enable reproducible build\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, this disables the linking of binary libraries in the application build. Note\\nthat after enabling this Wi-Fi/Bluetooth will not work.\",\n                \"id\": \"APP_NO_BLOBS\",\n                \"name\": \"APP_NO_BLOBS\",\n                \"range\": null,\n                \"title\": \"No Binary Blobs\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": \"Bootloaders before ESP-IDF v2.1 did less initialisation of the\\nsystem clock. This setting needs to be enabled to build an app\\nwhich can be booted by these older bootloaders.\\n\\nIf this setting is enabled, the app can be booted by any bootloader\\nfrom IDF v1.0 up to the current version.\\n\\nIf this setting is disabled, the app can only be booted by bootloaders\\nfrom IDF v2.1 or newer.\\n\\nEnabling this setting adds approximately 1KB to the app's IRAM usage.\",\n                \"id\": \"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS\",\n                \"name\": \"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS\",\n                \"range\": null,\n                \"title\": \"App compatible with bootloaders before ESP-IDF v2.1\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": \"Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\\ntable that contains an MD5 checksum field.\\n\\nEnable this option only if your app needs to boot on a bootloader and/or\\npartition table that was generated from a version *before* ESP-IDF v3.1.\\n\\nIf this option and Flash Encryption are enabled at the same time, and any\\ndata partitions in the partition table are marked Encrypted, then the\\npartition encrypted flag should be manually verified in the app before accessing\\nthe partition (see CVE-2021-27926).\",\n                \"id\": \"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS\",\n                \"name\": \"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS\",\n                \"range\": null,\n                \"title\": \"App compatible with bootloader and partition table before ESP-IDF v3.1\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32\",\n                \"help\": null,\n                \"id\": \"APP_INIT_CLK\",\n                \"name\": \"APP_INIT_CLK\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"build-type\",\n        \"title\": \"Build type\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Offset address that 2nd bootloader will be flashed to.\\nThe value is determined by the ROM bootloader.\\nIt's not configurable in ESP-IDF.\",\n                \"id\": \"BOOTLOADER_OFFSET_IN_FLASH\",\n                \"name\": \"BOOTLOADER_OFFSET_IN_FLASH\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size (-Os)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Debug (-Og)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\",\n                        \"range\": null,\n                        \"title\": \"Optimize for performance (-O2)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\",\n                        \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\",\n                        \"range\": null,\n                        \"title\": \"Debug without optimization (-O0)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"This option sets compiler optimization level (gcc -O argument)\\nfor the bootloader.\\n\\n- The default \\\"Size\\\" setting will add the -0s flag to CFLAGS.\\n- The \\\"Debug\\\" setting will add the -Og flag to CFLAGS.\\n- The \\\"Performance\\\" setting will add the -O2 flag to CFLAGS.\\n- The \\\"None\\\" setting will add the -O0 flag to CFLAGS.\\n\\nNote that custom optimization levels may be unsupported.\",\n                \"id\": \"bootloader-config-bootloader-optimization-level\",\n                \"name\": \"BOOTLOADER_COMPILER_OPTIMIZATION\",\n                \"title\": \"Bootloader optimization Level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_NONE\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_NONE\",\n                        \"range\": null,\n                        \"title\": \"No output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_ERROR\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_ERROR\",\n                        \"range\": null,\n                        \"title\": \"Error\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_WARN\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_WARN\",\n                        \"range\": null,\n                        \"title\": \"Warning\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_INFO\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_INFO\",\n                        \"range\": null,\n                        \"title\": \"Info\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_DEBUG\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Debug\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_LOG_LEVEL>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_LOG_LEVEL_VERBOSE\",\n                        \"name\": \"BOOTLOADER_LOG_LEVEL_VERBOSE\",\n                        \"range\": null,\n                        \"title\": \"Verbose\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Specify how much output to see in bootloader logs.\",\n                \"id\": \"bootloader-config-bootloader-log-verbosity\",\n                \"name\": \"BOOTLOADER_LOG_LEVEL\",\n                \"title\": \"Bootloader log verbosity\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"BOOTLOADER_LOG_LEVEL\",\n                \"name\": \"BOOTLOADER_LOG_LEVEL\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)\",\n                \"help\": \"This setting is only used if the SPI flash pins have been overridden by setting the eFuses\\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\\n\\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\\nESP32 pin \\\"SD_DATA_3\\\" or SPI flash pin \\\"IO2\\\") is not specified in eFuse. The same pin is also used\\nfor external SPIRAM if it is enabled.\\n\\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\\nY and specify the GPIO number connected to the WP.\",\n                \"id\": \"BOOTLOADER_SPI_CUSTOM_WP_PIN\",\n                \"name\": \"BOOTLOADER_SPI_CUSTOM_WP_PIN\",\n                \"range\": null,\n                \"title\": \"Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)\",\n                \"help\": \"The option \\\"Use custom SPI Flash WP Pin\\\" must be set or this value is ignored\\n\\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\\nvalue to the GPIO number of the SPI flash WP pin.\",\n                \"id\": \"BOOTLOADER_SPI_WP_PIN\",\n                \"name\": \"BOOTLOADER_SPI_WP_PIN\",\n                \"range\": null,\n                \"title\": \"Custom SPI Flash WP Pin\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_FLASHFREQ_80M && <choice BOOTLOADER_VDDSDIO_BOOST>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_VDDSDIO_BOOST_1_8V\",\n                        \"name\": \"BOOTLOADER_VDDSDIO_BOOST_1_8V\",\n                        \"range\": null,\n                        \"title\": \"1.8V\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOTLOADER_VDDSDIO_BOOST>\",\n                        \"help\": null,\n                        \"id\": \"BOOTLOADER_VDDSDIO_BOOST_1_9V\",\n                        \"name\": \"BOOTLOADER_VDDSDIO_BOOST_1_9V\",\n                        \"range\": null,\n                        \"title\": \"1.9V\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\",\n                \"help\": \"If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\\nor MTDI bootstrapping pin), bootloader will change LDO settings to\\noutput 1.9V instead. This helps prevent flash chip from browning out\\nduring flash programming operations.\\n\\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\\nVDDSDIO regulator is disabled via eFuse.\",\n                \"id\": \"bootloader-config-vddsdio-ldo-voltage\",\n                \"name\": \"BOOTLOADER_VDDSDIO_BOOST\",\n                \"title\": \"VDDSDIO LDO voltage\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"The selected GPIO will be configured as an input with internal pull-up enabled (note that on some SoCs.\\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\\nreset, this GPIO must be held high or low (as configured) on startup.\",\n                        \"id\": \"BOOTLOADER_NUM_PIN_FACTORY_RESET\",\n                        \"name\": \"BOOTLOADER_NUM_PIN_FACTORY_RESET\",\n                        \"range\": null,\n                        \"title\": \"Number of the GPIO input for factory reset\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_FACTORY_RESET_PIN_LOW\",\n                                \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_LOW\",\n                                \"range\": null,\n                                \"title\": \"Reset on GPIO low\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_FACTORY_RESET_PIN_HIGH\",\n                                \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_HIGH\",\n                                \"range\": null,\n                                \"title\": \"Reset on GPIO high\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"Pin level for factory reset, can be triggered on low or high.\",\n                        \"id\": \"bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level\",\n                        \"name\": \"BOOTLOADER_FACTORY_RESET_PIN_LEVEL\",\n                        \"title\": \"Factory reset GPIO level\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"The device will boot from \\\"factory\\\" partition (or OTA slot 0 if no factory partition is present) after a\\nfactory reset.\",\n                        \"id\": \"BOOTLOADER_OTA_DATA_ERASE\",\n                        \"name\": \"BOOTLOADER_OTA_DATA_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Clear OTA data on factory reset (select factory partition)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_FACTORY_RESET\",\n                        \"help\": \"Allows customers to select which data partitions will be erased while factory reset.\\n\\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\\n\\\"nvs, phy_init, ...\\\")\\nMake sure that the name specified in the partition table and here are the same.\\nPartitions of type \\\"app\\\" cannot be specified here.\",\n                        \"id\": \"BOOTLOADER_DATA_FACTORY_RESET\",\n                        \"name\": \"BOOTLOADER_DATA_FACTORY_RESET\",\n                        \"range\": null,\n                        \"title\": \"Comma-separated names of partitions to clear on factory reset\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Allows to reset the device to factory settings:\\n- clear one or more data partitions;\\n- boot from \\\"factory\\\" partition.\\nThe factory reset will occur if there is a GPIO input held at the configured level while\\ndevice starts up. See settings below.\",\n                \"id\": \"BOOTLOADER_FACTORY_RESET\",\n                \"name\": \"BOOTLOADER_FACTORY_RESET\",\n                \"range\": null,\n                \"title\": \"GPIO triggers factory reset\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_APP_TEST\",\n                        \"help\": \"The selected GPIO will be configured as an input with internal pull-up enabled.\\nTo trigger a test app, this GPIO must be pulled low on reset.\\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\\n(factory or OTA[x]).\\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.\",\n                        \"id\": \"BOOTLOADER_NUM_PIN_APP_TEST\",\n                        \"name\": \"BOOTLOADER_NUM_PIN_APP_TEST\",\n                        \"range\": null,\n                        \"title\": \"Number of the GPIO input to boot TEST partition\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_APP_TEST_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_APP_TEST_PIN_LOW\",\n                                \"name\": \"BOOTLOADER_APP_TEST_PIN_LOW\",\n                                \"range\": null,\n                                \"title\": \"Enter test app on GPIO low\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BOOTLOADER_APP_TEST_PIN_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"BOOTLOADER_APP_TEST_PIN_HIGH\",\n                                \"name\": \"BOOTLOADER_APP_TEST_PIN_HIGH\",\n                                \"range\": null,\n                                \"title\": \"Enter test app on GPIO high\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_APP_TEST\",\n                        \"help\": \"Pin level for app test, can be triggered on low or high.\",\n                        \"id\": \"bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level\",\n                        \"name\": \"BOOTLOADER_APP_TEST_PIN_LEVEL\",\n                        \"title\": \"App test GPIO level\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": \"!BOOTLOADER_APP_ANTI_ROLLBACK\",\n                \"help\": \"Allows to run the test app from \\\"TEST\\\" partition.\\nA boot from \\\"test\\\" partition will occur if there is a GPIO input pulled low while device starts up.\\nSee settings below.\",\n                \"id\": \"BOOTLOADER_APP_TEST\",\n                \"name\": \"BOOTLOADER_APP_TEST\",\n                \"range\": null,\n                \"title\": \"GPIO triggers boot from test app partition\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST\",\n                \"help\": \"The GPIO must be held low continuously for this period of time after reset\\nbefore a factory reset or test partition boot (as applicable) is performed.\",\n                \"id\": \"BOOTLOADER_HOLD_TIME_GPIO\",\n                \"name\": \"BOOTLOADER_HOLD_TIME_GPIO\",\n                \"range\": null,\n                \"title\": \"Hold time of GPIO for reset/test mode (seconds)\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Protects the unmapped memory regions of the entire address space from unintended accesses.\\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\\noperation on unmapped regions of the address space.\",\n                \"id\": \"BOOTLOADER_REGION_PROTECTION_ENABLE\",\n                \"name\": \"BOOTLOADER_REGION_PROTECTION_ENABLE\",\n                \"range\": null,\n                \"title\": \"Enable protection for unmapped memory regions\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_WDT_ENABLE\",\n                        \"help\": \"If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\\nthe app's own code.\\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\\nthe app_main() function.\\n\\nUse function rtc_wdt_feed() for resetting counter of rtc_wdt.\\nUse function rtc_wdt_disable() for disabling rtc_wdt.\",\n                        \"id\": \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\",\n                        \"name\": \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\",\n                        \"range\": null,\n                        \"title\": \"Allows RTC watchdog disable in user code\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_WDT_ENABLE\",\n                        \"help\": \"Verify that this parameter is correct and more then the execution time.\\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\\n- these options can increase the execution time.\\nNote: RTC_WDT will reset while encryption operations will be performed.\",\n                        \"id\": \"BOOTLOADER_WDT_TIME_MS\",\n                        \"name\": \"BOOTLOADER_WDT_TIME_MS\",\n                        \"range\": [\n                            0,\n                            120000\n                        ],\n                        \"title\": \"Timeout for RTC watchdog (ms)\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Tracks the execution time of startup code.\\nIf the execution time is exceeded, the RTC_WDT will restart system.\\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\\nsource for slow_clk - and ends calling app_main.\\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\\ntime of WDT needs to re-set for new frequency.\\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).\",\n                \"id\": \"BOOTLOADER_WDT_ENABLE\",\n                \"name\": \"BOOTLOADER_WDT_ENABLE\",\n                \"range\": null,\n                \"title\": \"Use RTC watchdog in start code\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"The secure version is the sequence number stored in the header of each firmware.\\nThe security version is set in the bootloader, version is recorded in the eFuse field\\nas the number of set ones. The allocated number of bits in the efuse field\\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\\n\\nBootloader: When bootloader selects an app to boot, an app is selected that has\\na security version greater or equal that recorded in eFuse field.\\nThe app is booted with a higher (or equal) secure version.\\n\\nThe security version is worth increasing if in previous versions there is\\na significant vulnerability and their use is not acceptable.\\n\\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).\",\n                                \"id\": \"BOOTLOADER_APP_SECURE_VERSION\",\n                                \"name\": \"BOOTLOADER_APP_SECURE_VERSION\",\n                                \"range\": null,\n                                \"title\": \"eFuse secure version of app\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"The size of the efuse secure version field.\\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\\nThis determines how many times the security version can be increased.\",\n                                \"id\": \"BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD\",\n                                \"name\": \"BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD\",\n                                \"range\": null,\n                                \"title\": \"Size of the efuse secure version field\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                                \"help\": \"This option allows to emulate read/write operations with all eFuses and efuse secure version.\\nIt allows to test anti-rollback implemention without permanent write eFuse bits.\\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\\n\\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.\",\n                                \"id\": \"BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE\",\n                                \"name\": \"BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE\",\n                                \"range\": null,\n                                \"title\": \"Emulate operations with efuse secure version(only test)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                        \"help\": \"This option prevents rollback to previous firmware/application image with lower security version.\",\n                        \"id\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                        \"name\": \"BOOTLOADER_APP_ANTI_ROLLBACK\",\n                        \"range\": null,\n                        \"title\": \"Enable app anti-rollback support\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"After updating the app, the bootloader runs a new app with the \\\"ESP_OTA_IMG_PENDING_VERIFY\\\" state set.\\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\\nthe previous working app. A reboot is performed, and the app is booted before the software update.\\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\\nRollback is possible only between the apps with the same security versions.\",\n                \"id\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                \"name\": \"BOOTLOADER_APP_ROLLBACK_ENABLE\",\n                \"range\": null,\n                \"title\": \"Enable app rollback support\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED && ((SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT)\",\n                \"help\": \"This option disables the normal validation of an image coming out of\\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\\nbetween wakeup performance from deep sleep, and image integrity checks.\\n\\nOnly enable this if you know what you are doing. It should not be used\\nin conjunction with using deep_sleep() entry and changing the active OTA\\npartition as this would skip the validation upon first load of the new\\nOTA partition.\\n\\nIt is possible to enable this option with Secure Boot if \\\"allow insecure\\noptions\\\" is enabled, however it's strongly recommended to NOT enable it as\\nit may allow a Secure Boot bypass.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\",\n                \"range\": null,\n                \"title\": \"Skip image validation when exiting deep sleep\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_SIGNED_ON_BOOT\",\n                \"help\": \"Some applications need to boot very quickly from power on. By default, the entire app binary\\nis read from flash and verified which takes up a significant portion of the boot time.\\n\\nEnabling this option will skip validation of the app when the SoC boots from power on.\\nNote that in this case it's not possible for the bootloader to detect if an app image is\\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\\nfirmware bug or physical damage.\\n\\nFollowing other reset types, the bootloader will still validate the app image. This increases\\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\",\n                \"range\": null,\n                \"title\": \"Skip image validation from power on reset (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_SIGNED_ON_BOOT\",\n                \"help\": \"Selecting this option prevents the bootloader from ever validating the app image before\\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\\nunbootable.\\n\\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\\nConsider selecting \\\"Skip image validation from power on reset\\\" instead. However, if boot time\\nis the only important factor then it can be enabled.\",\n                \"id\": \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\",\n                \"name\": \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\",\n                \"range\": null,\n                \"title\": \"Skip image validation always (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"Reserve RTC FAST memory for Skip image validation. This option in bytes.\\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\\nUsed to save the addresses of the selected application.\\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\\nloads the application without validation.\",\n                \"id\": \"BOOTLOADER_RESERVE_RTC_SIZE\",\n                \"name\": \"BOOTLOADER_RESERVE_RTC_SIZE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                        \"help\": \"This option reserves in RTC FAST memory the area for custom purposes.\\nIf you want to create your own bootloader and save more information\\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.\",\n                        \"id\": \"BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE\",\n                        \"name\": \"BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size in bytes for custom purposes\",\n                        \"type\": \"hex\"\n                    }\n                ],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"This option allows the customer to place data in the RTC FAST memory,\\nthis area remains valid when rebooted, except for power loss.\\nThis memory is located at a fixed address and is available\\nfor both the bootloader and the application.\\n(The application and bootoloader must be compiled with the same option).\\nThe RTC FAST memory has access only through PRO_CPU.\",\n                \"id\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                \"name\": \"BOOTLOADER_CUSTOM_RESERVE_RTC\",\n                \"range\": null,\n                \"title\": \"Reserve RTC FAST memory for custom purposes\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                \"help\": \"This option reserves an area in RTC FAST memory for the following features:\\n- \\\"Skip image validation when exiting deep sleep\\\"\\n- \\\"Reserve RTC FAST memory for custom purposes\\\"\\n- \\\"GPIO triggers factory reset\\\"\",\n                \"id\": \"BOOTLOADER_RESERVE_RTC_MEM\",\n                \"name\": \"BOOTLOADER_RESERVE_RTC_MEM\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\\nXMC chips will be forbidden to be used, when this option is disabled.\\n\\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\",\n                \"id\": \"BOOTLOADER_FLASH_XMC_SUPPORT\",\n                \"name\": \"BOOTLOADER_FLASH_XMC_SUPPORT\",\n                \"range\": null,\n                \"title\": \"Enable the support for flash chips of XMC (READ HELP FIRST)\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"bootloader-config\",\n        \"title\": \"Bootloader config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_ON_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_BOOT\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_ON_UPDATE\",\n                \"name\": \"SECURE_SIGNED_ON_UPDATE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE\",\n                \"help\": null,\n                \"id\": \"SECURE_SIGNED_APPS\",\n                \"name\": \"SECURE_SIGNED_APPS\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_RSA_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V2_RSA_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_SECURE_BOOT_V2_ECC\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_ECC_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V2_ECC_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SOC_SECURE_BOOT_V1\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V1_SUPPORTED\",\n                \"name\": \"SECURE_BOOT_V1_SUPPORTED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"ESP32_REV_MIN_FULL >= 300\",\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_PREFERRED\",\n                \"name\": \"SECURE_BOOT_V2_PREFERRED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_ECDSA_ENABLED\",\n                \"name\": \"SECURE_BOOT_V2_ECDSA_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_V2_RSA_ENABLED\",\n                \"name\": \"SECURE_BOOT_V2_RSA_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER\",\n                \"name\": \"SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!SECURE_BOOT\",\n                \"help\": \"Require apps to be signed to verify their integrity.\\n\\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\\nis much simpler to implement.\",\n                \"id\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Require signed app images\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\\nRefer to the documentation before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"ECDSA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"Appends the RSA-3072 based Signature block to the application.\\nRefer to <Secure Boot Version 2 documentation link> before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_RSA_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_RSA_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"RSA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && <choice SECURE_SIGNED_APPS_SCHEME>\",\n                        \"help\": \"For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\\nRefer to documentation before enabling.\",\n                        \"id\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                        \"name\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                        \"range\": null,\n                        \"title\": \"ECDSA (V2)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"help\": \"Select the Secure App signing scheme. Depends on the Chip Revision.\\nThere are two secure boot versions:\\n\\n1. Secure boot V1\\n    - Legacy custom secure boot scheme. Supported in ESP32 SoC.\\n\\n2. Secure boot V2\\n    - RSA based secure boot scheme.\\n      Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\\n\\n    - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.\",\n                \"id\": \"security-features-app-signing-scheme\",\n                \"name\": \"SECURE_SIGNED_APPS_SCHEME\",\n                \"title\": \"App Signing Scheme\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && <choice SECURE_BOOT_ECDSA_KEY_LEN_SIZE>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOT_ECDSA_KEY_LEN_192_BITS\",\n                        \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_192_BITS\",\n                        \"range\": null,\n                        \"title\": \"Using ECC curve NISTP192\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && <choice SECURE_BOOT_ECDSA_KEY_LEN_SIZE>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOT_ECDSA_KEY_LEN_256_BITS\",\n                        \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_256_BITS\",\n                        \"range\": null,\n                        \"title\": \"Using ECC curve NISTP256 (Recommended)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_SIGNED_APPS_ECDSA_V2_SCHEME\",\n                \"help\": \"Select the ECDSA key size. Two key sizes are supported\\n\\n- 192 bit key using NISTP192 curve\\n- 256 bit key using NISTP256 curve (Recommended)\\n\\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\\nbruteforced compared to 192 bit key.\\nAt present, both key sizes are practically implausible to bruteforce.\",\n                \"id\": \"security-features-ecdsa-key-size\",\n                \"name\": \"SECURE_BOOT_ECDSA_KEY_LEN_SIZE\",\n                \"title\": \"ECDSA key size\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME\",\n                \"help\": \"If this option is set, the bootloader will be compiled with code to verify that an app is signed before\\nbooting it.\\n\\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\\nusers will want to leave it disabled.\",\n                \"id\": \"SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Bootloader verifies app signatures\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\",\n                \"help\": \"If this option is set, any OTA updated apps will have the signature verified before being considered valid.\\n\\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\\nupdates, or esp_image_format.h APIs are used to verify apps.\\n\\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\\nattackers by preventing spoofing of OTA updates.\",\n                \"id\": \"SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"name\": \"SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Verify app signature on update\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SECURE_BOOT_V1_SUPPORTED && <choice SECURE_BOOT_VERSION>\",\n                                \"help\": \"Build a bootloader which enables secure boot version 1 on first boot.\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                                \"id\": \"SECURE_BOOT_V1_ENABLED\",\n                                \"name\": \"SECURE_BOOT_V1_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Enable Secure Boot version 1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && <choice SECURE_BOOT_VERSION>\",\n                                \"help\": \"Build a bootloader which enables Secure Boot version 2 on first boot.\\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                                \"id\": \"SECURE_BOOT_V2_ENABLED\",\n                                \"name\": \"SECURE_BOOT_V2_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Enable Secure Boot version 2\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SECURE_BOOT\",\n                        \"help\": \"Select the Secure Boot Version. Depends on the Chip Revision.\\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\\n\\n    - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\\n    - ECDSA based scheme is supported in ESP32-C2 SoC.\\n\\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\\n\\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.\",\n                        \"id\": \"security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version\",\n                        \"name\": \"SECURE_BOOT_VERSION\",\n                        \"title\": \"Select secure boot version\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": \"SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)\",\n                \"help\": \"Build a bootloader which enables Secure Boot on first boot.\\n\\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\\nupdated apps once secure boot is enabled.\\n\\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.\",\n                \"id\": \"SECURE_BOOT\",\n                \"name\": \"SECURE_BOOT\",\n                \"range\": null,\n                \"title\": \"Enable hardware Secure Boot in bootloader (READ DOCS FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_MODE>\",\n                        \"help\": \"On first boot, the bootloader will generate a key which is not readable externally or by software. A\\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\\nboot.\\n\\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.\",\n                        \"id\": \"SECURE_BOOTLOADER_ONE_TIME_FLASH\",\n                        \"name\": \"SECURE_BOOTLOADER_ONE_TIME_FLASH\",\n                        \"range\": null,\n                        \"title\": \"One-time flash\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_MODE>\",\n                        \"help\": \"Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\\n\\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\\nkey.\\n\\nThis option is less secure than one-time flash, because a leak of the digest key from one device\\nallows reflashing of any device that uses it.\",\n                        \"id\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                        \"name\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                        \"range\": null,\n                        \"title\": \"Reflashable\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOT_V1_ENABLED\",\n                \"help\": null,\n                \"id\": \"security-features-secure-bootloader-mode\",\n                \"name\": \"SECURE_BOOTLOADER_MODE\",\n                \"title\": \"Secure bootloader mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                        \"help\": \"Path to the key file used to sign app images.\\n\\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\\nKey file is an RSA private key in PEM format for Secure Boot V2.\\n\\nPath is evaluated relative to the project directory.\\n\\nYou can generate a new signing key by running the following command:\\nespsecure.py generate_signing_key secure_boot_signing_key.pem\\n\\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.\",\n                        \"id\": \"SECURE_BOOT_SIGNING_KEY\",\n                        \"name\": \"SECURE_BOOT_SIGNING_KEY\",\n                        \"range\": null,\n                        \"title\": \"Secure boot private signing key\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_SIGNED_APPS\",\n                \"help\": \"Once secure boot or signed app requirement is enabled, app images are required to be signed.\\n\\nIf enabled (default), these binary files are signed as part of the build process. The file named in\\n\\\"Secure boot private signing key\\\" will be used to sign the image.\\n\\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\\n(for example, on a remote signing server.)\",\n                \"id\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"name\": \"SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"range\": null,\n                \"title\": \"Sign binaries during build\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES\",\n                \"help\": \"Path to a public key file used to verify signed images.\\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\\napp, to verify app images.\\n\\nKey file is in raw binary format, and can be extracted from a\\nPEM formatted private key using the espsecure.py\\nextract_public_key command.\\n\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                \"id\": \"SECURE_BOOT_VERIFICATION_KEY\",\n                \"name\": \"SECURE_BOOT_VERIFICATION_KEY\",\n                \"range\": null,\n                \"title\": \"Secure boot public signature verification key\",\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\",\n                \"help\": \"If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\\nif it fails to verify the signature of software bootloader with it.\\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\\n\\nThis feature provides a strong resistance against physical attacks on the device.\\n\\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\\nThis can lead to permanent bricking of the device, in case all keys are revoked\\nbecause of signature verification failure.\",\n                \"id\": \"SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE\",\n                \"name\": \"SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE\",\n                \"range\": null,\n                \"title\": \"Enable Aggressive key revoke strategy\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_KEY_ENCODING>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOTLOADER_KEY_ENCODING_256BIT\",\n                        \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING_256BIT\",\n                        \"range\": null,\n                        \"title\": \"No encoding (256 bit key)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_BOOTLOADER_KEY_ENCODING>\",\n                        \"help\": null,\n                        \"id\": \"SECURE_BOOTLOADER_KEY_ENCODING_192BIT\",\n                        \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING_192BIT\",\n                        \"range\": null,\n                        \"title\": \"3/4 encoding (192 bit key)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"SECURE_BOOTLOADER_REFLASHABLE\",\n                \"help\": \"In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\\ncan be written to eFuse with espefuse.py.\\n\\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\\ntruncated to 192 bits.\\n\\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\\ngenerated at build time.\",\n                \"id\": \"security-features-hardware-key-encoding\",\n                \"name\": \"SECURE_BOOTLOADER_KEY_ENCODING\",\n                \"title\": \"Hardware Key Encoding\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_BOOT\",\n                \"help\": \"You can disable some of the default protections offered by secure boot, in order to enable testing or a\\ncustom combination of security features.\\n\\nOnly enable these options if you are very sure.\\n\\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.\",\n                \"id\": \"SECURE_BOOT_INSECURE\",\n                \"name\": \"SECURE_BOOT_INSECURE\",\n                \"range\": null,\n                \"title\": \"Allow potentially insecure options\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES128_DERIVED\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES128_DERIVED\",\n                                \"range\": null,\n                                \"title\": \"AES-128 key derived from 128 bits (SHA256(128 bits))\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES128\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES128\",\n                                \"range\": null,\n                                \"title\": \"AES-128 (256-bit key)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_256 && <choice SECURE_FLASH_ENCRYPTION_KEYSIZE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_AES256\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_AES256\",\n                                \"range\": null,\n                                \"title\": \"AES-256 (512-bit key)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"Size of generated AES-XTS key.\\n\\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\\n  Internally, it calculates SHA256(128 bits)\\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\\n\\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\\nIn this case, the pre-burned key is used and no new key is generated.\",\n                        \"id\": \"security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key\",\n                        \"name\": \"SECURE_FLASH_ENCRYPTION_KEYSIZE\",\n                        \"title\": \"Size of generated AES-XTS key\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SECURE_FLASH_ENCRYPTION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                                \"range\": null,\n                                \"title\": \"Development (NOT SECURE)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(!EFUSE_VIRTUAL || IDF_CI_BUILD) && <choice SECURE_FLASH_ENCRYPTION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"SECURE_FLASH_ENCRYPTION_MODE_RELEASE\",\n                                \"name\": \"SECURE_FLASH_ENCRYPTION_MODE_RELEASE\",\n                                \"range\": null,\n                                \"title\": \"Release\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"By default Development mode is enabled which allows ROM download mode to perform flash encryption\\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\\nto flash.\\n\\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\\npossible for the device in ROM Download Mode to use the flash encryption hardware.\\n\\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\\nFor CI tests we use IDF_CI_BUILD to bypass it (\\\"export IDF_CI_BUILD=1\\\").\\nWe do not recommend bypassing it for other purposes.\\n\\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.\",\n                        \"id\": \"security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode\",\n                        \"name\": \"SECURE_FLASH_ENCRYPTION_MODE\",\n                        \"title\": \"Enable usage mode\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"If this option is set, flash contents will be encrypted by the bootloader on first boot.\\n\\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\\nsystem is complicated and not always possible.\\n\\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\\nbefore enabling.\",\n                \"id\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"name\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"range\": null,\n                \"title\": \"Enable flash encryption on boot (READ DOCS FIRST)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                \"name\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32\",\n                        \"help\": \"By default, the BASIC ROM Console starts on reset if no valid bootloader is\\nread from the flash.\\n\\nWhen either flash encryption or secure boot are enabled, the default is to\\ndisable this BASIC fallback mode permanently via eFuse.\\n\\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\\nremain accessible.  Only set this option in testing environments.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_ROM_BASIC\",\n                        \"name\": \"SECURE_BOOT_ALLOW_ROM_BASIC\",\n                        \"range\": null,\n                        \"title\": \"Leave ROM BASIC Interpreter available on reset\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\\nwhen either secure boot or flash encryption is enabled.\\n\\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\\nand some of the protections of secure boot.\\n\\nOnly set this option in testing environments.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_JTAG\",\n                        \"name\": \"SECURE_BOOT_ALLOW_JTAG\",\n                        \"range\": null,\n                        \"title\": \"Allow JTAG Debugging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT\",\n                        \"help\": \"If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\\ncausing it to be mapped into the address space.\\n\\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\\npartitioning scheme which doesn't support 64KB aligned partition lengths.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_SHORT_APP_PARTITION\",\n                        \"name\": \"SECURE_BOOT_ALLOW_SHORT_APP_PARTITION\",\n                        \"range\": null,\n                        \"title\": \"Allow app partition length not 64KB aligned\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE && SECURE_BOOT_V2_ENABLED\",\n                        \"help\": \"If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\\n\\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the public key digest, causing an\\nimmediate denial of service and possibly allowing an additional fault injection attack to\\nbypass the signature protection.\\n\\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\\n\\nNOTE: If \\\"UART ROM download mode (Permanently disabled (recommended))\\\" or\\n\\\"UART ROM download mode (Permanently switch to Secure mode (recommended))\\\" is set,\\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\\nHowever, efuse can be read/written from the application\",\n                        \"id\": \"SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS\",\n                        \"name\": \"SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS\",\n                        \"range\": null,\n                        \"title\": \"Allow additional read protecting of efuses\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\",\n                        \"help\": \"If not set (default), during startup in the app all unused digest slots will be revoked.\\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\\nIf set, it means that you have a plan to use unused digests slots later.\",\n                        \"id\": \"SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS\",\n                        \"name\": \"SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS\",\n                        \"range\": null,\n                        \"title\": \"Leave unused digest slots available (not revoke)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader encryption access on\\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\\n\\nIt is recommended to only set this option in testing environments.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader encryption enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader decryption access on\\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\\n\\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\\nencryption.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader decryption enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)\",\n                        \"help\": \"If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\\n\\nOnly set this option in testing environments.\",\n                        \"id\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE\",\n                        \"name\": \"SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE\",\n                        \"range\": null,\n                        \"title\": \"Leave UART bootloader flash cache enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT\",\n                        \"help\": \"If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\\nwill enable flash encryption: generate the flash encryption key and program eFuses.\\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\\nreboot.\\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\\n\\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.\",\n                        \"id\": \"SECURE_FLASH_REQUIRE_ALREADY_ENABLED\",\n                        \"name\": \"SECURE_FLASH_REQUIRE_ALREADY_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Require flash encryption to be already enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE\",\n                        \"help\": \"If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\\nDue to other eFuses are linked with the same write protection bit (see the list below) then\\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\\nto give a chance to turn on the chip into the release mode later.\\n\\nList of eFuses with the same write protection bit:\\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\\n\\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-H2: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\\n\\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.\",\n                        \"id\": \"SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE\",\n                        \"name\": \"SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE\",\n                        \"range\": null,\n                        \"title\": \"Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"security-features-potentially-insecure-options\",\n                \"title\": \"Potentially insecure options\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                \"help\": \"If set (default), in an app during startup code,\\nthere is a check of the flash encryption eFuse bit is on\\n(as the bootloader should already have set it).\\nThe app requires this bit is on to continue work otherwise abort.\\n\\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.\",\n                \"id\": \"SECURE_FLASH_CHECK_ENC_EN_IN_APP\",\n                \"name\": \"SECURE_FLASH_CHECK_ENC_EN_IN_APP\",\n                \"range\": null,\n                \"title\": \"Check Flash Encryption enabled on app startup\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"SECURE_ROM_DL_MODE_ENABLED\",\n                \"name\": \"SECURE_ROM_DL_MODE_ENABLED\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\\n\\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\\nthen an error is printed instead.\\n\\nIt is recommended to enable this option in any production application where Flash\\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\\n\\nIt is also possible to permanently disable Download Mode by calling\\nesp_efuse_disable_rom_download_mode() at runtime.\",\n                        \"id\": \"SECURE_DISABLE_ROM_DL_MODE\",\n                        \"name\": \"SECURE_DISABLE_ROM_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Permanently disabled (recommended))\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_SUPPORTS_SECURE_DL_MODE && <choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\\nDownload Mode into a separate Secure Download mode. This option can only work if\\nDownload Mode is not already disabled by eFuse.\\n\\nSecure Download mode limits the use of Download Mode functions to update SPI config,\\nchanging baud rate, basic flash write and a command to return a summary of currently\\nenabled security features (`get_security_info`).\\n\\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\\nespefuse.py, read/writing memory or registers, encrypted download, or any other\\nfeatures that interact with unsupported Download Mode commands.\\n\\nSecure Download mode should be enabled in any application where Flash Encryption\\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\\nthe benefits of the security features, but it increases the potential \\\"attack\\nsurface\\\" for an attacker to try and bypass them with a successful physical attack.\\n\\nIt is also possible to enable secure download mode at runtime by calling\\nesp_efuse_enable_rom_secure_download_mode()\\n\\nNote: Secure Download mode is not available for ESP32 (includes revisions till ECO3).\",\n                        \"id\": \"SECURE_ENABLE_SECURE_ROM_DL_MODE\",\n                        \"name\": \"SECURE_ENABLE_SECURE_ROM_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Permanently switch to Secure mode (recommended))\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SECURE_UART_ROM_DL_MODE>\",\n                        \"help\": \"This is a potentially insecure option.\\nEnabling this option will allow the full UART download mode to stay enabled.\\nThis option SHOULD NOT BE ENABLED for production use cases.\",\n                        \"id\": \"SECURE_INSECURE_ALLOW_DL_MODE\",\n                        \"name\": \"SECURE_INSECURE_ALLOW_DL_MODE\",\n                        \"range\": null,\n                        \"title\": \"UART ROM download mode (Enabled (not recommended))\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)\",\n                \"help\": null,\n                \"id\": \"security-features-uart-rom-download-mode\",\n                \"name\": \"SECURE_UART_ROM_DL_MODE\",\n                \"title\": \"UART ROM download mode\",\n                \"type\": \"choice\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"security-features\",\n        \"title\": \"Security features\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If set, then the app will be built with the current time/date stamp. It is stored in the app description\\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\\nsame binary image files made from the same source, but at different times.\",\n                \"id\": \"APP_COMPILE_TIME_DATE\",\n                \"name\": \"APP_COMPILE_TIME_DATE\",\n                \"range\": null,\n                \"title\": \"Use time/date stamp for app\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The PROJECT_VER variable from the build system will not affect the firmware image.\\nThis value will not be contained in the esp_app_desc structure.\",\n                \"id\": \"APP_EXCLUDE_PROJECT_VER_VAR\",\n                \"name\": \"APP_EXCLUDE_PROJECT_VER_VAR\",\n                \"range\": null,\n                \"title\": \"Exclude PROJECT_VER from firmware image\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The PROJECT_NAME variable from the build system will not affect the firmware image.\\nThis value will not be contained in the esp_app_desc structure.\",\n                \"id\": \"APP_EXCLUDE_PROJECT_NAME_VAR\",\n                \"name\": \"APP_EXCLUDE_PROJECT_NAME_VAR\",\n                \"range\": null,\n                \"title\": \"Exclude PROJECT_NAME from firmware image\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                        \"help\": \"Project version\",\n                        \"id\": \"APP_PROJECT_VER\",\n                        \"name\": \"APP_PROJECT_VER\",\n                        \"range\": null,\n                        \"title\": \"Project version\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\\nOther ways to set PROJECT_VER will be ignored.\",\n                \"id\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                \"name\": \"APP_PROJECT_VER_FROM_CONFIG\",\n                \"range\": null,\n                \"title\": \"Get the project version from Kconfig\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"At startup, the app will read this many hex characters from the embedded APP ELF SHA-256 hash value\\nand store it in static RAM. This ensures the app ELF SHA-256 value is always available\\nif it needs to be printed by the panic handler code.\\nChanging this value will change the size of a static buffer, in bytes.\",\n                \"id\": \"APP_RETRIEVE_LEN_ELF_SHA\",\n                \"name\": \"APP_RETRIEVE_LEN_ELF_SHA\",\n                \"range\": [\n                    8,\n                    64\n                ],\n                \"title\": \"The length of APP ELF SHA is stored in RAM(chars)\",\n                \"type\": \"int\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"application-manager\",\n        \"title\": \"Application manager\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CRC_LE\",\n        \"name\": \"ESP_ROM_HAS_CRC_LE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CRC_BE\",\n        \"name\": \"ESP_ROM_HAS_CRC_BE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_MZ_CRC32\",\n        \"name\": \"ESP_ROM_HAS_MZ_CRC32\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_JPEG_DECODE\",\n        \"name\": \"ESP_ROM_HAS_JPEG_DECODE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_UART_CLK_IS_XTAL\",\n        \"name\": \"ESP_ROM_UART_CLK_IS_XTAL\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_RETARGETABLE_LOCKING\",\n        \"name\": \"ESP_ROM_HAS_RETARGETABLE_LOCKING\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_USB_SERIAL_DEVICE_NUM\",\n        \"name\": \"ESP_ROM_USB_SERIAL_DEVICE_NUM\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"int\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_ERASE_0_REGION_BUG\",\n        \"name\": \"ESP_ROM_HAS_ERASE_0_REGION_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_GET_CLK_FREQ\",\n        \"name\": \"ESP_ROM_GET_CLK_FREQ\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_HAL_WDT\",\n        \"name\": \"ESP_ROM_HAS_HAL_WDT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\",\n        \"name\": \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_LAYOUT_TABLE\",\n        \"name\": \"ESP_ROM_HAS_LAYOUT_TABLE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_SPI_FLASH\",\n        \"name\": \"ESP_ROM_HAS_SPI_FLASH\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_ETS_PRINTF_BUG\",\n        \"name\": \"ESP_ROM_HAS_ETS_PRINTF_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\",\n        \"name\": \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\",\n        \"name\": \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\",\n        \"name\": \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\",\n        \"name\": \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\",\n        \"name\": \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": null,\n        \"id\": \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\",\n        \"name\": \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\",\n        \"range\": null,\n        \"title\": null,\n        \"type\": \"bool\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Always print ROM logs, this is the default behavior.\",\n                        \"id\": \"BOOT_ROM_LOG_ALWAYS_ON\",\n                        \"name\": \"BOOT_ROM_LOG_ALWAYS_ON\",\n                        \"range\": null,\n                        \"title\": \"Always Log\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Don't print ROM logs.\",\n                        \"id\": \"BOOT_ROM_LOG_ALWAYS_OFF\",\n                        \"name\": \"BOOT_ROM_LOG_ALWAYS_OFF\",\n                        \"range\": null,\n                        \"title\": \"Permanently disable logging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Print ROM logs when GPIO level is high during start up.\\nThe GPIO number is chip dependent,\\ne.g. on ESP32-S2, the control GPIO is GPIO46.\",\n                        \"id\": \"BOOT_ROM_LOG_ON_GPIO_HIGH\",\n                        \"name\": \"BOOT_ROM_LOG_ON_GPIO_HIGH\",\n                        \"range\": null,\n                        \"title\": \"Log on GPIO High\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice BOOT_ROM_LOG_SCHEME>\",\n                        \"help\": \"Print ROM logs when GPIO level is low during start up.\\nThe GPIO number is chip dependent,\\ne.g. on ESP32-S2, the control GPIO is GPIO46.\",\n                        \"id\": \"BOOT_ROM_LOG_ON_GPIO_LOW\",\n                        \"name\": \"BOOT_ROM_LOG_ON_GPIO_LOW\",\n                        \"range\": null,\n                        \"title\": \"Log on GPIO Low\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!IDF_TARGET_ESP32\",\n                \"help\": \"Controls the Boot ROM log behavior.\\nThe rom log behavior can only be changed for once,\\nspecific eFuse bit(s) will be burned at app boot stage.\",\n                \"id\": \"boot-rom-behavior-permanently-change-boot-rom-output\",\n                \"name\": \"BOOT_ROM_LOG_SCHEME\",\n                \"title\": \"Permanently change Boot ROM output\",\n                \"type\": \"choice\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"boot-rom-behavior\",\n        \"title\": \"Boot ROM Behavior\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"The flasher tool sends a precompiled download stub first by default. That stub allows things\\nlike compressed downloads and more. Usually you should not need to disable that feature\",\n                \"id\": \"ESPTOOLPY_NO_STUB\",\n                \"name\": \"ESPTOOLPY_NO_STUB\",\n                \"range\": null,\n                \"title\": \"Disable download stub\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_OCT_FLASH\",\n                \"name\": \"ESPTOOLPY_OCT_FLASH\",\n                \"range\": null,\n                \"title\": \"Enable Octal Flash\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"This config option helps decide whether flash is Quad or Octal, but please note some limitations:\\n\\n1. If the flash chip is an Octal one, even if one of \\\"QIO\\\", \\\"QOUT\\\", \\\"DIO\\\", \\\"DOUT\\\" options is\\n   selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\\n   mode to \\\"OPI\\\" and the sample mode will be STR.\\n2. If the flash chip is a Quad one, even if \\\"OPI\\\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\\n   automatically change the mode to \\\"DIO\\\".\\n3. Please do not rely on this option when you are pretty sure that you are using Octal flash,\\n   please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\\n   in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\\n   If your IRAM space is insufficient and you're aware of your flash type,\\n   disable this option and select corresponding flash type options.\",\n                \"id\": \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\",\n                \"name\": \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\",\n                \"range\": null,\n                \"title\": \"Choose flash mode automatically (please read help)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_QIO\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_QIO\",\n                        \"range\": null,\n                        \"title\": \"QIO\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_QOUT\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_QOUT\",\n                        \"range\": null,\n                        \"title\": \"QOUT\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_DIO\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_DIO\",\n                        \"range\": null,\n                        \"title\": \"DIO\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_DOUT\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_DOUT\",\n                        \"range\": null,\n                        \"title\": \"DOUT\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASHMODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHMODE_OPI\",\n                        \"name\": \"ESPTOOLPY_FLASHMODE_OPI\",\n                        \"range\": null,\n                        \"title\": \"OPI\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Mode the flash chip is flashed in, as well as the default mode for the\\nbinary to run in.\",\n                \"id\": \"serial-flasher-config-flash-spi-mode\",\n                \"name\": \"ESPTOOLPY_FLASHMODE\",\n                \"title\": \"Flash SPI mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASH_SAMPLE_MODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\",\n                        \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\",\n                        \"range\": null,\n                        \"title\": \"STR Mode\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESPTOOLPY_OCT_FLASH && <choice ESPTOOLPY_FLASH_SAMPLE_MODE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\",\n                        \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\",\n                        \"range\": null,\n                        \"title\": \"DTR Mode\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"serial-flasher-config-flash-sampling-mode\",\n                \"name\": \"ESPTOOLPY_FLASH_SAMPLE_MODE\",\n                \"title\": \"Flash Sampling Mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHMODE\",\n                \"name\": \"ESPTOOLPY_FLASHMODE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_120M && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": \"- Flash 120 MHz SDR mode is stable.\\n- Flash 120 MHz DDR mode is an experimental feature, it works when\\n  the temperature is stable.\\n\\n    Risks:\\n        If your chip powers on at a certain temperature, then after the temperature\\n        increases or decreases by approximately 20 Celsius degrees (depending on the\\n        chip), the program will crash randomly.\",\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_120M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_120M\",\n                        \"range\": null,\n                        \"title\": \"120 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_80M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_80M\",\n                        \"range\": null,\n                        \"title\": \"80 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_64M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_64M\",\n                        \"range\": null,\n                        \"title\": \"64 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_60M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_60M\",\n                        \"range\": null,\n                        \"title\": \"60 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_48M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_48M\",\n                        \"range\": null,\n                        \"title\": \"48 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_40M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_40M\",\n                        \"range\": null,\n                        \"title\": \"40 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_32M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_32M\",\n                        \"range\": null,\n                        \"title\": \"32 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_30M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_30M\",\n                        \"range\": null,\n                        \"title\": \"30 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_26M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_26M\",\n                        \"range\": null,\n                        \"title\": \"26 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_24M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_24M\",\n                        \"range\": null,\n                        \"title\": \"24 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_20M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_20M\",\n                        \"range\": null,\n                        \"title\": \"20 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_16M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_16M\",\n                        \"range\": null,\n                        \"title\": \"16 MHz\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && <choice ESPTOOLPY_FLASHFREQ>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHFREQ_15M\",\n                        \"name\": \"ESPTOOLPY_FLASHFREQ_15M\",\n                        \"range\": null,\n                        \"title\": \"15 MHz\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"serial-flasher-config-flash-spi-speed\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ\",\n                \"title\": \"Flash SPI speed\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"This is an invisible item, used to define the targets that defaults to use 80MHz Flash SPI speed.\",\n                \"id\": \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHFREQ\",\n                \"name\": \"ESPTOOLPY_FLASHFREQ\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_1MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_1MB\",\n                        \"range\": null,\n                        \"title\": \"1 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_2MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_2MB\",\n                        \"range\": null,\n                        \"title\": \"2 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_4MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_4MB\",\n                        \"range\": null,\n                        \"title\": \"4 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_8MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_8MB\",\n                        \"range\": null,\n                        \"title\": \"8 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_16MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_16MB\",\n                        \"range\": null,\n                        \"title\": \"16 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_32MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_32MB\",\n                        \"range\": null,\n                        \"title\": \"32 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_64MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_64MB\",\n                        \"range\": null,\n                        \"title\": \"64 MB\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_FLASHSIZE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_FLASHSIZE_128MB\",\n                        \"name\": \"ESPTOOLPY_FLASHSIZE_128MB\",\n                        \"range\": null,\n                        \"title\": \"128 MB\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"SPI flash size, in megabytes\",\n                \"id\": \"serial-flasher-config-flash-size\",\n                \"name\": \"ESPTOOLPY_FLASHSIZE\",\n                \"title\": \"Flash size\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_FLASHSIZE\",\n                \"name\": \"ESPTOOLPY_FLASHSIZE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"If this option is set, flashing the project will automatically detect\\nthe flash size of the target chip and update the bootloader image\\nbefore it is flashed.\\n\\nEnabling this option turns off the image protection against corruption\\nby a SHA256 digest. Updating the bootloader image before flashing would\\ninvalidate the digest.\",\n                \"id\": \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\",\n                \"name\": \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\",\n                \"range\": null,\n                \"title\": \"Detect flash size when flashing bootloader\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_BEFORE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_BEFORE_RESET\",\n                        \"name\": \"ESPTOOLPY_BEFORE_RESET\",\n                        \"range\": null,\n                        \"title\": \"Reset to bootloader\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_BEFORE>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_BEFORE_NORESET\",\n                        \"name\": \"ESPTOOLPY_BEFORE_NORESET\",\n                        \"range\": null,\n                        \"title\": \"No reset\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Configure whether esptool.py should reset the ESP32 before flashing.\\n\\nAutomatic resetting depends on the RTS & DTR signals being\\nwired from the serial port to the ESP32. Most USB development\\nboards do this internally.\",\n                \"id\": \"serial-flasher-config-before-flashing\",\n                \"name\": \"ESPTOOLPY_BEFORE\",\n                \"title\": \"Before flashing\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_BEFORE\",\n                \"name\": \"ESPTOOLPY_BEFORE\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_AFTER>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_AFTER_RESET\",\n                        \"name\": \"ESPTOOLPY_AFTER_RESET\",\n                        \"range\": null,\n                        \"title\": \"Reset after flashing\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice ESPTOOLPY_AFTER>\",\n                        \"help\": null,\n                        \"id\": \"ESPTOOLPY_AFTER_NORESET\",\n                        \"name\": \"ESPTOOLPY_AFTER_NORESET\",\n                        \"range\": null,\n                        \"title\": \"Stay in bootloader\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": \"Configure whether esptool.py should reset the ESP32 after flashing.\\n\\nAutomatic resetting depends on the RTS & DTR signals being\\nwired from the serial port to the ESP32. Most USB development\\nboards do this internally.\",\n                \"id\": \"serial-flasher-config-after-flashing\",\n                \"name\": \"ESPTOOLPY_AFTER\",\n                \"title\": \"After flashing\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_AFTER\",\n                \"name\": \"ESPTOOLPY_AFTER\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"help\": null,\n                \"id\": \"ESPTOOLPY_MONITOR_BAUD\",\n                \"name\": \"ESPTOOLPY_MONITOR_BAUD\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            }\n        ],\n        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n        \"id\": \"serial-flasher-config\",\n        \"title\": \"Serial flasher config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is the default partition table, designed to fit into a 2MB or\\nlarger flash with a single 1MB app partition.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp.csv\\n\\nThis partition table is not suitable for an app that needs OTA\\n(over the air update) capability.\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP\",\n                        \"range\": null,\n                        \"title\": \"Single factory app, no OTA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the default partition table, that expands\\nthe 1MB app partition size to 1.5MB to fit more code.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_large.csv\\n\\nThis partition table is not suitable for an app that needs OTA\\n(over the air update) capability.\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_LARGE\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_LARGE\",\n                        \"range\": null,\n                        \"title\": \"Single factory app (large), no OTA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a basic OTA-enabled partition table with a factory app\\npartition plus two OTA app partitions. All are 1MB, so this\\npartition table requires 4MB or larger flash size.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_two_ota.csv\",\n                        \"id\": \"PARTITION_TABLE_TWO_OTA\",\n                        \"name\": \"PARTITION_TABLE_TWO_OTA\",\n                        \"range\": null,\n                        \"title\": \"Factory app, two OTA definitions\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"Specify the path to the partition table CSV to use for your project.\\n\\nConsult the Partition Table section in the ESP-IDF Programmers Guide\\nfor more information.\",\n                        \"id\": \"PARTITION_TABLE_CUSTOM\",\n                        \"name\": \"PARTITION_TABLE_CUSTOM\",\n                        \"range\": null,\n                        \"title\": \"Custom partition table CSV\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the default \\\"Single factory app, no OTA\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS\",\n                        \"range\": null,\n                        \"title\": \"Single factory app, no OTA, encrypted NVS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the \\\"Single factory app (large), no OTA\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS\",\n                        \"name\": \"PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS\",\n                        \"range\": null,\n                        \"title\": \"Single factory app (large), no OTA, encrypted NVS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_ENCRYPTION && <choice PARTITION_TABLE_TYPE>\",\n                        \"help\": \"This is a variation of the \\\"Factory app, two OTA definitions\\\" partition table\\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\\nin the ESP-IDF Programmers Guide for more information.\\n\\nThe corresponding CSV file in the IDF directory is\\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv\",\n                        \"id\": \"PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS\",\n                        \"name\": \"PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS\",\n                        \"range\": null,\n                        \"title\": \"Factory app, two OTA definitions, encrypted NVS\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"The partition table to flash to the ESP32. The partition table\\ndetermines where apps, data and other resources are expected to\\nbe found.\\n\\nThe predefined partition table CSV descriptions can be found\\nin the components/partition_table directory. These are mostly intended\\nfor example and development use, it's expect that for production use you\\nwill copy one of these CSV files and create a custom partition CSV for\\nyour application.\",\n                \"id\": \"partition-table-partition-table\",\n                \"name\": \"PARTITION_TABLE_TYPE\",\n                \"title\": \"Partition Table\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Name of the custom partition CSV filename. This path is evaluated\\nrelative to the project root directory.\",\n                \"id\": \"PARTITION_TABLE_CUSTOM_FILENAME\",\n                \"name\": \"PARTITION_TABLE_CUSTOM_FILENAME\",\n                \"range\": null,\n                \"title\": \"Custom partition CSV file\",\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"PARTITION_TABLE_FILENAME\",\n                \"name\": \"PARTITION_TABLE_FILENAME\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"string\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The address of partition table (by default 0x8000).\\nAllows you to move the partition table, it gives more space for the bootloader.\\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\\n\\nThis number should be a multiple of 0x1000.\\n\\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\\npartition offsets blank in the CSV file.\",\n                \"id\": \"PARTITION_TABLE_OFFSET\",\n                \"name\": \"PARTITION_TABLE_OFFSET\",\n                \"range\": null,\n                \"title\": \"Offset of partition table\",\n                \"type\": \"hex\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX\",\n                \"help\": \"Generate an MD5 checksum for the partition table for protecting the\\nintegrity of the table. The generation should be turned off for legacy\\nbootloaders which cannot recognize the MD5 checksum in the partition\\ntable.\",\n                \"id\": \"PARTITION_TABLE_MD5\",\n                \"name\": \"PARTITION_TABLE_MD5\",\n                \"range\": null,\n                \"title\": \"Generate an MD5 checksum for the partition table\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"partition-table\",\n        \"title\": \"Partition Table\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"GPIO_RANGE_MAX\",\n                \"name\": \"GPIO_RANGE_MAX\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The width resolution of the screen.\",\n                \"id\": \"WIDTH\",\n                \"name\": \"WIDTH\",\n                \"range\": [\n                    0,\n                    999\n                ],\n                \"title\": \"SCREEN WIDTH\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"The height resolution of the screen.\",\n                \"id\": \"HEIGHT\",\n                \"name\": \"HEIGHT\",\n                \"range\": [\n                    0,\n                    999\n                ],\n                \"title\": \"SCREEN HEIGHT\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"When your TFT have offset(X), set it.\",\n                \"id\": \"OFFSETX\",\n                \"name\": \"OFFSETX\",\n                \"range\": [\n                    0,\n                    99\n                ],\n                \"title\": \"GRAM X OFFSET\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"When your TFT have offset(Y), set it.\",\n                \"id\": \"OFFSETY\",\n                \"name\": \"OFFSETY\",\n                \"range\": [\n                    0,\n                    99\n                ],\n                \"title\": \"GRAM Y OFFSET\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to SPI MOSI.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to MOSI.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"MOSI_GPIO\",\n                \"name\": \"MOSI_GPIO\",\n                \"range\": [\n                    0,\n                    48\n                ],\n                \"title\": \"MOSI GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to SPI SCLK.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to SCLK.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"SCLK_GPIO\",\n                \"name\": \"SCLK_GPIO\",\n                \"range\": [\n                    0,\n                    48\n                ],\n                \"title\": \"SCLK GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to SPI CS.\\nWhen it is -1, CS isn't performed.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to CS.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"CS_GPIO\",\n                \"name\": \"CS_GPIO\",\n                \"range\": [\n                    -1,\n                    48\n                ],\n                \"title\": \"CS GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to SPI DC.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to DC.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"DC_GPIO\",\n                \"name\": \"DC_GPIO\",\n                \"range\": [\n                    0,\n                    48\n                ],\n                \"title\": \"DC GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to RESET.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to RESET.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"RESET_GPIO\",\n                \"name\": \"RESET_GPIO\",\n                \"range\": [\n                    0,\n                    48\n                ],\n                \"title\": \"RESET GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"GPIO number (IOxx) to BACKLIGHT.\\nWhen it is -1, BACKLIGHT isn't performed.\\nSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to BACKLIGHT.\\nOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\\nOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\",\n                \"id\": \"BL_GPIO\",\n                \"name\": \"BL_GPIO\",\n                \"range\": [\n                    -1,\n                    48\n                ],\n                \"title\": \"BACKLIGHT GPIO number\",\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Enable Display Inversion.\",\n                \"id\": \"INVERSION\",\n                \"name\": \"INVERSION\",\n                \"range\": null,\n                \"title\": \"Enable Display Inversion\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice SPI_HOST>\",\n                        \"help\": \"Use SPI2_HOST. This is also called HSPI_HOST.\",\n                        \"id\": \"SPI2_HOST\",\n                        \"name\": \"SPI2_HOST\",\n                        \"range\": null,\n                        \"title\": \"SPI2_HOST\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && <choice SPI_HOST>\",\n                        \"help\": \"USE SPI3_HOST. This is also called VSPI_HOST\",\n                        \"id\": \"SPI3_HOST\",\n                        \"name\": \"SPI3_HOST\",\n                        \"range\": null,\n                        \"title\": \"SPI3_HOST\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Select SPI peripheral that controls this bus.\",\n                \"id\": \"st7789-configuration-spi-peripheral-that-controls-this-bus\",\n                \"name\": \"SPI_HOST\",\n                \"title\": \"SPI peripheral that controls this bus\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"!IDF_TARGET_ESP32C2\",\n                \"help\": \"Enable Frame Buffer.\",\n                \"id\": \"FRAME_BUFFER\",\n                \"name\": \"FRAME_BUFFER\",\n                \"range\": null,\n                \"title\": \"Enable Frame Buffer\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"st7789-configuration\",\n        \"title\": \"ST7789 Configuration\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_DEFAULT\",\n                        \"name\": \"COMPILER_OPTIMIZATION_DEFAULT\",\n                        \"range\": null,\n                        \"title\": \"Debug (-Og)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_SIZE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Optimize for size (-Os)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_PERF\",\n                        \"name\": \"COMPILER_OPTIMIZATION_PERF\",\n                        \"range\": null,\n                        \"title\": \"Optimize for performance (-O2)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_OPTIMIZATION_NONE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_NONE\",\n                        \"range\": null,\n                        \"title\": \"Debug without optimization (-O0)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"This option sets compiler optimization level (gcc -O argument) for the app.\\n\\n- The \\\"Default\\\" setting will add the -0g flag to CFLAGS.\\n- The \\\"Size\\\" setting will add the -0s flag to CFLAGS.\\n- The \\\"Performance\\\" setting will add the -O2 flag to CFLAGS.\\n- The \\\"None\\\" setting will add the -O0 flag to CFLAGS.\\n\\nThe \\\"Size\\\" setting cause the compiled code to be smaller and faster, but\\nmay lead to difficulties of correlating code addresses to source file\\nlines when debugging.\\n\\nThe \\\"Performance\\\" setting causes the compiled code to be larger and faster,\\nbut will be easier to correlated code addresses to source file lines.\\n\\n\\\"None\\\" with -O0 produces compiled code without optimization.\\n\\nNote that custom optimization levels may be unsupported.\\n\\nCompiler optimization for the IDF bootloader is set separately,\\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.\",\n                \"id\": \"compiler-options-optimization-level\",\n                \"name\": \"COMPILER_OPTIMIZATION\",\n                \"title\": \"Optimization Level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"Enable assertions. Assertion content and line number will be printed on failure.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"Enable silent assertions. Failed assertions will abort(), user needs to\\nuse the aborting address to find the line number with the failed assertion.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\",\n                        \"range\": null,\n                        \"title\": \"Silent (saves code size)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL>\",\n                        \"help\": \"If assertions are disabled, -DNDEBUG is added to CPPFLAGS.\",\n                        \"id\": \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\",\n                        \"name\": \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\",\n                        \"range\": null,\n                        \"title\": \"Disabled (sets -DNDEBUG)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Assertions can be:\\n\\n- Enabled. Failure will print verbose assertion details. This is the default.\\n\\n- Set to \\\"silent\\\" to save code size (failed assertions will abort() but user\\n  needs to use the aborting address to find the line number with the failed assertion.)\\n\\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\\n  to CPPFLAGS in this case.\",\n                \"id\": \"compiler-options-assertion-level\",\n                \"name\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"title\": \"Assertion level\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_FLOAT_LIB_FROM>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_FLOAT_LIB_FROM_GCCLIB\",\n                        \"name\": \"COMPILER_FLOAT_LIB_FROM_GCCLIB\",\n                        \"range\": null,\n                        \"title\": \"libgcc\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_RVFPLIB && <choice COMPILER_FLOAT_LIB_FROM>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_FLOAT_LIB_FROM_RVFPLIB\",\n                        \"name\": \"COMPILER_FLOAT_LIB_FROM_RVFPLIB\",\n                        \"range\": null,\n                        \"title\": \"librvfp\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"In the soft-fp part of libgcc, riscv version is written in C,\\nand handles all edge cases in IEEE754, which makes it larger\\nand performance is slow.\\n\\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\\ninteger processors, for single and double-precision FP.\\nRVfplib is \\\"fast\\\", but it has a few exceptions from IEEE 754 compliance.\",\n                \"id\": \"compiler-options-compiler-float-lib-source\",\n                \"name\": \"COMPILER_FLOAT_LIB_FROM\",\n                \"title\": \"Compiler float lib source\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": null,\n                \"id\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"name\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"int\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, the error messages will be discarded in following check macros:\\n- ESP_RETURN_ON_ERROR\\n- ESP_EXIT_ON_ERROR\\n- ESP_RETURN_ON_FALSE\\n- ESP_EXIT_ON_FALSE\",\n                \"id\": \"COMPILER_OPTIMIZATION_CHECKS_SILENT\",\n                \"name\": \"COMPILER_OPTIMIZATION_CHECKS_SILENT\",\n                \"range\": null,\n                \"title\": \"Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\\nwith paths relative to the placeholder string \\\"IDF\\\", and convert paths inside the\\nproject directory to relative paths.\\n\\nThis allows building the project with assertions or other code that embeds file paths,\\nwithout the binary containing the exact path to the IDF or project directories.\\n\\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\\n-ffile-prefix-map arguments.\",\n                \"id\": \"COMPILER_HIDE_PATHS_MACROS\",\n                \"is_menuconfig\": true,\n                \"name\": \"COMPILER_HIDE_PATHS_MACROS\",\n                \"range\": null,\n                \"title\": \"Replace ESP-IDF and project paths in binaries\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"COMPILER_CXX_EXCEPTIONS\",\n                        \"help\": \"Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\\nmemory for thrown exceptions when there is not enough memory on the heap.\",\n                        \"id\": \"COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE\",\n                        \"name\": \"COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Emergency Pool Size\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Enabling this option compiles all IDF C++ files with exception support enabled.\\n\\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\\nwhich throws an exception will abort instead.\\n\\nEnabling this option currently adds an additional ~500 bytes of heap overhead\\nwhen an exception is thrown in user code for the first time.\",\n                \"id\": \"COMPILER_CXX_EXCEPTIONS\",\n                \"is_menuconfig\": true,\n                \"name\": \"COMPILER_CXX_EXCEPTIONS\",\n                \"range\": null,\n                \"title\": \"Enable C++ exceptions\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Enabling this option compiles all C++ files with RTTI support enabled.\\nThis increases binary size (typically by tens of kB) but allows using\\ndynamic_cast conversion and typeid operator.\",\n                \"id\": \"COMPILER_CXX_RTTI\",\n                \"name\": \"COMPILER_CXX_RTTI\",\n                \"range\": null,\n                \"title\": \"Enable C++ run-time type info (RTTI)\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_NONE\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_NONE\",\n                        \"range\": null,\n                        \"title\": \"None\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_NORM\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_NORM\",\n                        \"range\": null,\n                        \"title\": \"Normal\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_STRONG\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_STRONG\",\n                        \"range\": null,\n                        \"title\": \"Strong\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"<choice COMPILER_STACK_CHECK_MODE>\",\n                        \"help\": null,\n                        \"id\": \"COMPILER_STACK_CHECK_MODE_ALL\",\n                        \"name\": \"COMPILER_STACK_CHECK_MODE_ALL\",\n                        \"range\": null,\n                        \"title\": \"Overall\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"help\": \"Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\\nThe guards are initialized when a function is entered and then checked when the function exits.\\nIf a guard check fails, program is halted. Protection has the following modes:\\n\\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\\n  buffers larger than 8 bytes are protected.\\n\\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\\n  to be protected -- those that have local array definitions, or have references to local frame\\n  addresses.\\n\\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\\n\\nModes have the following impact on code performance and coverage:\\n\\n- performance: NORMAL > STRONG > OVERALL\\n\\n- coverage: NORMAL < STRONG < OVERALL\\n\\nThe performance impact includes increasing the amount of stack memory required for each task.\",\n                \"id\": \"compiler-options-stack-smashing-protection-mode\",\n                \"name\": \"COMPILER_STACK_CHECK_MODE\",\n                \"title\": \"Stack smashing protection mode\",\n                \"type\": \"choice\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Stack smashing protection.\",\n                \"id\": \"COMPILER_STACK_CHECK\",\n                \"name\": \"COMPILER_STACK_CHECK\",\n                \"range\": null,\n                \"title\": null,\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Adds -Wwrite-strings flag for the C/C++ compilers.\\n\\nFor C, this gives string constants the type ``const char[]`` so that\\ncopying the address of one into a non-const ``char *`` pointer\\nproduces a warning. This warning helps to find at compile time code\\nthat tries to write into a string constant.\\n\\nFor C++, this warns about the deprecated conversion from string\\nliterals to ``char *``.\",\n                \"id\": \"COMPILER_WARN_WRITE_STRINGS\",\n                \"name\": \"COMPILER_WARN_WRITE_STRINGS\",\n                \"range\": null,\n                \"title\": \"Enable -Wwrite-strings warning flag\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": \"IDF_TARGET_ARCH_RISCV\",\n                \"help\": \"Adds -msave-restore to C/C++ compilation flags.\\n\\nWhen this flag is enabled, compiler will call library functions to\\nsave/restore registers in function prologues/epilogues. This results\\nin lower overall code size, at the expense of slightly reduced performance.\\n\\nThis option can be enabled for RISC-V targets only.\",\n                \"id\": \"COMPILER_SAVE_RESTORE_LIBCALLS\",\n                \"name\": \"COMPILER_SAVE_RESTORE_LIBCALLS\",\n                \"range\": null,\n                \"title\": \"Enable -msave-restore flag to reduce code size\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\\nGCC 11.\",\n                \"id\": \"COMPILER_DISABLE_GCC12_WARNINGS\",\n                \"name\": \"COMPILER_DISABLE_GCC12_WARNINGS\",\n                \"range\": null,\n                \"title\": \"Disable new warnings introduced in GCC 12\",\n                \"type\": \"bool\"\n            },\n            {\n                \"children\": [],\n                \"depends_on\": null,\n                \"help\": \"If enabled, RTL files will be produced during compilation. These files\\ncan be used by other tools, for example to calculate call graphs.\",\n                \"id\": \"COMPILER_DUMP_RTL_FILES\",\n                \"name\": \"COMPILER_DUMP_RTL_FILES\",\n                \"range\": null,\n                \"title\": \"Dump RTL files during compilation\",\n                \"type\": \"bool\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"compiler-options\",\n        \"title\": \"Compiler options\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice APPTRACE_DESTINATION1>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_JTAG\",\n                                \"name\": \"APPTRACE_DEST_JTAG\",\n                                \"range\": null,\n                                \"title\": \"JTAG\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice APPTRACE_DESTINATION1>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_NONE\",\n                                \"name\": \"APPTRACE_DEST_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select destination for application trace: JTAG or none (to disable).\",\n                        \"id\": \"component-config-application-level-tracing-data-destination-1\",\n                        \"name\": \"APPTRACE_DESTINATION1\",\n                        \"title\": \"Data Destination 1\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"APPTRACE_DEST_UART\",\n                        \"name\": \"APPTRACE_DEST_UART\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"APPTRACE_DEST_UART_NOUSB\",\n                        \"name\": \"APPTRACE_DEST_UART_NOUSB\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_CONSOLE_UART_NUM != 0 && <choice APPTRACE_DESTINATION2>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_UART0\",\n                                \"name\": \"APPTRACE_DEST_UART0\",\n                                \"range\": null,\n                                \"title\": \"UART0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_CONSOLE_UART_NUM != 1 && <choice APPTRACE_DESTINATION2>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_UART1\",\n                                \"name\": \"APPTRACE_DEST_UART1\",\n                                \"range\": null,\n                                \"title\": \"UART1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_CONSOLE_UART_NUM != 2 && SOC_UART_NUM > 2 && <choice APPTRACE_DESTINATION2>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_UART2\",\n                                \"name\": \"APPTRACE_DEST_UART2\",\n                                \"range\": null,\n                                \"title\": \"UART2\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ESP_CONSOLE_USB_CDC && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && !USB_ENABLED && <choice APPTRACE_DESTINATION2>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_USB_CDC\",\n                                \"name\": \"APPTRACE_DEST_USB_CDC\",\n                                \"range\": null,\n                                \"title\": \"USB_CDC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice APPTRACE_DESTINATION2>\",\n                                \"help\": null,\n                                \"id\": \"APPTRACE_DEST_UART_NONE\",\n                                \"name\": \"APPTRACE_DEST_UART_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select destination for application trace: UART(XX) or none (to disable).\",\n                        \"id\": \"component-config-application-level-tracing-data-destination-2\",\n                        \"name\": \"APPTRACE_DESTINATION2\",\n                        \"title\": \"Data Destination 2\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART_NOUSB\",\n                        \"help\": \"This GPIO is used for UART TX pin.\",\n                        \"id\": \"APPTRACE_UART_TX_GPIO\",\n                        \"name\": \"APPTRACE_UART_TX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART TX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART_NOUSB\",\n                        \"help\": \"This GPIO is used for UART RX pin.\",\n                        \"id\": \"APPTRACE_UART_RX_GPIO\",\n                        \"name\": \"APPTRACE_UART_RX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART RX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART\",\n                        \"help\": \"This baud rate is used for UART.\\n\\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\\naccurate.\",\n                        \"id\": \"APPTRACE_UART_BAUDRATE\",\n                        \"name\": \"APPTRACE_UART_BAUDRATE\",\n                        \"range\": null,\n                        \"title\": \"UART baud rate\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART\",\n                        \"help\": \"Size of the UART input ring buffer.\\nThis size related to the baudrate, system tick frequency and amount of data to transfer.\\nThe data placed to this buffer before sent out to the interface.\",\n                        \"id\": \"APPTRACE_UART_RX_BUFF_SIZE\",\n                        \"name\": \"APPTRACE_UART_RX_BUFF_SIZE\",\n                        \"range\": null,\n                        \"title\": \"UART RX ring buffer size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART\",\n                        \"help\": \"Size of the UART output ring buffer.\\nThis size related to the baudrate, system tick frequency and amount of data to transfer.\",\n                        \"id\": \"APPTRACE_UART_TX_BUFF_SIZE\",\n                        \"name\": \"APPTRACE_UART_TX_BUFF_SIZE\",\n                        \"range\": null,\n                        \"title\": \"UART TX ring buffer size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_DEST_UART\",\n                        \"help\": \"Maximum size of the single message to transfer.\",\n                        \"id\": \"APPTRACE_UART_TX_MSG_SIZE\",\n                        \"name\": \"APPTRACE_UART_TX_MSG_SIZE\",\n                        \"range\": null,\n                        \"title\": \"UART TX message size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"UART task priority. In case of high events rate,\\nthis parameter could be changed up to (configMAX_PRIORITIES-1).\",\n                        \"id\": \"APPTRACE_UART_TASK_PRIO\",\n                        \"name\": \"APPTRACE_UART_TASK_PRIO\",\n                        \"range\": [\n                            1,\n                            32\n                        ],\n                        \"title\": \"UART Task Priority\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX\",\n                        \"help\": \"Enables/disable TRAX tracing HW.\",\n                        \"id\": \"APPTRACE_DEST_TRAX\",\n                        \"name\": \"APPTRACE_DEST_TRAX\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables/disable swapping memory buffers tracing protocol.\",\n                        \"id\": \"APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE\",\n                        \"name\": \"APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables/disable application tracing module.\",\n                        \"id\": \"APPTRACE_ENABLE\",\n                        \"name\": \"APPTRACE_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables/disable application tracing module internal sync lock.\",\n                        \"id\": \"APPTRACE_LOCK_ENABLE\",\n                        \"name\": \"APPTRACE_LOCK_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_ENABLE\",\n                        \"help\": \"Timeout for flushing last trace data to host in case of panic. In ms.\\nUse -1 to disable timeout and wait forever.\",\n                        \"id\": \"APPTRACE_ONPANIC_HOST_FLUSH_TMO\",\n                        \"name\": \"APPTRACE_ONPANIC_HOST_FLUSH_TMO\",\n                        \"range\": null,\n                        \"title\": \"Timeout for flushing last trace data to host on panic\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_ENABLE\",\n                        \"help\": \"Threshold for flushing last trace data to host on panic in post-mortem mode.\\nThis is minimal amount of data needed to perform flush. In bytes.\",\n                        \"id\": \"APPTRACE_POSTMORTEM_FLUSH_THRESH\",\n                        \"name\": \"APPTRACE_POSTMORTEM_FLUSH_THRESH\",\n                        \"range\": null,\n                        \"title\": \"Threshold for flushing last trace data to host on panic\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE && !APPTRACE_DEST_TRAX\",\n                        \"help\": \"Size of the memory buffer for trace data in bytes.\",\n                        \"id\": \"APPTRACE_BUF_SIZE\",\n                        \"name\": \"APPTRACE_BUF_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size of the apptrace buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE\",\n                        \"help\": \"Size of the buffer for events in bytes. It is useful for buffering events from\\nthe time critical code (scheduler, ISRs etc). If this parameter is 0 then\\nevents will be discarded when main HW buffer is full.\",\n                        \"id\": \"APPTRACE_PENDING_DATA_SIZE_MAX\",\n                        \"name\": \"APPTRACE_PENDING_DATA_SIZE_MAX\",\n                        \"range\": null,\n                        \"title\": \"Size of the pending data buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"!PM_ENABLE && !APPTRACE_DEST_NONE && <choice APPTRACE_SV_DEST>\",\n                                                \"help\": \"Send SEGGER SystemView events through JTAG interface.\",\n                                                \"id\": \"APPTRACE_SV_DEST_JTAG\",\n                                                \"name\": \"APPTRACE_SV_DEST_JTAG\",\n                                                \"range\": null,\n                                                \"title\": \"Data destination JTAG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"APPTRACE_DEST_UART && <choice APPTRACE_SV_DEST>\",\n                                                \"help\": \"Send SEGGER SystemView events through UART interface.\",\n                                                \"id\": \"APPTRACE_SV_DEST_UART\",\n                                                \"name\": \"APPTRACE_SV_DEST_UART\",\n                                                \"range\": null,\n                                                \"title\": \"Data destination UART\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                        \"help\": \"SystemView witt transfer data trough defined interface.\",\n                                        \"id\": \"component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination\",\n                                        \"name\": \"APPTRACE_SV_DEST\",\n                                        \"title\": \"SystemView destination\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"APPTRACE_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables supporrt for SEGGER SystemView tracing functionality.\",\n                                \"id\": \"APPTRACE_SV_ENABLE\",\n                                \"name\": \"APPTRACE_SV_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"SystemView Tracing Enable\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice APPTRACE_SV_CPU>\",\n                                        \"help\": \"Send SEGGER SystemView events for Pro CPU.\",\n                                        \"id\": \"APPTRACE_SV_DEST_CPU_0\",\n                                        \"name\": \"APPTRACE_SV_DEST_CPU_0\",\n                                        \"range\": null,\n                                        \"title\": \"CPU0\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice APPTRACE_SV_CPU>\",\n                                        \"help\": \"Send SEGGER SystemView events for App CPU.\",\n                                        \"id\": \"APPTRACE_SV_DEST_CPU_1\",\n                                        \"name\": \"APPTRACE_SV_DEST_CPU_1\",\n                                        \"range\": null,\n                                        \"title\": \"CPU1\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"APPTRACE_SV_DEST_UART && !FREERTOS_UNICORE && APPTRACE_ENABLE\",\n                                \"help\": \"Define the CPU to trace by SystemView.\",\n                                \"id\": \"component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace\",\n                                \"name\": \"APPTRACE_SV_CPU\",\n                                \"title\": \"CPU to trace\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_UNICORE && !PM_ENABLE && !IDF_TARGET_ESP32C3 && <choice APPTRACE_SV_TS_SOURCE>\",\n                                        \"help\": null,\n                                        \"id\": \"APPTRACE_SV_TS_SOURCE_CCOUNT\",\n                                        \"name\": \"APPTRACE_SV_TS_SOURCE_CCOUNT\",\n                                        \"range\": null,\n                                        \"title\": \"CPU cycle counter (CCOUNT)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"!PM_ENABLE && !IDF_TARGET_ESP32C3 && <choice APPTRACE_SV_TS_SOURCE>\",\n                                        \"help\": null,\n                                        \"id\": \"APPTRACE_SV_TS_SOURCE_GPTIMER\",\n                                        \"name\": \"APPTRACE_SV_TS_SOURCE_GPTIMER\",\n                                        \"range\": null,\n                                        \"title\": \"General Purpose Timer (Timer Group)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice APPTRACE_SV_TS_SOURCE>\",\n                                        \"help\": null,\n                                        \"id\": \"APPTRACE_SV_TS_SOURCE_ESP_TIMER\",\n                                        \"name\": \"APPTRACE_SV_TS_SOURCE_ESP_TIMER\",\n                                        \"range\": null,\n                                        \"title\": \"esp_timer high resolution timer\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"SystemView needs to use a hardware timer as the source of timestamps\\nwhen tracing. This option selects the timer for it.\",\n                                \"id\": \"component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source\",\n                                \"name\": \"APPTRACE_SV_TS_SOURCE\",\n                                \"title\": \"Timer to use as timestamp source\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Configures maximum supported tasks in sysview debug\",\n                                \"id\": \"APPTRACE_SV_MAX_TASKS\",\n                                \"name\": \"APPTRACE_SV_MAX_TASKS\",\n                                \"range\": null,\n                                \"title\": \"Maximum supported tasks\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Configures timeout (in us) to wait for free space in trace buffer.\\nSet to -1 to wait forever and avoid lost events.\",\n                                \"id\": \"APPTRACE_SV_BUF_WAIT_TMO\",\n                                \"name\": \"APPTRACE_SV_BUF_WAIT_TMO\",\n                                \"range\": null,\n                                \"title\": \"Trace buffer wait timeout\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Trace Buffer Overflow\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_OVERFLOW_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_OVERFLOW_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Trace Buffer Overflow Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"ISR Enter\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_ISR_ENTER_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_ISR_ENTER_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"ISR Enter Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"ISR Exit\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_ISR_EXIT_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_ISR_EXIT_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"ISR Exit Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"ISR to Scheduler\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"ISR Exit to Scheduler Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Start Execution\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Start Execution Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Stop Execution\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Stop Execution Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Start Ready State\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_START_READY_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_START_READY_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Start Ready State Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Stop Ready State\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Stop Ready State Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Create\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_CREATE_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_CREATE_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Create Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Task Terminate\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Task Terminate Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"System Idle\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_IDLE_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_IDLE_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"System Idle Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Timer Enter\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TIMER_ENTER_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TIMER_ENTER_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Timer Enter Event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_SV_ENABLE && APPTRACE_ENABLE\",\n                                \"help\": \"Enables \\\"Timer Exit\\\" event.\",\n                                \"id\": \"APPTRACE_SV_EVT_TIMER_EXIT_ENABLE\",\n                                \"name\": \"APPTRACE_SV_EVT_TIMER_EXIT_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Timer Exit Event\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"APPTRACE_ENABLE\",\n                        \"id\": \"component-config-application-level-tracing-freertos-systemview-tracing\",\n                        \"title\": \"FreeRTOS SystemView Tracing\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"APPTRACE_GCOV_ENABLE\",\n                                \"help\": \"Configures stack size of Gcov dump task\",\n                                \"id\": \"APPTRACE_GCOV_DUMP_TASK_STACK_SIZE\",\n                                \"name\": \"APPTRACE_GCOV_DUMP_TASK_STACK_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Gcov dump task stack size\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"APPTRACE_ENABLE && !APPTRACE_SV_ENABLE\",\n                        \"help\": \"Enables support for GCOV data transfer to host.\",\n                        \"id\": \"APPTRACE_GCOV_ENABLE\",\n                        \"name\": \"APPTRACE_GCOV_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"GCOV to Host Enable\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-application-level-tracing\",\n                \"title\": \"Application Level Tracing\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_HOST>\",\n                                        \"help\": \"This option is recommended for classic Bluetooth or for dual-mode\\nusecases\",\n                                        \"id\": \"BT_BLUEDROID_ENABLED\",\n                                        \"name\": \"BT_BLUEDROID_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"Bluedroid - Dual-mode\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_HOST>\",\n                                        \"help\": \"This option is recommended for BLE only usecases to save on memory\",\n                                        \"id\": \"BT_NIMBLE_ENABLED\",\n                                        \"name\": \"BT_NIMBLE_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"NimBLE - BLE only\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_HOST>\",\n                                        \"help\": \"This option is recommended when you want to communicate directly with the\\ncontroller (without any host) or when you are using any other host stack\\nnot supported by Espressif (not mentioned here).\",\n                                        \"id\": \"BT_CONTROLLER_ONLY\",\n                                        \"name\": \"BT_CONTROLLER_ONLY\",\n                                        \"range\": null,\n                                        \"title\": \"Disabled\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_ENABLED\",\n                                \"help\": \"This helps to choose Bluetooth host stack\",\n                                \"id\": \"component-config-bluetooth-bluetooth-host\",\n                                \"name\": \"BT_HOST\",\n                                \"title\": \"Host\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CONTROLLER>\",\n                                        \"help\": \"This option is recommended for Bluetooth controller usecases\",\n                                        \"id\": \"BT_CONTROLLER_ENABLED\",\n                                        \"name\": \"BT_CONTROLLER_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"Enabled\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CONTROLLER>\",\n                                        \"help\": \"This option is recommended for Bluetooth Host only usecases\",\n                                        \"id\": \"BT_CONTROLLER_DISABLED\",\n                                        \"name\": \"BT_CONTROLLER_DISABLED\",\n                                        \"range\": null,\n                                        \"title\": \"Disabled\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_ENABLED\",\n                                \"help\": \"This helps to choose Bluetooth controller stack\",\n                                \"id\": \"component-config-bluetooth-bluetooth-controller\",\n                                \"name\": \"BT_CONTROLLER\",\n                                \"title\": \"Controller\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_BT_SUPPORTED && !APP_NO_BLOBS\",\n                        \"help\": \"Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.\",\n                        \"id\": \"BT_ENABLED\",\n                        \"name\": \"BT_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Bluetooth\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This select btc task stack size\",\n                                \"id\": \"BT_BTC_TASK_STACK_SIZE\",\n                                \"name\": \"BT_BTC_TASK_STACK_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Bluetooth event (callback to application) task stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_BLUEDROID_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_BLUEDROID_PINNED_TO_CORE_0\",\n                                        \"name\": \"BT_BLUEDROID_PINNED_TO_CORE_0\",\n                                        \"range\": null,\n                                        \"title\": \"Core 0 (PRO CPU)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"!FREERTOS_UNICORE && <choice BT_BLUEDROID_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_BLUEDROID_PINNED_TO_CORE_1\",\n                                        \"name\": \"BT_BLUEDROID_PINNED_TO_CORE_1\",\n                                        \"range\": null,\n                                        \"title\": \"Core 1 (APP CPU)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && !FREERTOS_UNICORE && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Which the cpu core to run Bluedroid. Can choose core0 and core1.\\nCan not specify no-affinity.\",\n                                \"id\": \"component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run\",\n                                \"name\": \"BT_BLUEDROID_PINNED_TO_CORE_CHOICE\",\n                                \"title\": \"The cpu core which Bluedroid run\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_BLUEDROID_PINNED_TO_CORE\",\n                                \"name\": \"BT_BLUEDROID_PINNED_TO_CORE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This select btu task stack size\",\n                                \"id\": \"BT_BTU_TASK_STACK_SIZE\",\n                                \"name\": \"BT_BTU_TASK_STACK_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Bluetooth Bluedroid Host Stack task stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Bluedroid memory debug\",\n                                \"id\": \"BT_BLUEDROID_MEM_DEBUG\",\n                                \"name\": \"BT_BLUEDROID_MEM_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Bluedroid memory debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This enables functionalities of Host qualification for Classic Bluetooth.\",\n                                        \"id\": \"BT_CLASSIC_BQB_ENABLED\",\n                                        \"name\": \"BT_CLASSIC_BQB_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"Host Qualitifcation support for Classic Bluetooth\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Advanced Audio Distrubution Profile\",\n                                        \"id\": \"BT_A2DP_ENABLE\",\n                                        \"name\": \"BT_A2DP_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"A2DP\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This enables the Serial Port Profile\",\n                                        \"id\": \"BT_SPP_ENABLED\",\n                                        \"name\": \"BT_SPP_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"SPP\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This enables the Logical Link Control and Adaptation Layer Protocol.\\nOnly supported classic bluetooth.\",\n                                        \"id\": \"BT_L2CAP_ENABLED\",\n                                        \"name\": \"BT_L2CAP_ENABLED\",\n                                        \"range\": null,\n                                        \"title\": \"BT L2CAP\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_HFP_ROLE>\",\n                                                        \"help\": null,\n                                                        \"id\": \"BT_HFP_CLIENT_ENABLE\",\n                                                        \"name\": \"BT_HFP_CLIENT_ENABLE\",\n                                                        \"range\": null,\n                                                        \"title\": \"Hands Free Unit\",\n                                                        \"type\": \"bool\"\n                                                    },\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_HFP_ROLE>\",\n                                                        \"help\": null,\n                                                        \"id\": \"BT_HFP_AG_ENABLE\",\n                                                        \"name\": \"BT_HFP_AG_ENABLE\",\n                                                        \"range\": null,\n                                                        \"title\": \"Audio Gateway\",\n                                                        \"type\": \"bool\"\n                                                    }\n                                                ],\n                                                \"depends_on\": \"BT_HFP_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": null,\n                                                \"id\": \"component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-hands-free-profile-role-configuration\",\n                                                \"name\": \"BT_HFP_ROLE\",\n                                                \"title\": \"Hands-free Profile Role configuration\",\n                                                \"type\": \"choice\"\n                                            },\n                                            {\n                                                \"children\": [\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_HFP_AUDIO_DATA_PATH>\",\n                                                        \"help\": null,\n                                                        \"id\": \"BT_HFP_AUDIO_DATA_PATH_PCM\",\n                                                        \"name\": \"BT_HFP_AUDIO_DATA_PATH_PCM\",\n                                                        \"range\": null,\n                                                        \"title\": \"PCM\",\n                                                        \"type\": \"bool\"\n                                                    },\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_HFP_AUDIO_DATA_PATH>\",\n                                                        \"help\": null,\n                                                        \"id\": \"BT_HFP_AUDIO_DATA_PATH_HCI\",\n                                                        \"name\": \"BT_HFP_AUDIO_DATA_PATH_HCI\",\n                                                        \"range\": null,\n                                                        \"title\": \"HCI\",\n                                                        \"type\": \"bool\"\n                                                    }\n                                                ],\n                                                \"depends_on\": \"BT_HFP_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"SCO data path, i.e. HCI or PCM. This option is set using API\\n\\\"esp_bredr_sco_datapath_set\\\" in Bluetooth host. Default SCO data\\npath can also be set in Bluetooth Controller.\",\n                                                \"id\": \"component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path\",\n                                                \"name\": \"BT_HFP_AUDIO_DATA_PATH\",\n                                                \"title\": \"audio(SCO) data path\",\n                                                \"type\": \"choice\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_HFP_ENABLE\",\n                                        \"name\": \"BT_HFP_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Hands Free/Handset Profile\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && IDF_TARGET_ESP32 && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"For now this option needs \\\"SMP_ENABLE\\\" to be set to yes\",\n                                \"id\": \"BT_CLASSIC_ENABLED\",\n                                \"name\": \"BT_CLASSIC_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Classic Bluetooth\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_HFP_AUDIO_DATA_PATH_HCI && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables Wide Band Speech. Should disable it when SCO data path is PCM.\\nOtherwise there will be no data transmited via GPIOs.\",\n                                \"id\": \"BT_HFP_WBS_ENABLE\",\n                                \"name\": \"BT_HFP_WBS_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Wide Band Speech\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_HID_ROLE>\",\n                                                \"help\": \"This enables the BT HID Host\",\n                                                \"id\": \"BT_HID_HOST_ENABLED\",\n                                                \"name\": \"BT_HID_HOST_ENABLED\",\n                                                \"range\": null,\n                                                \"title\": \"Classic BT HID Host\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_HID_ROLE>\",\n                                                \"help\": \"This enables the BT HID Device\",\n                                                \"id\": \"BT_HID_DEVICE_ENABLED\",\n                                                \"name\": \"BT_HID_DEVICE_ENABLED\",\n                                                \"range\": null,\n                                                \"title\": \"Classic BT HID Device\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_HID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-classic-bt-hid-profile-role-configuration\",\n                                        \"name\": \"BT_HID_ROLE\",\n                                        \"title\": \"Profile Role configuration\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables the BT HID Host\",\n                                \"id\": \"BT_HID_ENABLED\",\n                                \"name\": \"BT_HID_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Classic BT HID\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables the Secure Simple Pairing. If disable this option,\\nBluedroid will only support Legacy Pairing\",\n                                \"id\": \"BT_SSP_ENABLED\",\n                                \"name\": \"BT_SSP_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Secure Simple Pairing\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"This enables \\\"Peripheral Preferred Connection Parameters\\\" characteristic (UUID: 0x2A04) in GAP service that has\\nconnection parameters like min/max connection interval, slave latency and supervision timeout multiplier\",\n                                                \"id\": \"BT_GATTS_PPCP_CHAR_GAP\",\n                                                \"name\": \"BT_GATTS_PPCP_CHAR_GAP\",\n                                                \"range\": null,\n                                                \"title\": \"Enable Peripheral Preferred Connection Parameters characteristic in GAP service\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"This option can be close when the app does not require blufi function.\",\n                                                \"id\": \"BT_BLE_BLUFI_ENABLE\",\n                                                \"name\": \"BT_BLE_BLUFI_ENABLE\",\n                                                \"range\": null,\n                                                \"title\": \"Include blufi function\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Maximum GATT Server Profiles Count\",\n                                                \"id\": \"BT_GATT_MAX_SR_PROFILES\",\n                                                \"name\": \"BT_GATT_MAX_SR_PROFILES\",\n                                                \"range\": null,\n                                                \"title\": \"Max GATT Server Profiles\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Maximum GATT Service Attributes Count\",\n                                                \"id\": \"BT_GATT_MAX_SR_ATTRIBUTES\",\n                                                \"name\": \"BT_GATT_MAX_SR_ATTRIBUTES\",\n                                                \"range\": null,\n                                                \"title\": \"Max GATT Service Attributes\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_GATTS_SEND_SERVICE_CHANGE_MODE>\",\n                                                        \"help\": \"Manually send service change indication through API esp_ble_gatts_send_service_change_indication()\",\n                                                        \"id\": \"BT_GATTS_SEND_SERVICE_CHANGE_MANUAL\",\n                                                        \"name\": \"BT_GATTS_SEND_SERVICE_CHANGE_MANUAL\",\n                                                        \"range\": null,\n                                                        \"title\": \"GATTS manually send service change indication\",\n                                                        \"type\": \"bool\"\n                                                    },\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"<choice BT_GATTS_SEND_SERVICE_CHANGE_MODE>\",\n                                                        \"help\": \"Let Bluedroid handle the service change indication internally\",\n                                                        \"id\": \"BT_GATTS_SEND_SERVICE_CHANGE_AUTO\",\n                                                        \"name\": \"BT_GATTS_SEND_SERVICE_CHANGE_AUTO\",\n                                                        \"range\": null,\n                                                        \"title\": \"GATTS automatically send service change indication\",\n                                                        \"type\": \"bool\"\n                                                    }\n                                                ],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Service change indication mode for GATT Server.\",\n                                                \"id\": \"component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode\",\n                                                \"name\": \"BT_GATTS_SEND_SERVICE_CHANGE_MODE\",\n                                                \"title\": \"GATTS Service Change Mode\",\n                                                \"type\": \"choice\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": null,\n                                                \"id\": \"BT_GATTS_SEND_SERVICE_CHANGE_MODE\",\n                                                \"name\": \"BT_GATTS_SEND_SERVICE_CHANGE_MODE\",\n                                                \"range\": null,\n                                                \"title\": null,\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"This option enable gatt robust caching feature on server\",\n                                                \"id\": \"BT_GATTS_ROBUST_CACHING_ENABLED\",\n                                                \"name\": \"BT_GATTS_ROBUST_CACHING_ENABLED\",\n                                                \"range\": null,\n                                                \"title\": \"Enable Robust Caching on Server Side\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Enabling this option allows remote GATT clients to write device name\",\n                                                \"id\": \"BT_GATTS_DEVICE_NAME_WRITABLE\",\n                                                \"name\": \"BT_GATTS_DEVICE_NAME_WRITABLE\",\n                                                \"range\": null,\n                                                \"title\": \"Allow to write device name by GATT clients\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Enabling this option allows remote GATT clients to write appearance\",\n                                                \"id\": \"BT_GATTS_APPEARANCE_WRITABLE\",\n                                                \"name\": \"BT_GATTS_APPEARANCE_WRITABLE\",\n                                                \"range\": null,\n                                                \"title\": \"Allow to write appearance by GATT clients\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLE_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This option can be disabled when the app work only on gatt client mode\",\n                                        \"id\": \"BT_GATTS_ENABLE\",\n                                        \"name\": \"BT_GATTS_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Include GATT server module(GATTS)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"Maximum GATTC cache characteristic count\",\n                                                \"id\": \"BT_GATTC_MAX_CACHE_CHAR\",\n                                                \"name\": \"BT_GATTC_MAX_CACHE_CHAR\",\n                                                \"range\": null,\n                                                \"title\": \"Max gattc cache characteristic for discover\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"This select can save gattc cache data to nvs flash\",\n                                                \"id\": \"BT_GATTC_CACHE_NVS_FLASH\",\n                                                \"name\": \"BT_GATTC_CACHE_NVS_FLASH\",\n                                                \"range\": null,\n                                                \"title\": \"Save gattc cache data to nvs flash\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"The number of attempts to reconnect if the connection establishment failed\",\n                                                \"id\": \"BT_GATTC_CONNECT_RETRY_COUNT\",\n                                                \"name\": \"BT_GATTC_CONNECT_RETRY_COUNT\",\n                                                \"range\": null,\n                                                \"title\": \"The number of attempts to reconnect if the connection establishment failed\",\n                                                \"type\": \"int\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLE_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This option can be close when the app work only on gatt server mode\",\n                                        \"id\": \"BT_GATTC_ENABLE\",\n                                        \"name\": \"BT_GATTC_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Include GATT client module(GATTC)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED\",\n                                                \"help\": \"In order to reduce the pairing time, slave actively initiates connection parameters\\nupdate during pairing.\",\n                                                \"id\": \"BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE\",\n                                                \"name\": \"BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE\",\n                                                \"range\": null,\n                                                \"title\": \"Slave enable connection parameters update during pairing\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLE_ENABLED && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"This option can be close when the app not used the ble security connect.\",\n                                        \"id\": \"BT_BLE_SMP_ENABLE\",\n                                        \"name\": \"BT_BLE_SMP_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Include BLE security module(SMP)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables Bluetooth Low Energy\",\n                                \"id\": \"BT_BLE_ENABLED\",\n                                \"name\": \"BT_BLE_ENABLED\",\n                                \"range\": null,\n                                \"title\": \"Bluetooth Low Energy\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This select can save the rodata code size\",\n                                \"id\": \"BT_STACK_NO_LOG\",\n                                \"name\": \"BT_STACK_NO_LOG\",\n                                \"range\": null,\n                                \"title\": \"Disable BT debug logs (minimize bin size)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HCI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HCI_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_HCI_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for HCI layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer\",\n                                        \"name\": \"BT_LOG_HCI_TRACE_LEVEL\",\n                                        \"title\": \"HCI layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_HCI_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_HCI_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTM_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_BTM_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for BTM layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer\",\n                                        \"name\": \"BT_LOG_BTM_TRACE_LEVEL\",\n                                        \"title\": \"BTM layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_BTM_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_BTM_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_L2CAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for L2CAP layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer\",\n                                        \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL\",\n                                        \"title\": \"L2CAP layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_L2CAP_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_L2CAP_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_RFCOMM_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for RFCOMM layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer\",\n                                        \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL\",\n                                        \"title\": \"RFCOMM layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_RFCOMM_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_RFCOMM_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SDP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SDP_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_SDP_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for SDP layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer\",\n                                        \"name\": \"BT_LOG_SDP_TRACE_LEVEL\",\n                                        \"title\": \"SDP layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_SDP_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_SDP_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GAP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GAP_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_GAP_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for GAP layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer\",\n                                        \"name\": \"BT_LOG_GAP_TRACE_LEVEL\",\n                                        \"title\": \"GAP layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_GAP_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_GAP_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BNEP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BNEP_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_BNEP_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for BNEP layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer\",\n                                        \"name\": \"BT_LOG_BNEP_TRACE_LEVEL\",\n                                        \"title\": \"BNEP layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_BNEP_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_BNEP_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_PAN_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_PAN_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_PAN_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for PAN layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer\",\n                                        \"name\": \"BT_LOG_PAN_TRACE_LEVEL\",\n                                        \"title\": \"PAN layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_PAN_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_PAN_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_A2D_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_A2D_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_A2D_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for A2D layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer\",\n                                        \"name\": \"BT_LOG_A2D_TRACE_LEVEL\",\n                                        \"title\": \"A2D layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_A2D_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_A2D_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVDT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVDT_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_AVDT_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for AVDT layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer\",\n                                        \"name\": \"BT_LOG_AVDT_TRACE_LEVEL\",\n                                        \"title\": \"AVDT layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_AVDT_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_AVDT_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVCT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVCT_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_AVCT_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for AVCT layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer\",\n                                        \"name\": \"BT_LOG_AVCT_TRACE_LEVEL\",\n                                        \"title\": \"AVCT layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_AVCT_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_AVCT_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_AVRC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_AVRC_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_AVRC_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for AVRC layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer\",\n                                        \"name\": \"BT_LOG_AVRC_TRACE_LEVEL\",\n                                        \"title\": \"AVRC layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_AVRC_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_AVRC_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_MCA_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_MCA_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_MCA_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for MCA layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer\",\n                                        \"name\": \"BT_LOG_MCA_TRACE_LEVEL\",\n                                        \"title\": \"MCA layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_MCA_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_MCA_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_HID_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_HID_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_HID_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for HID layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer\",\n                                        \"name\": \"BT_LOG_HID_TRACE_LEVEL\",\n                                        \"title\": \"HID layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_HID_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_HID_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_APPL_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_APPL_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_APPL_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for APPL layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer\",\n                                        \"name\": \"BT_LOG_APPL_TRACE_LEVEL\",\n                                        \"title\": \"APPL layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_APPL_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_APPL_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_GATT_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_GATT_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_GATT_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for GATT layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer\",\n                                        \"name\": \"BT_LOG_GATT_TRACE_LEVEL\",\n                                        \"title\": \"GATT layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_GATT_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_GATT_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_SMP_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_SMP_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_SMP_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for SMP layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer\",\n                                        \"name\": \"BT_LOG_SMP_TRACE_LEVEL\",\n                                        \"title\": \"SMP layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_SMP_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_SMP_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTIF_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTIF_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_BTIF_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for BTIF layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer\",\n                                        \"name\": \"BT_LOG_BTIF_TRACE_LEVEL\",\n                                        \"title\": \"BTIF layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_BTIF_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_BTIF_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BTC_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BTC_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_BTC_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for BTC layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer\",\n                                        \"name\": \"BT_LOG_BTC_TRACE_LEVEL\",\n                                        \"title\": \"BTC layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_BTC_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_BTC_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_OSI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_OSI_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_OSI_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for OSI layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer\",\n                                        \"name\": \"BT_LOG_OSI_TRACE_LEVEL\",\n                                        \"title\": \"OSI layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_OSI_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_OSI_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_NONE\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"NONE\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_ERROR\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_ERROR\",\n                                                \"range\": null,\n                                                \"title\": \"ERROR\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_WARNING\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_WARNING\",\n                                                \"range\": null,\n                                                \"title\": \"WARNING\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_API\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_API\",\n                                                \"range\": null,\n                                                \"title\": \"API\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_EVENT\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_EVENT\",\n                                                \"range\": null,\n                                                \"title\": \"EVENT\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_DEBUG\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_DEBUG\",\n                                                \"range\": null,\n                                                \"title\": \"DEBUG\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_LOG_BLUFI_TRACE_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE\",\n                                                \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE\",\n                                                \"range\": null,\n                                                \"title\": \"VERBOSE\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": \"Define BT trace level for BLUFI layer\",\n                                        \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer\",\n                                        \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL\",\n                                        \"title\": \"BLUFI layer\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_LOG_BLUFI_TRACE_LEVEL\",\n                                        \"name\": \"BT_LOG_BLUFI_TRACE_LEVEL\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED\",\n                                \"id\": \"component-config-bluetooth-bluedroid-options-bt-debug-log-level\",\n                                \"title\": \"BT DEBUG LOG LEVEL\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Maximum BT/BLE connection count. The ESP32-C3/S3 chip supports a maximum of 10 instances,\\nincluding ADV, SCAN and connections. The ESP32-C3/S3 chip can connect up to 9 devices if\\nADV or SCAN uses only one. If ADV and SCAN are both used, The ESP32-C3/S3 chip is connected\\nto a maximum of 8 devices. Because Bluetooth cannot reclaim used instances once ADV or SCAN\\nis used.\",\n                                \"id\": \"BT_ACL_CONNECTIONS\",\n                                \"name\": \"BT_ACL_CONNECTIONS\",\n                                \"range\": null,\n                                \"title\": \"BT/BLE MAX ACL CONNECTIONS(1~9)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Enable this option if there are multiple connections\",\n                                \"id\": \"BT_MULTI_CONNECTION_ENBALE\",\n                                \"name\": \"BT_MULTI_CONNECTION_ENBALE\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE multi-conections\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This select can save the internal RAM if there have the PSRAM\",\n                                \"id\": \"BT_ALLOCATION_FROM_SPIRAM_FIRST\",\n                                \"name\": \"BT_ALLOCATION_FROM_SPIRAM_FIRST\",\n                                \"range\": null,\n                                \"title\": \"BT/BLE will first malloc the memory from the PSRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This select can make the allocation of memory will become more flexible\",\n                                \"id\": \"BT_BLE_DYNAMIC_ENV_MEMORY\",\n                                \"name\": \"BT_BLE_DYNAMIC_ENV_MEMORY\",\n                                \"range\": null,\n                                \"title\": \"Use dynamic memory allocation in BT/BLE stack\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\\nor application layer handling adv packets is slow, it will cause the controller memory\\nto run out. if enabled, adv packets will be lost when host queue is congested.\",\n                                \"id\": \"BT_BLE_HOST_QUEUE_CONG_CHECK\",\n                                \"name\": \"BT_BLE_HOST_QUEUE_CONG_CHECK\",\n                                \"range\": null,\n                                \"title\": \"BLE queue congestion check\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_SMP_ENABLE\",\n                                \"name\": \"BT_SMP_ENABLE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLE_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Originally, when doing BLE active scan, Bluedroid will not report adv to application layer\\nuntil receive scan response. This option is used to disable the behavior. When enable this option,\\nBluedroid will report adv data or scan response to application layer immediately.\\n\\n# Memory reserved at start of DRAM for Bluetooth stack\",\n                                \"id\": \"BT_BLE_ACT_SCAN_REP_ADV_SCAN\",\n                                \"name\": \"BT_BLE_ACT_SCAN_REP_ADV_SCAN\",\n                                \"range\": null,\n                                \"title\": \"Report adv data and scan response individually when BLE active scan\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Bluetooth Connection establishment maximum time, if connection time exceeds this value, the connection\\nestablishment fails, ESP_GATTC_OPEN_EVT or ESP_GATTS_OPEN_EVT is triggered.\",\n                                \"id\": \"BT_BLE_ESTAB_LINK_CONN_TOUT\",\n                                \"name\": \"BT_BLE_ESTAB_LINK_CONN_TOUT\",\n                                \"range\": null,\n                                \"title\": \"Timeout of BLE connection establishment\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Bluetooth Device name length shall be no larger than 248 octets, If the broadcast data cannot contain\\nthe complete device name, then only the shortname will be displayed, the rest parts that can't fit in\\nwill be truncated.\",\n                                \"id\": \"BT_MAX_DEVICE_NAME_LEN\",\n                                \"name\": \"BT_MAX_DEVICE_NAME_LEN\",\n                                \"range\": null,\n                                \"title\": \"length of bluetooth device name\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && !SOC_BLE_DEVICE_PRIVACY_SUPPORTED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables controller RPA list function.\\nFor ESP32, ESP32 only support network privacy mode. If this option is enabled, ESP32 will only accept\\nadvertising packets from peer devices that contain private address, HW will not receive the advertising\\npackets contain identity address after IRK changed. If this option is disabled, address resolution will\\nbe performed in the host, so the functions that require controller to resolve address in the white list\\ncannot be used. This option is disabled by default on ESP32, please enable or disable this option according\\nto your own needs.\\n\\nFor other BLE chips, devices support network privacy mode and device privacy mode,\\nusers can switch the two modes according to their own needs. So this option is enabled by default.\",\n                                \"id\": \"BT_BLE_RPA_SUPPORTED\",\n                                \"name\": \"BT_BLE_RPA_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": \"Update RPA to Controller\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This set RPA timeout of Controller and Host.\\nDefault is 900 s (15 minutes). Range is 1 s to 1 hour (3600 s).\",\n                                \"id\": \"BT_BLE_RPA_TIMEOUT\",\n                                \"name\": \"BT_BLE_RPA_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Timeout of resolvable private address\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || SOC_ESP_NIMBLE_CONTROLLER) && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables BLE 5.0 features, this option only support esp32c3/esp32s3 chip\",\n                                \"id\": \"BT_BLE_50_FEATURES_SUPPORTED\",\n                                \"name\": \"BT_BLE_50_FEATURES_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE 5.0 features\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || SOC_ESP_NIMBLE_CONTROLLER) && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables BLE 4.2 features.\",\n                                \"id\": \"BT_BLE_42_FEATURES_SUPPORTED\",\n                                \"name\": \"BT_BLE_42_FEATURES_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE 4.2 features\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLE_50_FEATURES_SUPPORTED && SOC_ESP_NIMBLE_CONTROLLER && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enables BLE periodic advertising sync transfer feature\",\n                                \"id\": \"BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER\",\n                                \"name\": \"BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE periodic advertising sync transfer feature\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLE_50_FEATURES_SUPPORTED && SOC_ESP_NIMBLE_CONTROLLER && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"Enable the periodic advertising enhancements\",\n                                \"id\": \"BT_BLE_FEAT_PERIODIC_ADV_ENH\",\n                                \"name\": \"BT_BLE_FEAT_PERIODIC_ADV_ENH\",\n                                \"range\": null,\n                                \"title\": \"Enable periodic adv enhancements(adi support)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED\",\n                                \"help\": \"This enable BLE high duty advertising interval feature\",\n                                \"id\": \"BT_BLE_HIGH_DUTY_ADV_INTERVAL\",\n                                \"name\": \"BT_BLE_HIGH_DUTY_ADV_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE high duty advertising interval feature\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BT_BLUEDROID_ENABLED\",\n                        \"id\": \"component-config-bluetooth-bluedroid-options\",\n                        \"title\": \"Bluedroid Options\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_MEM_ALLOC_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL\",\n                                        \"name\": \"BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL\",\n                                        \"range\": null,\n                                        \"title\": \"Internal memory\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && <choice BT_NIMBLE_MEM_ALLOC_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL\",\n                                        \"name\": \"BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL\",\n                                        \"range\": null,\n                                        \"title\": \"External SPIRAM\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_MEM_ALLOC_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT\",\n                                        \"name\": \"BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default alloc mode\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && <choice BT_NIMBLE_MEM_ALLOC_MODE>\",\n                                        \"help\": \"Allows to use IRAM memory region as 8bit accessible region.\\n\\nEvery unaligned (8bit or 16bit) access will result in an exception\\nand incur penalty of certain clock cycles per unaligned read/write.\",\n                                        \"id\": \"BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT\",\n                                        \"name\": \"BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT\",\n                                        \"range\": null,\n                                        \"title\": \"Internal IRAM\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"Allocation strategy for NimBLE host stack, essentially provides ability to\\nallocate all required dynamic allocations from,\\n\\n- Internal DRAM memory only\\n- External SPIRAM memory only\\n- Either internal or external memory based on default malloc()\\n  behavior in ESP-IDF\\n- Internal IRAM memory wherever applicable else internal DRAM\",\n                                \"id\": \"component-config-bluetooth-nimble-options-memory-allocation-strategy\",\n                                \"name\": \"BT_NIMBLE_MEM_ALLOC_MODE\",\n                                \"title\": \"Memory allocation strategy\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_LOG_LEVEL_NONE\",\n                                        \"name\": \"BT_NIMBLE_LOG_LEVEL_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_LOG_LEVEL_ERROR\",\n                                        \"name\": \"BT_NIMBLE_LOG_LEVEL_ERROR\",\n                                        \"range\": null,\n                                        \"title\": \"Error logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_LOG_LEVEL_WARNING\",\n                                        \"name\": \"BT_NIMBLE_LOG_LEVEL_WARNING\",\n                                        \"range\": null,\n                                        \"title\": \"Warning logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_LOG_LEVEL_INFO\",\n                                        \"name\": \"BT_NIMBLE_LOG_LEVEL_INFO\",\n                                        \"range\": null,\n                                        \"title\": \"Info logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_LOG_LEVEL_DEBUG\",\n                                        \"name\": \"BT_NIMBLE_LOG_LEVEL_DEBUG\",\n                                        \"range\": null,\n                                        \"title\": \"Debug logs\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Select NimBLE log level. Please make a note that the selected NimBLE log\\nverbosity can not exceed the level set in \\\"Component config --> Log output\\n--> Default log verbosity\\\".\",\n                                \"id\": \"component-config-bluetooth-nimble-options-nimble-host-log-verbosity\",\n                                \"name\": \"BT_NIMBLE_LOG_LEVEL\",\n                                \"title\": \"NimBLE Host log verbosity\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_NIMBLE_LOG_LEVEL\",\n                                \"name\": \"BT_NIMBLE_LOG_LEVEL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Defines maximum number of concurrent BLE connections. For ESP32, user\\nis expected to configure BTDM_CTRL_BLE_MAX_CONN from controller menu\\nalong with this option. Similarly for ESP32-C3 or ESP32-S3, user is expected to\\nconfigure BT_CTRL_BLE_MAX_ACT from controller menu.\\nFor ESP32C2, ESP32C6 and ESP32H2, each connection will take about 1k DRAM.\",\n                                \"id\": \"BT_NIMBLE_MAX_CONNECTIONS\",\n                                \"name\": \"BT_NIMBLE_MAX_CONNECTIONS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of concurrent connections\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Defines maximum number of bonds to save for peer security and our security\",\n                                \"id\": \"BT_NIMBLE_MAX_BONDS\",\n                                \"name\": \"BT_NIMBLE_MAX_BONDS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of bonds to save across reboots\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Defines maximum number of CCC descriptors to save\",\n                                \"id\": \"BT_NIMBLE_MAX_CCCDS\",\n                                \"name\": \"BT_NIMBLE_MAX_CCCDS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of CCC descriptors to save across reboots\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compiled in\",\n                                \"id\": \"BT_NIMBLE_L2CAP_COC_MAX_NUM\",\n                                \"name\": \"BT_NIMBLE_L2CAP_COC_MAX_NUM\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of connection oriented channels\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_PINNED_TO_CORE_0\",\n                                        \"name\": \"BT_NIMBLE_PINNED_TO_CORE_0\",\n                                        \"range\": null,\n                                        \"title\": \"Core 0 (PRO CPU)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"!FREERTOS_UNICORE && <choice BT_NIMBLE_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_NIMBLE_PINNED_TO_CORE_1\",\n                                        \"name\": \"BT_NIMBLE_PINNED_TO_CORE_1\",\n                                        \"range\": null,\n                                        \"title\": \"Core 1 (APP CPU)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && !FREERTOS_UNICORE && BT_NIMBLE_ENABLED\",\n                                \"help\": \"The CPU core on which NimBLE host will run. You can choose Core 0 or Core 1.\\nCannot specify no-affinity\",\n                                \"id\": \"component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run\",\n                                \"name\": \"BT_NIMBLE_PINNED_TO_CORE_CHOICE\",\n                                \"title\": \"The CPU core on which NimBLE host will run\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_NIMBLE_PINNED_TO_CORE\",\n                                \"name\": \"BT_NIMBLE_PINNED_TO_CORE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This configures stack size of NimBLE host task\",\n                                \"id\": \"BT_NIMBLE_HOST_TASK_STACK_SIZE\",\n                                \"name\": \"BT_NIMBLE_HOST_TASK_STACK_SIZE\",\n                                \"range\": null,\n                                \"title\": \"NimBLE Host task stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enables central role\",\n                                \"id\": \"BT_NIMBLE_ROLE_CENTRAL\",\n                                \"name\": \"BT_NIMBLE_ROLE_CENTRAL\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Central role\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable peripheral role\",\n                                \"id\": \"BT_NIMBLE_ROLE_PERIPHERAL\",\n                                \"name\": \"BT_NIMBLE_ROLE_PERIPHERAL\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Peripheral role\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enables broadcaster role\",\n                                \"id\": \"BT_NIMBLE_ROLE_BROADCASTER\",\n                                \"name\": \"BT_NIMBLE_ROLE_BROADCASTER\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Broadcaster role\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enables observer role\",\n                                \"id\": \"BT_NIMBLE_ROLE_OBSERVER\",\n                                \"name\": \"BT_NIMBLE_ROLE_OBSERVER\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Observer role\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable this flag to make bonding persistent across device reboots\",\n                                \"id\": \"BT_NIMBLE_NVS_PERSIST\",\n                                \"name\": \"BT_NIMBLE_NVS_PERSIST\",\n                                \"range\": null,\n                                \"title\": \"Persist the BLE Bonding keys in NVS\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable security manager legacy pairing\",\n                                        \"id\": \"BT_NIMBLE_SM_LEGACY\",\n                                        \"name\": \"BT_NIMBLE_SM_LEGACY\",\n                                        \"range\": null,\n                                        \"title\": \"Security manager legacy pairing\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_SM_SC && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"If this option is enabled, SM uses predefined DH key pair as described\\nin Core Specification, Vol. 3, Part H, 2.3.5.6.1. This allows to\\ndecrypt air traffic easily and thus should only be used for debugging.\",\n                                                \"id\": \"BT_NIMBLE_SM_SC_DEBUG_KEYS\",\n                                                \"name\": \"BT_NIMBLE_SM_SC_DEBUG_KEYS\",\n                                                \"range\": null,\n                                                \"title\": \"Use predefined public-private key pair\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable security manager secure connections\",\n                                        \"id\": \"BT_NIMBLE_SM_SC\",\n                                        \"name\": \"BT_NIMBLE_SM_SC\",\n                                        \"range\": null,\n                                        \"title\": \"Security manager secure connections (4.2)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable encryption connection\",\n                                        \"id\": \"BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION\",\n                                        \"name\": \"BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION\",\n                                        \"range\": null,\n                                        \"title\": \"Enable LE encryption\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable BLE sm feature\",\n                                \"id\": \"BT_NIMBLE_SECURITY_ENABLE\",\n                                \"is_menuconfig\": true,\n                                \"name\": \"BT_NIMBLE_SECURITY_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE SM feature\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This enables extra runtime asserts and host debugging\",\n                                \"id\": \"BT_NIMBLE_DEBUG\",\n                                \"name\": \"BT_NIMBLE_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable extra runtime asserts and host debugging\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This enables user to add/remove Gatt services at runtime\",\n                                \"id\": \"BT_NIMBLE_DYNAMIC_SERVICE\",\n                                \"name\": \"BT_NIMBLE_DYNAMIC_SERVICE\",\n                                \"range\": null,\n                                \"title\": \"Enable dynamic services\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"The Device Name characteristic shall contain the name of the device as an UTF-8 string.\\nThis name can be changed by using API ble_svc_gap_device_name_set()\",\n                                \"id\": \"BT_NIMBLE_SVC_GAP_DEVICE_NAME\",\n                                \"name\": \"BT_NIMBLE_SVC_GAP_DEVICE_NAME\",\n                                \"range\": null,\n                                \"title\": \"BLE GAP default device name\",\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Device Name characteristic value shall be 0 to 248 octets in length\",\n                                \"id\": \"BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN\",\n                                \"name\": \"BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN\",\n                                \"range\": null,\n                                \"title\": \"Maximum length of BLE device name in octets\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This is the default value of ATT MTU indicated by the device during an ATT MTU exchange.\\nThis value can be changed using API ble_att_set_preferred_mtu()\",\n                                \"id\": \"BT_NIMBLE_ATT_PREFERRED_MTU\",\n                                \"name\": \"BT_NIMBLE_ATT_PREFERRED_MTU\",\n                                \"range\": null,\n                                \"title\": \"Preferred MTU size in octets\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Standard BLE GAP Appearance value in HEX format e.g. 0x02C0\",\n                                \"id\": \"BT_NIMBLE_SVC_GAP_APPEARANCE\",\n                                \"name\": \"BT_NIMBLE_SVC_GAP_APPEARANCE\",\n                                \"range\": null,\n                                \"title\": \"External appearance of the device\",\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                        \"help\": \"MSYS is a system level mbuf registry. For prepare write & prepare\\nresponses MBUFs are allocated out of msys_1 pool. For NIMBLE_MESH\\nenabled cases, this block count is increased by 8 than user defined\\ncount.\",\n                                        \"id\": \"BT_NIMBLE_MSYS_1_BLOCK_COUNT\",\n                                        \"name\": \"BT_NIMBLE_MSYS_1_BLOCK_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"MSYS_1 Block Count\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Dynamic memory size of block 1\",\n                                        \"id\": \"BT_NIMBLE_MSYS_1_BLOCK_SIZE\",\n                                        \"name\": \"BT_NIMBLE_MSYS_1_BLOCK_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"MSYS_1 Block Size\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Dynamic memory count\",\n                                        \"id\": \"BT_NIMBLE_MSYS_2_BLOCK_COUNT\",\n                                        \"name\": \"BT_NIMBLE_MSYS_2_BLOCK_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"MSYS_2 Block Count\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Dynamic memory size of block 2\",\n                                        \"id\": \"BT_NIMBLE_MSYS_2_BLOCK_SIZE\",\n                                        \"name\": \"BT_NIMBLE_MSYS_2_BLOCK_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"MSYS_2 Block Size\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_LE_MSYS_INIT_IN_CONTROLLER && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This option sets the source of the shared msys mbuf memory between\\nthe Host and the Controller. Allocate the memory from the heap if\\nthis option is sets, from the mempool otherwise.\",\n                                        \"id\": \"BT_NIMBLE_MSYS_BUF_FROM_HEAP\",\n                                        \"name\": \"BT_NIMBLE_MSYS_BUF_FROM_HEAP\",\n                                        \"range\": null,\n                                        \"title\": \"Get Msys Mbuf from heap\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"The number of ACL data buffers allocated for host.\",\n                                        \"id\": \"BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT\",\n                                        \"name\": \"BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"ACL Buffer count\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This is the maximum size of the data portion of HCI ACL data packets.\\nIt does not include the HCI data header (of 4 bytes)\",\n                                        \"id\": \"BT_NIMBLE_TRANSPORT_ACL_SIZE\",\n                                        \"name\": \"BT_NIMBLE_TRANSPORT_ACL_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Transport ACL Buffer size\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This is the size of each HCI event buffer in bytes. In case of\\nextended advertising, packets can be fragmented. 257 bytes is the\\nmaximum size of a packet.\",\n                                        \"id\": \"BT_NIMBLE_TRANSPORT_EVT_SIZE\",\n                                        \"name\": \"BT_NIMBLE_TRANSPORT_EVT_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Transport Event Buffer size\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This is the high priority HCI events' buffer size. High-priority\\nevent buffers are for everything except advertising reports. If there\\nare no free high-priority event buffers then host will try to allocate a\\nlow-priority buffer instead\",\n                                        \"id\": \"BT_NIMBLE_TRANSPORT_EVT_COUNT\",\n                                        \"name\": \"BT_NIMBLE_TRANSPORT_EVT_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"Transport Event Buffer count\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This is the low priority HCI events' buffer size. Low-priority event\\nbuffers are only used for advertising reports. If there are no free\\nlow-priority event buffers, then an incoming advertising report will\\nget dropped\",\n                                        \"id\": \"BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT\",\n                                        \"name\": \"BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"Discardable Transport Event Buffer count\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"id\": \"component-config-bluetooth-nimble-options-memory-settings\",\n                                \"title\": \"Memory Settings\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Maximum number of GATT client procedures that can be executed.\",\n                                \"id\": \"BT_NIMBLE_GATT_MAX_PROCS\",\n                                \"name\": \"BT_NIMBLE_GATT_MAX_PROCS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of GATT client procedures\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Host flow control interval in msecs\",\n                                        \"id\": \"BT_NIMBLE_HS_FLOW_CTRL_ITVL\",\n                                        \"name\": \"BT_NIMBLE_HS_FLOW_CTRL_ITVL\",\n                                        \"range\": null,\n                                        \"title\": \"Host Flow control interval\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Host flow control threshold, if the number of free buffers are at or\\nbelow this threshold, send an immediate number-of-completed-packets\\nevent\",\n                                        \"id\": \"BT_NIMBLE_HS_FLOW_CTRL_THRESH\",\n                                        \"name\": \"BT_NIMBLE_HS_FLOW_CTRL_THRESH\",\n                                        \"range\": null,\n                                        \"title\": \"Host Flow control threshold\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable this option to send number-of-completed-packets event to\\ncontroller after disconnection\",\n                                        \"id\": \"BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT\",\n                                        \"name\": \"BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT\",\n                                        \"range\": null,\n                                        \"title\": \"Host Flow control on disconnect\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable Host Flow control\",\n                                \"id\": \"BT_NIMBLE_HS_FLOW_CTRL\",\n                                \"name\": \"BT_NIMBLE_HS_FLOW_CTRL\",\n                                \"range\": null,\n                                \"title\": \"Enable Host Flow control\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Time interval between RPA address change. This is applicable in case of\\nHost based RPA\",\n                                \"id\": \"BT_NIMBLE_RPA_TIMEOUT\",\n                                \"name\": \"BT_NIMBLE_RPA_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"RPA timeout in seconds\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable proxy. This is automatically set whenever NIMBLE_MESH_PB_GATT or\\nNIMBLE_MESH_GATT_PROXY is set\",\n                                        \"id\": \"BT_NIMBLE_MESH_PROXY\",\n                                        \"name\": \"BT_NIMBLE_MESH_PROXY\",\n                                        \"range\": null,\n                                        \"title\": \"Enable mesh proxy functionality\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"Enable this option to allow the device to be provisioned over\\nthe advertising bearer\",\n                                                \"id\": \"BT_NIMBLE_MESH_PB_ADV\",\n                                                \"name\": \"BT_NIMBLE_MESH_PB_ADV\",\n                                                \"range\": null,\n                                                \"title\": \"Enable mesh provisioning over advertising bearer\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"Enable this option to allow the device to be provisioned over the GATT\\nbearer\",\n                                                \"id\": \"BT_NIMBLE_MESH_PB_GATT\",\n                                                \"name\": \"BT_NIMBLE_MESH_PB_GATT\",\n                                                \"range\": null,\n                                                \"title\": \"Enable mesh provisioning over GATT bearer\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable mesh provisioning\",\n                                        \"id\": \"BT_NIMBLE_MESH_PROV\",\n                                        \"name\": \"BT_NIMBLE_MESH_PROV\",\n                                        \"range\": null,\n                                        \"title\": \"Enable BLE mesh provisioning\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This option enables support for the Mesh GATT Proxy Service,\\ni.e. the ability to act as a proxy between a Mesh GATT Client\\nand a Mesh network\",\n                                        \"id\": \"BT_NIMBLE_MESH_GATT_PROXY\",\n                                        \"name\": \"BT_NIMBLE_MESH_GATT_PROXY\",\n                                        \"range\": null,\n                                        \"title\": \"Enable GATT Proxy functionality\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Support for acting as a Mesh Relay Node\",\n                                        \"id\": \"BT_NIMBLE_MESH_RELAY\",\n                                        \"name\": \"BT_NIMBLE_MESH_RELAY\",\n                                        \"range\": null,\n                                        \"title\": \"Enable mesh relay functionality\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable this option to be able to act as a Low Power Node\",\n                                        \"id\": \"BT_NIMBLE_MESH_LOW_POWER\",\n                                        \"name\": \"BT_NIMBLE_MESH_LOW_POWER\",\n                                        \"range\": null,\n                                        \"title\": \"Enable mesh low power mode\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable this option to be able to act as a Friend Node\",\n                                        \"id\": \"BT_NIMBLE_MESH_FRIEND\",\n                                        \"name\": \"BT_NIMBLE_MESH_FRIEND\",\n                                        \"range\": null,\n                                        \"title\": \"Enable mesh friend functionality\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"This value defines Bluetooth Mesh device/node name\",\n                                        \"id\": \"BT_NIMBLE_MESH_DEVICE_NAME\",\n                                        \"name\": \"BT_NIMBLE_MESH_DEVICE_NAME\",\n                                        \"range\": null,\n                                        \"title\": \"Set mesh device name\",\n                                        \"type\": \"string\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Defines mesh node count.\",\n                                        \"id\": \"BT_NIMBLE_MESH_NODE_COUNT\",\n                                        \"name\": \"BT_NIMBLE_MESH_NODE_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"Set mesh node count\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_MESH && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable mesh provisioner.\",\n                                        \"id\": \"BT_NIMBLE_MESH_PROVISIONER\",\n                                        \"name\": \"BT_NIMBLE_MESH_PROVISIONER\",\n                                        \"range\": null,\n                                        \"title\": \"Enable BLE mesh provisioner\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable BLE Mesh example present in upstream mynewt-nimble and not maintained by Espressif.\\n\\nIDF maintains ESP-BLE-MESH as the official Mesh solution. Please refer to ESP-BLE-MESH guide at:\\n`https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/esp-ble-mesh/ble-mesh-index.html`\",\n                                \"id\": \"BT_NIMBLE_MESH\",\n                                \"is_menuconfig\": true,\n                                \"name\": \"BT_NIMBLE_MESH\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE mesh functionality\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable this option to choose mbedTLS instead of TinyCrypt for crypto\\ncomputations.\",\n                                \"id\": \"BT_NIMBLE_CRYPTO_STACK_MBEDTLS\",\n                                \"name\": \"BT_NIMBLE_CRYPTO_STACK_MBEDTLS\",\n                                \"range\": null,\n                                \"title\": \"Override TinyCrypt with mbedTLS for crypto computations\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"BLE Host stop procedure timeout in milliseconds.\",\n                                \"id\": \"BT_NIMBLE_HS_STOP_TIMEOUT_MS\",\n                                \"name\": \"BT_NIMBLE_HS_STOP_TIMEOUT_MS\",\n                                \"range\": null,\n                                \"title\": \"BLE host stop timeout in msec\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && IDF_TARGET_ESP32 && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Use this option to do host based Random Private Address resolution.\\nIf this option is disabled then controller based privacy is used.\",\n                                \"id\": \"BT_NIMBLE_HOST_BASED_PRIVACY\",\n                                \"name\": \"BT_NIMBLE_HOST_BASED_PRIVACY\",\n                                \"range\": null,\n                                \"title\": \"Enable host based privacy for random address.\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLE_CONN_REATTEMPT && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Defines maximum number of connection reattempts.\",\n                                        \"id\": \"BT_NIMBLE_MAX_CONN_REATTEMPT\",\n                                        \"name\": \"BT_NIMBLE_MAX_CONN_REATTEMPT\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number connection reattempts\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable to make the NimBLE host to reattempt GAP connection on connection\\nestablishment failure.\",\n                                \"id\": \"BT_NIMBLE_ENABLE_CONN_REATTEMPT\",\n                                \"name\": \"BT_NIMBLE_ENABLE_CONN_REATTEMPT\",\n                                \"range\": null,\n                                \"title\": \"Enable connection reattempts on connection establishment error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable 2M-PHY\",\n                                        \"id\": \"BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY\",\n                                        \"name\": \"BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY\",\n                                        \"range\": null,\n                                        \"title\": \"Enable 2M Phy\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable coded-PHY\",\n                                        \"id\": \"BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY\",\n                                        \"name\": \"BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY\",\n                                        \"range\": null,\n                                        \"title\": \"Enable coded Phy\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"Change this option to set maximum number of extended advertising\\ninstances. Minimum there is always one instance of\\nadvertising. Enter how many more advertising instances you\\nwant.\\nFor ESP32C2, ESP32C6 and ESP32H2, each extended advertising instance\\nwill take about 0.5k DRAM.\",\n                                                \"id\": \"BT_NIMBLE_MAX_EXT_ADV_INSTANCES\",\n                                                \"name\": \"BT_NIMBLE_MAX_EXT_ADV_INSTANCES\",\n                                                \"range\": null,\n                                                \"title\": \"Maximum number of extended advertising instances.\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"Defines the length of the extended adv data. The value should not\\nexceed 1650.\",\n                                                \"id\": \"BT_NIMBLE_EXT_ADV_MAX_SIZE\",\n                                                \"name\": \"BT_NIMBLE_EXT_ADV_MAX_SIZE\",\n                                                \"range\": null,\n                                                \"title\": \"Maximum length of the advertising data.\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [\n                                                    {\n                                                        \"children\": [],\n                                                        \"depends_on\": \"BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED\",\n                                                        \"help\": \"This enables controller transfer periodic sync events to host\",\n                                                        \"id\": \"BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER\",\n                                                        \"name\": \"BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER\",\n                                                        \"range\": null,\n                                                        \"title\": \"Enable Transer Sync Events\",\n                                                        \"type\": \"bool\"\n                                                    }\n                                                ],\n                                                \"depends_on\": \"BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED\",\n                                                \"help\": \"Enable this option to start periodic advertisement.\",\n                                                \"id\": \"BT_NIMBLE_ENABLE_PERIODIC_ADV\",\n                                                \"name\": \"BT_NIMBLE_ENABLE_PERIODIC_ADV\",\n                                                \"range\": null,\n                                                \"title\": \"Enable periodic advertisement.\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable this option to do extended advertising. Extended advertising\\nwill be supported from BLE 5.0 onwards.\",\n                                        \"id\": \"BT_NIMBLE_EXT_ADV\",\n                                        \"name\": \"BT_NIMBLE_EXT_ADV\",\n                                        \"range\": null,\n                                        \"title\": \"Enable extended advertising\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Set this option to set the upper limit for number of periodic sync\\nconnections. This should be less than maximum connections allowed by\\ncontroller.\",\n                                        \"id\": \"BT_NIMBLE_MAX_PERIODIC_SYNCS\",\n                                        \"name\": \"BT_NIMBLE_MAX_PERIODIC_SYNCS\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of periodic advertising syncs\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Set this option to set the upper limit for number of periodic advertiser list.\",\n                                        \"id\": \"BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST\",\n                                        \"name\": \"BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of periodic advertiser list\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_POWER_CONTROL_SUPPORTED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Set this option to enable the Power Control feature\",\n                                        \"id\": \"BT_NIMBLE_BLE_POWER_CONTROL\",\n                                        \"name\": \"BT_NIMBLE_BLE_POWER_CONTROL\",\n                                        \"range\": null,\n                                        \"title\": \"Enable support for BLE Power Control\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Enable the periodic advertising enhancements\",\n                                        \"id\": \"BT_NIMBLE_PERIODIC_ADV_ENH\",\n                                        \"name\": \"BT_NIMBLE_PERIODIC_ADV_ENH\",\n                                        \"range\": null,\n                                        \"title\": \"Periodic adv enhancements(adi support)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && (SOC_BLE_50_SUPPORTED || !BT_CONTROLLER_ENABLED) && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable BLE 5 feature\",\n                                \"id\": \"BT_NIMBLE_50_FEATURE_SUPPORT\",\n                                \"is_menuconfig\": true,\n                                \"name\": \"BT_NIMBLE_50_FEATURE_SUPPORT\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE 5 feature\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM>\",\n                                        \"help\": \"Always enable the limitation on max tx/rx time for Coded-PHY connection\",\n                                        \"id\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EN\",\n                                        \"name\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EN\",\n                                        \"range\": null,\n                                        \"title\": \"Force Enable\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM>\",\n                                        \"help\": \"Disable the limitation on max tx/rx time for Coded-PHY connection\",\n                                        \"id\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS\",\n                                        \"name\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS\",\n                                        \"range\": null,\n                                        \"title\": \"Force Disable\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_WIFI_SW_COEXIST_ENABLE && BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"When using PHY-Coded in BLE connection, limitation on max tx/rx time can be applied to\\nbetter avoid dramatic performance deterioration of Wi-Fi.\",\n                                \"id\": \"component-config-bluetooth-nimble-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection\",\n                                \"name\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM\",\n                                \"title\": \"Coexistence: limit on MAX Tx/Rx time for coded-PHY connection\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EFF\",\n                                \"name\": \"BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"BLE list size\",\n                                \"id\": \"BT_NIMBLE_WHITELIST_SIZE\",\n                                \"name\": \"BT_NIMBLE_WHITELIST_SIZE\",\n                                \"range\": null,\n                                \"title\": \"BLE white list size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"Enable the throughput test mode\",\n                                \"id\": \"BT_NIMBLE_TEST_THROUGHPUT_TEST\",\n                                \"name\": \"BT_NIMBLE_TEST_THROUGHPUT_TEST\",\n                                \"range\": null,\n                                \"title\": \"Throughput Test Mode enable\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"Set this option to enable blufi functionality.\",\n                                \"id\": \"BT_NIMBLE_BLUFI_ENABLE\",\n                                \"name\": \"BT_NIMBLE_BLUFI_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Enable blufi functionality\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer\",\n                                \"id\": \"BT_NIMBLE_USE_ESP_TIMER\",\n                                \"name\": \"BT_NIMBLE_USE_ESP_TIMER\",\n                                \"range\": null,\n                                \"title\": \"Enable Esp Timer for Nimble\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"This option is used to distinguish whether a previous version of VHCI is being used\",\n                                \"id\": \"BT_NIMBLE_LEGACY_VHCI_ENABLE\",\n                                \"name\": \"BT_NIMBLE_LEGACY_VHCI_ENABLE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"This option is used when data to be sent is more than 512 bytes. For peripheral role,\\nBT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.\",\n                                \"id\": \"BT_NIMBLE_BLE_GATT_BLOB_TRANSFER\",\n                                \"name\": \"BT_NIMBLE_BLE_GATT_BLOB_TRANSFER\",\n                                \"range\": null,\n                                \"title\": \"Blob transfer\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                                \"help\": \"This option is used to enable support for sending Vendor Specific HCI commands and handling\\nVendor Specific HCI Events.\",\n                                \"id\": \"BT_NIMBLE_VS_SUPPORT\",\n                                \"name\": \"BT_NIMBLE_VS_SUPPORT\",\n                                \"range\": null,\n                                \"title\": \"Enable support for VSC and VSE\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_BLE_MULTI_CONN_OPTIMIZATION && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This option enables the use of vendor-specific APIs for multi-connections, which can\\ngreatly enhance the stability of coexistence between numerous central and peripheral\\ndevices. It will prohibit the usage of standard APIs.\",\n                                \"id\": \"BT_NIMBLE_OPTIMIZE_MULTI_CONN\",\n                                \"name\": \"BT_NIMBLE_OPTIMIZE_MULTI_CONN\",\n                                \"range\": null,\n                                \"title\": \"Enable the optimization of multi-connection\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENC_ADV_DATA && BT_NIMBLE_ENABLED\",\n                                        \"help\": \"Defines maximum number of encrypted advertising data key material to save\",\n                                        \"id\": \"BT_NIMBLE_MAX_EADS\",\n                                        \"name\": \"BT_NIMBLE_MAX_EADS\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of EAD devices to save across reboots\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This option is used to enable encrypted advertising data.\",\n                                \"id\": \"BT_NIMBLE_ENC_ADV_DATA\",\n                                \"name\": \"BT_NIMBLE_ENC_ADV_DATA\",\n                                \"range\": null,\n                                \"title\": \"Encrypted Advertising Data\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"This enable BLE high duty advertising interval feature\",\n                                \"id\": \"BT_NIMBLE_HIGH_DUTY_ADV_ITVL\",\n                                \"name\": \"BT_NIMBLE_HIGH_DUTY_ADV_ITVL\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE high duty advertising interval feature\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED\",\n                                \"help\": \"When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\\nor application layer handling adv packets is slow, it will cause the controller memory\\nto run out. if enabled, adv packets will be lost when host queue is congested.\",\n                                \"id\": \"BT_NIMBLE_HOST_QUEUE_CONG_CHECK\",\n                                \"name\": \"BT_NIMBLE_HOST_QUEUE_CONG_CHECK\",\n                                \"range\": null,\n                                \"title\": \"BLE queue congestion check\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                        \"id\": \"component-config-bluetooth-nimble-options\",\n                        \"title\": \"NimBLE Options\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_MODE_EFF\",\n                                \"name\": \"BT_CTRL_MODE_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"BLE maximum activities of bluetooth controller\\uff0cboth of connections,\\nscan , sync and adv(periodic adv, multi-adv). Each instance needs to\\nconsume 828 bytes, you can save RAM by modifying the instance value\\naccording to actual needs.\",\n                                \"id\": \"BT_CTRL_BLE_MAX_ACT\",\n                                \"name\": \"BT_CTRL_BLE_MAX_ACT\",\n                                \"range\": null,\n                                \"title\": \"BLE Max Instances\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_BLE_MAX_ACT_EFF\",\n                                \"name\": \"BT_CTRL_BLE_MAX_ACT_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"BLE ACL buffer have two methods to be allocated. One is persistent allocating\\n(alloate when controller initialise, never free until controller de-initialise)\\nanother is dynamically allocating (allocate before TX and free after TX).\",\n                                \"id\": \"BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB\",\n                                \"name\": \"BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB\",\n                                \"range\": null,\n                                \"title\": \"BLE static ACL TX buffer numbers\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_PINNED_TO_CORE_0\",\n                                        \"name\": \"BT_CTRL_PINNED_TO_CORE_0\",\n                                        \"range\": null,\n                                        \"title\": \"Core 0 (PRO CPU)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"!FREERTOS_UNICORE && <choice BT_CTRL_PINNED_TO_CORE_CHOICE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_PINNED_TO_CORE_1\",\n                                        \"name\": \"BT_CTRL_PINNED_TO_CORE_1\",\n                                        \"range\": null,\n                                        \"title\": \"Core 1 (APP CPU)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"!FREERTOS_UNICORE && BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify the cpu core to run bluetooth controller.\\nCan not specify no-affinity.\",\n                                \"id\": \"component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run\",\n                                \"name\": \"BT_CTRL_PINNED_TO_CORE_CHOICE\",\n                                \"title\": \"The cpu core which bluetooth controller run\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_PINNED_TO_CORE\",\n                                \"name\": \"BT_CTRL_PINNED_TO_CORE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_HCI_MODE_CHOICE>\",\n                                        \"help\": \"Normal option. Mostly, choose this VHCI when bluetooth host run on ESP32S3 or ESP32C3.\",\n                                        \"id\": \"BT_CTRL_HCI_MODE_VHCI\",\n                                        \"name\": \"BT_CTRL_HCI_MODE_VHCI\",\n                                        \"range\": null,\n                                        \"title\": \"VHCI\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_HCI_MODE_CHOICE>\",\n                                        \"help\": \"If use external bluetooth host which run on other hardware and use UART as the HCI interface,\\nchoose this option.\",\n                                        \"id\": \"BT_CTRL_HCI_MODE_UART_H4\",\n                                        \"name\": \"BT_CTRL_HCI_MODE_UART_H4\",\n                                        \"range\": null,\n                                        \"title\": \"UART(H4)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify HCI mode as VHCI or UART(H4)\",\n                                \"id\": \"component-config-bluetooth-controller-options-hci-mode\",\n                                \"name\": \"BT_CTRL_HCI_MODE_CHOICE\",\n                                \"title\": \"HCI mode\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"HCI mode as VHCI or UART(H4)\",\n                                \"id\": \"BT_CTRL_HCI_TL\",\n                                \"name\": \"BT_CTRL_HCI_TL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"The maxinum number of suplicate scan filter\",\n                                \"id\": \"BT_CTRL_ADV_DUP_FILT_MAX\",\n                                \"name\": \"BT_CTRL_ADV_DUP_FILT_MAX\",\n                                \"range\": null,\n                                \"title\": \"The maxinum number of 5.0 extend duplicate scan filter\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_BLE_CCA_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_BLE_CCA_MODE_NONE\",\n                                        \"name\": \"BT_BLE_CCA_MODE_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"NONE\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_BLE_CCA_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_BLE_CCA_MODE_HW\",\n                                        \"name\": \"BT_BLE_CCA_MODE_HW\",\n                                        \"range\": null,\n                                        \"title\": \"Hardware\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_BLE_CCA_MODE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_BLE_CCA_MODE_SW\",\n                                        \"name\": \"BT_BLE_CCA_MODE_SW\",\n                                        \"range\": null,\n                                        \"title\": \"Software\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Define BT BLE CCA mode\",\n                                \"id\": \"component-config-bluetooth-controller-options-ble-cca-mode\",\n                                \"name\": \"BT_BLE_CCA_MODE\",\n                                \"title\": \"BLE CCA mode\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_BLE_CCA_MODE\",\n                                \"name\": \"BT_BLE_CCA_MODE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"It is the threshold value of HW CCA, if the value is 30, it means CCA threshold is -30 dBm.\",\n                                \"id\": \"BT_CTRL_HW_CCA_VAL\",\n                                \"name\": \"BT_CTRL_HW_CCA_VAL\",\n                                \"range\": null,\n                                \"title\": \"CCA threshold value\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"If other devices are sending packets in the air and the signal is strong,\\nthe packet hw to be sent this time is cancelled.\",\n                                \"id\": \"BT_CTRL_HW_CCA_EFF\",\n                                \"name\": \"BT_CTRL_HW_CCA_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_CE_LENGTH_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_CE_LENGTH_TYPE_ORIG\",\n                                        \"name\": \"BT_CTRL_CE_LENGTH_TYPE_ORIG\",\n                                        \"range\": null,\n                                        \"title\": \"ORIGINAL\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_CE_LENGTH_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_CE_LENGTH_TYPE_CE\",\n                                        \"name\": \"BT_CTRL_CE_LENGTH_TYPE_CE\",\n                                        \"range\": null,\n                                        \"title\": \"Use CE parameter for HCI command\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_CE_LENGTH_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_CE_LENGTH_TYPE_SD\",\n                                        \"name\": \"BT_CTRL_CE_LENGTH_TYPE_SD\",\n                                        \"range\": null,\n                                        \"title\": \"Use Espressif self-defined method\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify connection event length determination\",\n                                \"id\": \"component-config-bluetooth-controller-options-connection-event-length-determination-method\",\n                                \"name\": \"BT_CTRL_CE_LENGTH_TYPE\",\n                                \"title\": \"Connection event length determination method\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_CE_LENGTH_TYPE_EFF\",\n                                \"name\": \"BT_CTRL_CE_LENGTH_TYPE_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_TX_ANTENNA_INDEX>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_TX_ANTENNA_INDEX_0\",\n                                        \"name\": \"BT_CTRL_TX_ANTENNA_INDEX_0\",\n                                        \"range\": null,\n                                        \"title\": \"Antenna 0\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_TX_ANTENNA_INDEX>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_TX_ANTENNA_INDEX_1\",\n                                        \"name\": \"BT_CTRL_TX_ANTENNA_INDEX_1\",\n                                        \"range\": null,\n                                        \"title\": \"Antenna 1\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify default Tx antenna used for bluetooth\",\n                                \"id\": \"component-config-bluetooth-controller-options-default-tx-anntena-used\",\n                                \"name\": \"BT_CTRL_TX_ANTENNA_INDEX\",\n                                \"title\": \"default Tx anntena used\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_TX_ANTENNA_INDEX_EFF\",\n                                \"name\": \"BT_CTRL_TX_ANTENNA_INDEX_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_RX_ANTENNA_INDEX>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_RX_ANTENNA_INDEX_0\",\n                                        \"name\": \"BT_CTRL_RX_ANTENNA_INDEX_0\",\n                                        \"range\": null,\n                                        \"title\": \"Antenna 0\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_RX_ANTENNA_INDEX>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_RX_ANTENNA_INDEX_1\",\n                                        \"name\": \"BT_CTRL_RX_ANTENNA_INDEX_1\",\n                                        \"range\": null,\n                                        \"title\": \"Antenna 1\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify default Rx antenna used for bluetooth\",\n                                \"id\": \"component-config-bluetooth-controller-options-default-rx-anntena-used\",\n                                \"name\": \"BT_CTRL_RX_ANTENNA_INDEX\",\n                                \"title\": \"default Rx anntena used\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_RX_ANTENNA_INDEX_EFF\",\n                                \"name\": \"BT_CTRL_RX_ANTENNA_INDEX_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N24\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N24\",\n                                        \"range\": null,\n                                        \"title\": \"-24dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N21\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N21\",\n                                        \"range\": null,\n                                        \"title\": \"-21dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N18\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N18\",\n                                        \"range\": null,\n                                        \"title\": \"-18dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N15\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N15\",\n                                        \"range\": null,\n                                        \"title\": \"-15dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N12\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N12\",\n                                        \"range\": null,\n                                        \"title\": \"-12dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N9\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N9\",\n                                        \"range\": null,\n                                        \"title\": \"-9dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N6\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N6\",\n                                        \"range\": null,\n                                        \"title\": \"-6dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N3\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N3\",\n                                        \"range\": null,\n                                        \"title\": \"-3dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N0\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_N0\",\n                                        \"range\": null,\n                                        \"title\": \"0dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P3\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P3\",\n                                        \"range\": null,\n                                        \"title\": \"+3dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P6\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P6\",\n                                        \"range\": null,\n                                        \"title\": \"+6dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P9\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P9\",\n                                        \"range\": null,\n                                        \"title\": \"+9dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P12\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P12\",\n                                        \"range\": null,\n                                        \"title\": \"+12dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P15\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P15\",\n                                        \"range\": null,\n                                        \"title\": \"+15dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P18\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P18\",\n                                        \"range\": null,\n                                        \"title\": \"+18dBm\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_DFT_TX_POWER_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P21\",\n                                        \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_P21\",\n                                        \"range\": null,\n                                        \"title\": \"+21dBm\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Specify default Tx power level\",\n                                \"id\": \"component-config-bluetooth-controller-options-ble-default-tx-power-level\",\n                                \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL\",\n                                \"title\": \"BLE default Tx power level\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_DFT_TX_POWER_LEVEL_EFF\",\n                                \"name\": \"BT_CTRL_DFT_TX_POWER_LEVEL_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"The number of unprocessed advertising report that bluetooth host can save.If you set\\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\\nIf you set `BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, bluetooth host may cache a\\nlot of adv packets and this may cause system memory run out. For example, if you set\\nit to 50, the maximum memory consumed by host is 35 * 50 bytes. Please set\\n`BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM` according to your system free memory and handle adv\\npackets as fast as possible, otherwise it will cause adv packets lost.\",\n                                        \"id\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM\",\n                                        \"name\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_NUM\",\n                                        \"range\": null,\n                                        \"title\": \"BLE adv report flow control number\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"When adv report flow control is enabled, The ADV lost event will be generated when the number\\nof ADV packets lost in the controller reaches this threshold. It is better to set a larger value.\\nIf you set `BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\\nmay cause adv packets lost more.\",\n                                        \"id\": \"BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD\",\n                                        \"name\": \"BT_CTRL_BLE_ADV_REPORT_DISCARD_THRSHOLD\",\n                                        \"range\": null,\n                                        \"title\": \"BLE adv lost event threshold value\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"The function is mainly used to enable flow control for advertising reports. When it is enabled,\\nadvertising reports will be discarded by the controller if the number of unprocessed advertising\\nreports exceeds the size of BLE adv report flow control.\",\n                                \"id\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP\",\n                                \"name\": \"BT_CTRL_BLE_ADV_REPORT_FLOW_CTRL_SUPP\",\n                                \"range\": null,\n                                \"title\": \"BLE adv report flow control supported\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_CTRL_SCAN_DUPL_TYPE>\",\n                                                \"help\": \"Advertising packets with the same address, address type, and advertising type are reported once.\",\n                                                \"id\": \"BT_CTRL_SCAN_DUPL_TYPE_DEVICE\",\n                                                \"name\": \"BT_CTRL_SCAN_DUPL_TYPE_DEVICE\",\n                                                \"range\": null,\n                                                \"title\": \"Scan Duplicate By Device Address\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_CTRL_SCAN_DUPL_TYPE>\",\n                                                \"help\": \"Advertising packets with identical advertising data, address type, and advertising type\\nare reported only once, even if they originate from different devices.\",\n                                                \"id\": \"BT_CTRL_SCAN_DUPL_TYPE_DATA\",\n                                                \"name\": \"BT_CTRL_SCAN_DUPL_TYPE_DATA\",\n                                                \"range\": null,\n                                                \"title\": \"Scan Duplicate By Advertising Data\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice BT_CTRL_SCAN_DUPL_TYPE>\",\n                                                \"help\": \"Advertising packets with the same address, advertising data, address type,\\nand advertising type are reported only once.\",\n                                                \"id\": \"BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE\",\n                                                \"name\": \"BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE\",\n                                                \"range\": null,\n                                                \"title\": \"Scan Duplicate By Device Address And Advertising Data\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"Scan duplicate have three ways. one is \\\"Scan Duplicate By Device Address\\\", This way is to use\\nadvertiser address filtering. The adv packet of the same address is only allowed to be reported once.\\nAnother way is \\\"Scan Duplicate By Device Address And Advertising Data\\\". This way is to use advertising\\ndata and device address filtering. All different adv packets with the same address are allowed to be\\nreported. The last way is \\\"Scan Duplicate By Advertising Data\\\". This way is to use advertising data\\nfiltering. All same advertising data only allow to be reported once even though they are from\\ndifferent devices.\",\n                                        \"id\": \"component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type\",\n                                        \"name\": \"BT_CTRL_SCAN_DUPL_TYPE\",\n                                        \"title\": \"Scan Duplicate Type\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED\",\n                                        \"help\": null,\n                                        \"id\": \"BT_CTRL_SCAN_DUPL_TYPE\",\n                                        \"name\": \"BT_CTRL_SCAN_DUPL_TYPE\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"Maximum number of devices which can be recorded in scan duplicate filter.\\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.\",\n                                        \"id\": \"BT_CTRL_SCAN_DUPL_CACHE_SIZE\",\n                                        \"name\": \"BT_CTRL_SCAN_DUPL_CACHE_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of devices in scan duplicate filter\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"If the period value is non-zero, the controller will periodically clear the device information\\nstored in the scan duuplicate filter. If it is 0, the scan duuplicate filter will not be cleared\\nuntil the scanning is disabled. Duplicate advertisements for this period should not be sent to the\\nHost in advertising report events.\\nThere are two scenarios where the ADV packet will be repeatedly reported:\\n1. The duplicate scan cache is full, the controller will delete the oldest device information and\\nadd new device information.\\n2. When the refresh period is up, the controller will clear all device information and start filtering\\nagain.\",\n                                        \"id\": \"BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD\",\n                                        \"name\": \"BT_CTRL_DUPL_SCAN_CACHE_REFRESH_PERIOD\",\n                                        \"range\": null,\n                                        \"title\": \"Duplicate scan list refresh period (seconds)\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"BT_CTRL_BLE_MESH_SCAN_DUPL_EN && BT_CONTROLLER_ENABLED\",\n                                                \"help\": \"Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.\\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.\",\n                                                \"id\": \"BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE\",\n                                                \"name\": \"BT_CTRL_MESH_DUPL_SCAN_CACHE_SIZE\",\n                                                \"range\": null,\n                                                \"title\": \"Maximum number of Mesh adv packets in scan duplicate filter\",\n                                                \"type\": \"int\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"BT_CTRL_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"This enables the BLE scan duplicate for special BLE Mesh scan.\",\n                                        \"id\": \"BT_CTRL_BLE_MESH_SCAN_DUPL_EN\",\n                                        \"name\": \"BT_CTRL_BLE_MESH_SCAN_DUPL_EN\",\n                                        \"range\": null,\n                                        \"title\": \"Special duplicate scan mechanism for BLE Mesh scan\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"This select enables parameters setting of BLE scan duplicate.\",\n                                \"id\": \"BT_CTRL_BLE_SCAN_DUPL\",\n                                \"name\": \"BT_CTRL_BLE_SCAN_DUPL\",\n                                \"range\": null,\n                                \"title\": \"BLE Scan Duplicate Options\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM>\",\n                                        \"help\": \"Always enable the limitation on max tx/rx time for Coded-PHY connection\",\n                                        \"id\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN\",\n                                        \"name\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EN\",\n                                        \"range\": null,\n                                        \"title\": \"Force Enable\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM>\",\n                                        \"help\": \"Disable the limitation on max tx/rx time for Coded-PHY connection\",\n                                        \"id\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS\",\n                                        \"name\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_DIS\",\n                                        \"range\": null,\n                                        \"title\": \"Force Disable\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_WIFI_SW_COEXIST_ENABLE && BT_CONTROLLER_ENABLED\",\n                                \"help\": \"When using PHY-Coded in BLE connection, limitation on max tx/rx time can be applied to\\nbetter avoid dramatic performance deterioration of Wi-Fi.\",\n                                \"id\": \"component-config-bluetooth-controller-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection\",\n                                \"name\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM\",\n                                \"title\": \"Coexistence: limit on MAX Tx/Rx time for coded-PHY connection\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF\",\n                                \"name\": \"BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [\n                                                    {\n                                                        \"children\": [\n                                                            {\n                                                                \"children\": [],\n                                                                \"depends_on\": \"<choice BT_CTRL_LOW_POWER_CLOCK>\",\n                                                                \"help\": \"Main crystal can be used as low power clock for bluetooth modem sleep. If this option is\\nselected, bluetooth modem sleep can work under Dynamic Frequency Scaling(DFS) enabled, and\\nbluetooth can work under light sleep enabled. Main crystal has a relatively better performance\\nthan other bluetooth low power clock sources.\",\n                                                                \"id\": \"BT_CTRL_LPCLK_SEL_MAIN_XTAL\",\n                                                                \"name\": \"BT_CTRL_LPCLK_SEL_MAIN_XTAL\",\n                                                                \"range\": null,\n                                                                \"title\": \"Main crystal\",\n                                                                \"type\": \"bool\"\n                                                            },\n                                                            {\n                                                                \"children\": [],\n                                                                \"depends_on\": \"RTC_CLK_SRC_EXT_CRYS && <choice BT_CTRL_LOW_POWER_CLOCK>\",\n                                                                \"help\": \"External 32kHz crystal has a nominal frequency of 32.768kHz and provides good frequency\\nstability. If used as Bluetooth low power clock, External 32kHz can support Bluetooth\\nmodem sleep to be used with both DFS and light sleep.\",\n                                                                \"id\": \"BT_CTRL_LPCLK_SEL_EXT_32K_XTAL\",\n                                                                \"name\": \"BT_CTRL_LPCLK_SEL_EXT_32K_XTAL\",\n                                                                \"range\": null,\n                                                                \"title\": \"External 32kHz crystal\",\n                                                                \"type\": \"bool\"\n                                                            },\n                                                            {\n                                                                \"children\": [],\n                                                                \"depends_on\": \"RTC_CLK_SRC_INT_RC && <choice BT_CTRL_LOW_POWER_CLOCK>\",\n                                                                \"help\": \"Internal 150kHz RC oscillator. The accuracy of this clock is a lot larger than 500ppm which is required\\nin Bluetooth communication, so don't select this option in scenarios such as BLE connection state.\",\n                                                                \"id\": \"BT_CTRL_LPCLK_SEL_RTC_SLOW\",\n                                                                \"name\": \"BT_CTRL_LPCLK_SEL_RTC_SLOW\",\n                                                                \"range\": null,\n                                                                \"title\": \"Internal 150kHz RC oscillator\",\n                                                                \"type\": \"bool\"\n                                                            }\n                                                        ],\n                                                        \"depends_on\": \"BT_CTRL_MODEM_SLEEP_MODE_1 && BT_CONTROLLER_ENABLED\",\n                                                        \"help\": \"Select the low power clock source for bluetooth controller\",\n                                                        \"id\": \"component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode-1-bluetooth-low-power-clock\",\n                                                        \"name\": \"BT_CTRL_LOW_POWER_CLOCK\",\n                                                        \"title\": \"Bluetooth low power clock\",\n                                                        \"type\": \"choice\"\n                                                    }\n                                                ],\n                                                \"depends_on\": \"BT_CTRL_MODEM_SLEEP && BT_CONTROLLER_ENABLED\",\n                                                \"help\": \"Mode 1 is the currently supported sleep mode. In this mode,\\nbluetooth controller sleeps between and BLE events. A low\\npower clock is used to maintain bluetooth reference clock.\",\n                                                \"id\": \"BT_CTRL_MODEM_SLEEP_MODE_1\",\n                                                \"name\": \"BT_CTRL_MODEM_SLEEP_MODE_1\",\n                                                \"range\": null,\n                                                \"title\": \"Bluetooth Modem sleep Mode 1\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"!BT_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"Enable/disable bluetooth controller low power mode.\\nModem sleep is not supported to be used with UART HCI.\",\n                                        \"id\": \"BT_CTRL_MODEM_SLEEP\",\n                                        \"name\": \"BT_CTRL_MODEM_SLEEP\",\n                                        \"range\": null,\n                                        \"title\": \"Bluetooth modem sleep\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(BT_CTRL_LPCLK_SEL_MAIN_XTAL || BT_CTRL_LPCLK_SEL_EXT_32K_XTAL) && FREERTOS_USE_TICKLESS_IDLE && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"If this option is selected, the main crystal will power up during light sleep when the low power clock\\nselects an external 32kHz crystal but the external 32kHz crystal does not exist or the low power clock\\nselects the main crystal.\",\n                                        \"id\": \"BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP\",\n                                        \"name\": \"BT_CTRL_MAIN_XTAL_PU_DURING_LIGHT_SLEEP\",\n                                        \"range\": null,\n                                        \"title\": \"power up main XTAL during light sleep\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"id\": \"component-config-bluetooth-controller-options-modem-sleep-options\",\n                                \"title\": \"MODEM SLEEP Options\",\n                                \"type\": \"menu\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_SLEEP_MODE_EFF\",\n                                \"name\": \"BT_CTRL_SLEEP_MODE_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_SLEEP_CLOCK_EFF\",\n                                \"name\": \"BT_CTRL_SLEEP_CLOCK_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"BT_CTRL_HCI_TL_EFF\",\n                                \"name\": \"BT_CTRL_HCI_TL_EFF\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BT_CTRL_AGC_RECORRECT_EN && BT_CONTROLLER_ENABLED\",\n                                        \"help\": \"Enable coded phy AGC recorrect\",\n                                        \"id\": \"BT_CTRL_CODED_AGC_RECORRECT_EN\",\n                                        \"name\": \"BT_CTRL_CODED_AGC_RECORRECT_EN\",\n                                        \"range\": null,\n                                        \"title\": \"Enable coded phy AGC recorrect\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Enable uncoded phy AGC recorrect\",\n                                \"id\": \"BT_CTRL_AGC_RECORRECT_EN\",\n                                \"name\": \"BT_CTRL_AGC_RECORRECT_EN\",\n                                \"range\": null,\n                                \"title\": \"Enable HW AGC recorrect\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                                \"help\": \"Disable active scan backoff. The bluetooth spec requires that scanners should run a backoff procedure to\\nminimize collision of scan request PDUs from nultiple scanners. If scan backoff is disabled, in active\\nscanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.\",\n                                \"id\": \"BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX\",\n                                \"name\": \"BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX\",\n                                \"range\": null,\n                                \"title\": \"Disable active scan backoff\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BT_CONTROLLER_ENABLED\",\n                        \"id\": \"component-config-bluetooth-controller-options\",\n                        \"title\": \"Controller Options\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BT_ENABLED && BT_LE_RELEASE_IRAM_SUPPORTED\",\n                        \"help\": \"This option release Bluetooth text section and merge Bluetooth data, bss & text into\\na large free heap region when esp_bt_mem_release is called, total saving ~21kB or more of IRAM.\\nESP32-C2 only 3 configurable PMP entries available, rest of them are hard-coded.\\nWe cannot split the memory into 3 different regions (IRAM, BLE-IRAM, DRAM).\\nSo this option will disable the PMP (ESP_SYSTEM_PMP_IDRAM_SPLIT)\",\n                        \"id\": \"BT_RELEASE_IRAM\",\n                        \"name\": \"BT_RELEASE_IRAM\",\n                        \"range\": null,\n                        \"title\": \"Release Bluetooth text (READ DOCS FIRST)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-bluetooth\",\n                \"title\": \"Bluetooth\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"It is a temporary solution and needs further modifications.\",\n                        \"id\": \"BLE_MESH_HCI_5_0\",\n                        \"name\": \"BLE_MESH_HCI_5_0\",\n                        \"range\": null,\n                        \"title\": \"Support sending 20ms non-connectable adv packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to allow using specific duplicate scan filter\\nin BLE Mesh, and Scan Duplicate Type must be set by choosing the\\noption in the Bluetooth Controller section in menuconfig, which is\\n\\\"Scan Duplicate By Device Address and Advertising Data\\\".\",\n                        \"id\": \"BLE_MESH_USE_DUPLICATE_SCAN\",\n                        \"name\": \"BLE_MESH_USE_DUPLICATE_SCAN\",\n                        \"range\": null,\n                        \"title\": \"Support Duplicate Scan in BLE Mesh\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BLE_MESH_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"BLE_MESH_MEM_ALLOC_MODE_INTERNAL\",\n                                \"name\": \"BLE_MESH_MEM_ALLOC_MODE_INTERNAL\",\n                                \"range\": null,\n                                \"title\": \"Internal DRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && <choice BLE_MESH_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"BLE_MESH_MEM_ALLOC_MODE_EXTERNAL\",\n                                \"name\": \"BLE_MESH_MEM_ALLOC_MODE_EXTERNAL\",\n                                \"range\": null,\n                                \"title\": \"External SPIRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice BLE_MESH_MEM_ALLOC_MODE>\",\n                                \"help\": \"Enable this option to use the default memory allocation strategy when\\nexternal SPIRAM is enabled. See the SPIRAM options for more details.\",\n                                \"id\": \"BLE_MESH_MEM_ALLOC_MODE_DEFAULT\",\n                                \"name\": \"BLE_MESH_MEM_ALLOC_MODE_DEFAULT\",\n                                \"range\": null,\n                                \"title\": \"Default alloc mode\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && <choice BLE_MESH_MEM_ALLOC_MODE>\",\n                                \"help\": \"Allows to use IRAM memory region as 8bit accessible region. Every\\nunaligned (8bit or 16bit) access will result in an exception and\\nincur penalty of certain clock cycles per unaligned read/write.\",\n                                \"id\": \"BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT\",\n                                \"name\": \"BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT\",\n                                \"range\": null,\n                                \"title\": \"Internal IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Allocation strategy for BLE Mesh stack, essentially provides ability to\\nallocate all required dynamic allocations from,\\n\\n- Internal DRAM memory only\\n- External SPIRAM memory only\\n- Either internal or external memory based on default malloc()\\n  behavior in ESP-IDF\\n- Internal IRAM memory wherever applicable else internal DRAM\\n\\nRecommended mode here is always internal (*), since that is most preferred\\nfrom security perspective. But if application requirement does not\\nallow sufficient free internal memory then alternate mode can be\\nselected.\\n\\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\\nSPIRAM contents provided hardware flash encryption feature is enabled.\\nIn that case, using external SPIRAM allocation strategy is also safe choice\\nfrom security perspective.\",\n                        \"id\": \"component-config-esp-ble-mesh-support-memory-allocation-strategy\",\n                        \"name\": \"BLE_MESH_MEM_ALLOC_MODE\",\n                        \"title\": \"Memory allocation strategy\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IDF_TARGET_ESP32 && SPIRAM && <choice BLE_MESH_FREERTOS_STATIC_ALLOC_MODE>\",\n                                        \"help\": \"If enabled, BLE Mesh allocates dynamic memory from external SPIRAM for\\nFreeRTOS objects, i.e. mutex, queue, and task stack. External SPIRAM\\ncan only be used for task stack when SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY\\nis enabled. See the SPIRAM options for more details.\",\n                                        \"id\": \"BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL\",\n                                        \"name\": \"BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL\",\n                                        \"range\": null,\n                                        \"title\": \"External SPIRAM\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && <choice BLE_MESH_FREERTOS_STATIC_ALLOC_MODE>\",\n                                        \"help\": \"If enabled, BLE Mesh allocates dynamic memory from internal IRAM for\\nFreeRTOS objects, i.e. mutex, queue. Note: IRAM region cannot be used\\nas task stack.\",\n                                        \"id\": \"BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT\",\n                                        \"name\": \"BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT\",\n                                        \"range\": null,\n                                        \"title\": \"Internal IRAM\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_FREERTOS_STATIC_ALLOC && BLE_MESH\",\n                                \"help\": \"Choose the memory to be used for FreeRTOS objects.\",\n                                \"id\": \"component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects\",\n                                \"name\": \"BLE_MESH_FREERTOS_STATIC_ALLOC_MODE\",\n                                \"title\": \"Memory allocation for FreeRTOS objects\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": \"FREERTOS_SUPPORT_STATIC_ALLOCATION && ((IDF_TARGET_ESP32 && SPIRAM) || ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY) && BLE_MESH\",\n                        \"help\": \"Enable this option to use FreeRTOS static allocation APIs for BLE Mesh,\\nwhich provides the ability to use different dynamic memory (i.e. SPIRAM\\nor IRAM) for FreeRTOS objects.\\nIf this option is disabled, the FreeRTOS static allocation APIs will not\\nbe used, and internal DRAM will be allocated for FreeRTOS objects.\",\n                        \"id\": \"BLE_MESH_FREERTOS_STATIC_ALLOC\",\n                        \"name\": \"BLE_MESH_FREERTOS_STATIC_ALLOC\",\n                        \"range\": null,\n                        \"title\": \"Enable FreeRTOS static allocation\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"If enabled, users can use the function esp_ble_mesh_deinit() to de-initialize\\nthe whole BLE Mesh stack.\",\n                        \"id\": \"BLE_MESH_DEINIT\",\n                        \"name\": \"BLE_MESH_DEINIT\",\n                        \"range\": null,\n                        \"title\": \"Support de-initialize BLE Mesh stack\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_SUPPORT_BLE_ADV && BLE_MESH\",\n                                        \"help\": \"Number of advertising buffers for BLE packets available.\",\n                                        \"id\": \"BLE_MESH_BLE_ADV_BUF_COUNT\",\n                                        \"name\": \"BLE_MESH_BLE_ADV_BUF_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"Number of advertising buffers for BLE advertising packets\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"When selected, users can send normal BLE advertising packets\\nwith specific API.\",\n                                \"id\": \"BLE_MESH_SUPPORT_BLE_ADV\",\n                                \"name\": \"BLE_MESH_SUPPORT_BLE_ADV\",\n                                \"range\": null,\n                                \"title\": \"Support sending normal BLE advertising packets\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"When selected, users can register a callback and receive normal BLE\\nadvertising packets in the application layer.\",\n                                \"id\": \"BLE_MESH_SUPPORT_BLE_SCAN\",\n                                \"name\": \"BLE_MESH_SUPPORT_BLE_SCAN\",\n                                \"range\": null,\n                                \"title\": \"Support scanning normal BLE advertising packets\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support\",\n                        \"title\": \"BLE Mesh and BLE coexistence support\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to allow BLE Mesh fast provisioning solution to be used.\\nWhen there are multiple unprovisioned devices around, fast provisioning can\\ngreatly reduce the time consumption of the whole provisioning process.\\nWhen this option is enabled, and after an unprovisioned device is provisioned\\ninto a node successfully, it can be changed to a temporary Provisioner.\",\n                        \"id\": \"BLE_MESH_FAST_PROV\",\n                        \"name\": \"BLE_MESH_FAST_PROV\",\n                        \"range\": null,\n                        \"title\": \"Enable BLE Mesh Fast Provisioning\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable the device to be provisioned into a node. This option should be\\nenabled when an unprovisioned device is going to be provisioned into a\\nnode and communicate with other nodes in the BLE Mesh network.\",\n                        \"id\": \"BLE_MESH_NODE\",\n                        \"name\": \"BLE_MESH_NODE\",\n                        \"range\": null,\n                        \"title\": \"Support for BLE Mesh Node\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many unprovisioned devices can be added to device\\nqueue for provisioning. Users can use this option to define the size of the\\nqueue in the bottom layer which is used to store unprovisioned device\\ninformation (e.g. Device UUID, address).\",\n                                \"id\": \"BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM\",\n                                \"name\": \"BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of unprovisioned devices that can be added to device queue\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many devices can be provisioned by a Provisioner.\\nThis value indicates the maximum number of unprovisioned devices which can be\\nprovisioned by a Provisioner. For instance, if the value is 6, it means the\\nProvisioner can provision up to 6 unprovisioned devices.\\nTheoretically a Provisioner without the limitation of its memory can provision\\nup to 32766 unprovisioned devices, here we limit the maximum number to 100\\njust to limit the memory used by a Provisioner. The bigger the value is, the\\nmore memory it will cost by a Provisioner to store the information of nodes.\",\n                                \"id\": \"BLE_MESH_MAX_PROV_NODES\",\n                                \"name\": \"BLE_MESH_MAX_PROV_NODES\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of devices that can be provisioned by Provisioner\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PB_ADV && BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many devices can be provisioned at the same time\\nusing PB-ADV. For examples, if the value is 2, it means a Provisioner can\\nprovision two unprovisioned devices with PB-ADV at the same time.\",\n                                \"id\": \"BLE_MESH_PBA_SAME_TIME\",\n                                \"name\": \"BLE_MESH_PBA_SAME_TIME\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of PB-ADV running at the same time by Provisioner\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PB_GATT && BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many devices can be provisioned at the same\\ntime using PB-GATT. For example, if the value is 2, it means a Provisioner\\ncan provision two unprovisioned devices with PB-GATT at the same time.\",\n                                \"id\": \"BLE_MESH_PBG_SAME_TIME\",\n                                \"name\": \"BLE_MESH_PBG_SAME_TIME\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of PB-GATT running at the same time by Provisioner\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many subnets per network a Provisioner can create.\\nIndeed, this value decides the number of network keys which can be added by a Provisioner.\",\n                                \"id\": \"BLE_MESH_PROVISIONER_SUBNET_COUNT\",\n                                \"name\": \"BLE_MESH_PROVISIONER_SUBNET_COUNT\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of mesh subnets that can be created by Provisioner\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"This option specifies how many application keys the Provisioner can have.\\nIndeed, this value decides the number of the application keys which can be added by a Provisioner.\",\n                                \"id\": \"BLE_MESH_PROVISIONER_APP_KEY_COUNT\",\n                                \"name\": \"BLE_MESH_PROVISIONER_APP_KEY_COUNT\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of application keys that can be owned by Provisioner\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_PROVISIONER_RECV_HB && BLE_MESH_PROVISIONER && BLE_MESH\",\n                                        \"help\": \"This option specifies how many heartbeat filter entries Provisioner supports.\\nThe heartbeat filter (acceptlist or rejectlist) entries are used to store a\\nlist of SRC and DST which can be used to decide if a heartbeat message will\\nbe processed and notified to the application layer by Provisioner.\\nNote: The filter is an empty rejectlist by default.\",\n                                        \"id\": \"BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE\",\n                                        \"name\": \"BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of filter entries for receiving Heartbeat messages\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH\",\n                                \"help\": \"When this option is enabled, Provisioner can call specific functions to enable\\nor disable receiving Heartbeat messages and notify them to the application layer.\",\n                                \"id\": \"BLE_MESH_PROVISIONER_RECV_HB\",\n                                \"name\": \"BLE_MESH_PROVISIONER_RECV_HB\",\n                                \"range\": null,\n                                \"title\": \"Support receiving Heartbeat messages\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable the device to be a Provisioner. The option should be enabled when\\na device is going to act as a Provisioner and provision unprovisioned\\ndevices into the BLE Mesh network.\",\n                        \"id\": \"BLE_MESH_PROVISIONER\",\n                        \"name\": \"BLE_MESH_PROVISIONER\",\n                        \"range\": null,\n                        \"title\": \"Support for BLE Mesh Provisioner\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to support BLE Mesh Provisioning functionality. For\\nBLE Mesh, this option should be always enabled.\",\n                        \"id\": \"BLE_MESH_PROV\",\n                        \"name\": \"BLE_MESH_PROV\",\n                        \"range\": null,\n                        \"title\": \"BLE Mesh Provisioning support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_NODE && BLE_MESH_PB_ADV && BLE_MESH\",\n                                \"help\": \"This option specifies the interval of sending two consecutive unprovisioned\\ndevice beacon, users can use this option to change the frequency of sending\\nunprovisioned device beacon. For example, if the value is 5, it means the\\nunprovisioned device beacon will send every 5 seconds. When the option of\\nBLE_MESH_FAST_PROV is selected, the value is better to be 3 seconds, or less.\",\n                                \"id\": \"BLE_MESH_UNPROVISIONED_BEACON_INTERVAL\",\n                                \"name\": \"BLE_MESH_UNPROVISIONED_BEACON_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"Interval between two consecutive Unprovisioned Device Beacon\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to allow the device to be provisioned over the\\nadvertising bearer. This option should be enabled if PB-ADV is\\ngoing to be used during provisioning procedure.\",\n                        \"id\": \"BLE_MESH_PB_ADV\",\n                        \"name\": \"BLE_MESH_PB_ADV\",\n                        \"range\": null,\n                        \"title\": \"Provisioning support using the advertising bearer (PB-ADV)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to allow the device to be provisioned over GATT.\\nThis option should be enabled if PB-GATT is going to be used during\\nprovisioning procedure.\\n\\n# Virtual option enabled whenever any Proxy protocol is needed\",\n                        \"id\": \"BLE_MESH_PB_GATT\",\n                        \"name\": \"BLE_MESH_PB_GATT\",\n                        \"range\": null,\n                        \"title\": \"Provisioning support using GATT (PB-GATT)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to support BLE Mesh Proxy protocol used by PB-GATT\\nand other proxy pdu transmission.\",\n                        \"id\": \"BLE_MESH_PROXY\",\n                        \"name\": \"BLE_MESH_PROXY\",\n                        \"range\": null,\n                        \"title\": \"BLE Mesh Proxy protocol support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_GATT_PROXY_SERVER && BLE_MESH\",\n                                \"help\": \"This option determines for how long the local node advertises using\\nNode Identity. The given value is in seconds. The specification limits\\nthis to 60 seconds and lists it as the recommended value as well.\\nSo leaving the default value is the safest option.\\nWhen an unprovisioned device is provisioned successfully and becomes a\\nnode, it will start to advertise using Node Identity during the time\\nset by this option. And after that, Network ID will be advertised.\",\n                                \"id\": \"BLE_MESH_NODE_ID_TIMEOUT\",\n                                \"name\": \"BLE_MESH_NODE_ID_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Node Identity advertising timeout\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_GATT_PROXY_SERVER && BLE_MESH\",\n                                \"help\": \"This option specifies how many Proxy Filter entries the local node supports.\\nThe entries of Proxy filter (whitelist or blacklist) are used to store a\\nlist of addresses which can be used to decide which messages will be forwarded\\nto the Proxy Client by the Proxy Server.\",\n                                \"id\": \"BLE_MESH_PROXY_FILTER_SIZE\",\n                                \"name\": \"BLE_MESH_PROXY_FILTER_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of filter entries per Proxy Client\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH_NODE && BLE_MESH\",\n                        \"help\": \"This option enables support for Mesh GATT Proxy Service, i.e. the\\nability to act as a proxy between a Mesh GATT Client and a Mesh network.\\nThis option should be enabled if a node is going to be a Proxy Server.\",\n                        \"id\": \"BLE_MESH_GATT_PROXY_SERVER\",\n                        \"name\": \"BLE_MESH_GATT_PROXY_SERVER\",\n                        \"range\": null,\n                        \"title\": \"BLE Mesh GATT Proxy Server\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option enables support for Mesh GATT Proxy Client. The Proxy Client\\ncan use the GATT bearer to send mesh messages to a node that supports the\\nadvertising bearer.\",\n                        \"id\": \"BLE_MESH_GATT_PROXY_CLIENT\",\n                        \"name\": \"BLE_MESH_GATT_PROXY_CLIENT\",\n                        \"range\": null,\n                        \"title\": \"BLE Mesh GATT Proxy Client\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable BLE Mesh net buffer pool tracking. This option is used to introduce another\\nvariable in the bottom layer to record the usage of advertising buffers of BLE Mesh\\ndevices. Recommend to enable this option as default.\",\n                        \"id\": \"BLE_MESH_NET_BUF_POOL_USAGE\",\n                        \"name\": \"BLE_MESH_NET_BUF_POOL_USAGE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"This value defines in seconds how soon any pending changes are actually\\nwritten into persistent storage (flash) after a change occurs.\\nThe option allows nodes to delay a certain period of time to save proper\\ninformation to flash. The default value is 0, which means information\\nwill be stored immediately once there are updates.\",\n                                \"id\": \"BLE_MESH_STORE_TIMEOUT\",\n                                \"name\": \"BLE_MESH_STORE_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Delay (in seconds) before storing anything persistently\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"This value defines how often the local sequence number gets updated in\\npersistent storage (i.e. flash). e.g. a value of 100 means that the\\nsequence number will be stored to flash on every 100th increment.\\nIf the node sends messages very frequently a higher value makes more\\nsense, whereas if the node sends infrequently a value as low as 0\\n(update storage for every increment) can make sense. When the stack\\ngets initialized it will add sequence number to the last stored one,\\nso that it starts off with a value that's guaranteed to be larger than\\nthe last one used before power off.\",\n                                \"id\": \"BLE_MESH_SEQ_STORE_RATE\",\n                                \"name\": \"BLE_MESH_SEQ_STORE_RATE\",\n                                \"range\": null,\n                                \"title\": \"How often the sequence number gets updated in storage\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"This value defines in seconds how soon the RPL (Replay Protection List)\\ngets written to persistent storage after a change occurs. If the node\\nreceives messages frequently, then a large value is recommended. If the\\nnode receives messages rarely, then the value can be as low as 0 (which\\nmeans the RPL is written into the storage immediately).\\nNote that if the node operates in a security-sensitive case, and there is\\na risk of sudden power-off, then a value of 0 is strongly recommended.\\nOtherwise, a power loss before RPL being written into the storage may\\nintroduce message replay attacks and system security will be in a\\nvulnerable state.\",\n                                \"id\": \"BLE_MESH_RPL_STORE_TIMEOUT\",\n                                \"name\": \"BLE_MESH_RPL_STORE_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Minimum frequency that the RPL gets updated in storage\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_NODE && BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"This option is created to solve the issue of failure in recovering\\nnode information after mesh stack updates. In the old version mesh\\nstack, there is no key of \\\"mesh/role\\\" in nvs. In the new version\\nmesh stack, key of \\\"mesh/role\\\" is added in nvs, recovering node\\ninformation needs to check \\\"mesh/role\\\" key in nvs and implements\\nselective recovery of mesh node information. Therefore, there may\\nbe failure in recovering node information during node restarting\\nafter OTA.\\n\\nThe new version mesh stack adds the option of \\\"mesh/role\\\" because\\nwe have added the support of storing Provisioner information, while\\nthe old version only supports storing node information.\\n\\nIf users are updating their nodes from old version to new version,\\nwe recommend enabling this option, so that system could set the flag\\nin advance before recovering node information and make sure the node\\ninformation recovering could work as expected.\",\n                                \"id\": \"BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY\",\n                                \"name\": \"BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY\",\n                                \"range\": null,\n                                \"title\": \"A specific option for settings backward compatibility\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_SPECIFIC_PARTITION && BLE_MESH_SETTINGS && BLE_MESH\",\n                                        \"help\": \"This value defines the name of the specified NVS partition used by the\\nmesh stack.\",\n                                        \"id\": \"BLE_MESH_PARTITION_NAME\",\n                                        \"name\": \"BLE_MESH_PARTITION_NAME\",\n                                        \"range\": null,\n                                        \"title\": \"Name of the NVS partition for BLE Mesh\",\n                                        \"type\": \"string\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"When selected, the mesh stack will use a specified NVS partition instead of\\ndefault NVS partition. Note that the specified partition must be registered\\nwith NVS using nvs_flash_init_partition() API, and the partition must exists\\nin the csv file.\\nWhen Provisioner needs to store a large amount of nodes' information in the\\nflash (e.g. more than 20), this option is recommended to be enabled.\",\n                                \"id\": \"BLE_MESH_SPECIFIC_PARTITION\",\n                                \"name\": \"BLE_MESH_SPECIFIC_PARTITION\",\n                                \"range\": null,\n                                \"title\": \"Use a specific NVS partition for BLE Mesh\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_USE_MULTIPLE_NAMESPACE && BLE_MESH_SETTINGS && BLE_MESH\",\n                                        \"help\": \"This option specifies the maximum NVS namespaces supported by Provisioner.\",\n                                        \"id\": \"BLE_MESH_MAX_NVS_NAMESPACE\",\n                                        \"name\": \"BLE_MESH_MAX_NVS_NAMESPACE\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of NVS namespaces\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_PROVISIONER && BLE_MESH_SETTINGS && BLE_MESH\",\n                                \"help\": \"When selected, Provisioner can use different NVS namespaces to store\\ndifferent instances of mesh information.\\nFor example, if in the first room, Provisioner uses NetKey A, AppKey\\nA and provisions three devices, these information will be treated as\\nmesh information instance A. When the Provisioner moves to the second\\nroom, it uses NetKey B, AppKey B and provisions two devices, then the\\ninformation will be treated as mesh information instance B.\\nHere instance A and instance B will be stored in different namespaces.\\nWith this option enabled, Provisioner needs to use specific functions\\nto open the corresponding NVS namespace, restore the mesh information,\\nrelease the mesh information or erase the mesh information.\",\n                                \"id\": \"BLE_MESH_USE_MULTIPLE_NAMESPACE\",\n                                \"name\": \"BLE_MESH_USE_MULTIPLE_NAMESPACE\",\n                                \"range\": null,\n                                \"title\": \"Support using multiple NVS namespaces by Provisioner\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"When selected, the BLE Mesh stack will take care of storing/restoring the BLE\\nMesh configuration persistently in flash.\\nIf the device is a BLE Mesh node, when this option is enabled, the configuration\\nof the device will be stored persistently, including unicast address, NetKey,\\nAppKey, etc.\\nAnd if the device is a BLE Mesh Provisioner, the information of the device will\\nbe stored persistently, including the information of provisioned nodes, NetKey,\\nAppKey, etc.\",\n                        \"id\": \"BLE_MESH_SETTINGS\",\n                        \"name\": \"BLE_MESH_SETTINGS\",\n                        \"range\": null,\n                        \"title\": \"Store BLE Mesh configuration persistently\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies how many subnets a Mesh network can have at the same time.\\nIndeed, this value decides the number of the network keys which can be owned by a node.\",\n                        \"id\": \"BLE_MESH_SUBNET_COUNT\",\n                        \"name\": \"BLE_MESH_SUBNET_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of mesh subnets per network\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies how many application keys the device can store per network.\\nIndeed, this value decides the number of the application keys which can be owned by a node.\",\n                        \"id\": \"BLE_MESH_APP_KEY_COUNT\",\n                        \"name\": \"BLE_MESH_APP_KEY_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of application keys per network\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies the maximum number of application keys to which each model\\ncan be bound.\",\n                        \"id\": \"BLE_MESH_MODEL_KEY_COUNT\",\n                        \"name\": \"BLE_MESH_MODEL_KEY_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of application keys per model\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies the maximum number of addresses to which each model can\\nbe subscribed.\",\n                        \"id\": \"BLE_MESH_MODEL_GROUP_COUNT\",\n                        \"name\": \"BLE_MESH_MODEL_GROUP_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of group address subscriptions per model\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies how many Label UUIDs can be stored.\\nIndeed, this value decides the number of the Virtual Addresses can be supported by a node.\",\n                        \"id\": \"BLE_MESH_LABEL_COUNT\",\n                        \"name\": \"BLE_MESH_LABEL_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of Label UUIDs used for Virtual Addresses\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option specifies the maximum capacity of the replay protection list.\\nIt is similar to Network message cache size, but has a different purpose.\\nThe replay protection list is used to prevent a node from replay attack,\\nwhich will store the source address and sequence number of the received\\nmesh messages.\\nFor Provisioner, the replay protection list size should not be smaller than\\nthe maximum number of nodes whose information can be stored. And the element\\nnumber of each node should also be taken into consideration. For example, if\\nProvisioner can provision up to 20 nodes and each node contains two elements,\\nthen the replay protection list size of Provisioner should be at least 40.\",\n                        \"id\": \"BLE_MESH_CRPL\",\n                        \"name\": \"BLE_MESH_CRPL\",\n                        \"range\": null,\n                        \"title\": \"Maximum capacity of the replay protection list\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Number of messages that are cached for the network. This helps prevent\\nunnecessary decryption operations and unnecessary relays. This option\\nis similar to Replay protection list, but has a different purpose.\\nA node is not required to cache the entire Network PDU and may cache\\nonly part of it for tracking, such as values for SRC/SEQ or others.\",\n                        \"id\": \"BLE_MESH_MSG_CACHE_SIZE\",\n                        \"name\": \"BLE_MESH_MSG_CACHE_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Network message cache size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Number of advertising buffers available. The transport layer reserves\\nADV_BUF_COUNT - 3 buffers for outgoing segments. The maximum outgoing\\nSDU size is 12 times this value (out of which 4 or 8 bytes are used\\nfor the Transport Layer MIC). For example, 5 segments means the maximum\\nSDU size is 60 bytes, which leaves 56 bytes for application layer data\\nusing a 4-byte MIC, or 52 bytes using an 8-byte MIC.\",\n                        \"id\": \"BLE_MESH_ADV_BUF_COUNT\",\n                        \"name\": \"BLE_MESH_ADV_BUF_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Number of advertising buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"When the IV Update state enters Normal operation or IV Update\\nin Progress, we need to keep track of how many hours has passed\\nin the state, since the specification requires us to remain in\\nthe state at least for 96 hours (Update in Progress has an\\nadditional upper limit of 144 hours).\\n\\nIn order to fulfill the above requirement, even if the node might\\nbe powered off once in a while, we need to store persistently\\nhow many hours the node has been in the state. This doesn't\\nnecessarily need to happen every hour (thanks to the flexible\\nduration range). The exact cadence will depend a lot on the\\nways that the node will be used and what kind of power source it\\nhas.\\n\\nSince there is no single optimal answer, this configuration\\noption allows specifying a divider, i.e. how many intervals\\nthe 96 hour minimum gets split into. After each interval the\\nduration that the node has been in the current state gets\\nstored to flash. E.g. the default value of 4 means that the\\nstate is saved every 24 hours (96 / 4).\",\n                        \"id\": \"BLE_MESH_IVU_DIVIDER\",\n                        \"name\": \"BLE_MESH_IVU_DIVIDER\",\n                        \"range\": null,\n                        \"title\": \"Divider for IV Update state refresh timer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"According to Section 3.10.5 of Mesh Specification v1.0.1.\\nIf a node in Normal Operation receives a Secure Network beacon with an IV index\\nequal to the last known IV index+1 and the IV Update Flag set to 0, the node may\\nupdate its IV without going to the IV Update in Progress state, or it may initiate\\nan IV Index Recovery procedure (Section 3.10.6), or it may ignore the Secure\\nNetwork beacon. The node makes the choice depending on the time since last IV\\nupdate and the likelihood that the node has missed the Secure Network beacons\\nwith the IV update Flag.\\nWhen the above situation is encountered, this option can be used to decide whether\\nto perform the IV index recovery procedure.\",\n                        \"id\": \"BLE_MESH_IVU_RECOVERY_IVI\",\n                        \"name\": \"BLE_MESH_IVU_RECOVERY_IVI\",\n                        \"range\": null,\n                        \"title\": \"Recovery the IV index when the latest whole IV update procedure is missed\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Maximum number of simultaneous outgoing multi-segment and/or reliable messages.\\nThe default value is 1, which means the device can only send one segmented\\nmessage at a time. And if another segmented message is going to be sent, it\\nshould wait for the completion of the previous one.\\nIf users are going to send multiple segmented messages at the same time, this\\nvalue should be configured properly.\",\n                        \"id\": \"BLE_MESH_TX_SEG_MSG_COUNT\",\n                        \"name\": \"BLE_MESH_TX_SEG_MSG_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of simultaneous outgoing segmented messages\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Maximum number of simultaneous incoming multi-segment and/or reliable messages.\\nThe default value is 1, which means the device can only receive one segmented\\nmessage at a time. And if another segmented message is going to be received,\\nit should wait for the completion of the previous one.\\nIf users are going to receive multiple segmented messages at the same time, this\\nvalue should be configured properly.\",\n                        \"id\": \"BLE_MESH_RX_SEG_MSG_COUNT\",\n                        \"name\": \"BLE_MESH_RX_SEG_MSG_COUNT\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of simultaneous incoming segmented messages\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Maximum incoming Upper Transport Access PDU length. Leave this to the default\\nvalue, unless you really need to optimize memory usage.\",\n                        \"id\": \"BLE_MESH_RX_SDU_MAX\",\n                        \"name\": \"BLE_MESH_RX_SDU_MAX\",\n                        \"range\": null,\n                        \"title\": \"Maximum incoming Upper Transport Access PDU length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Maximum number of segments supported for outgoing messages.\\nThis value should typically be fine-tuned based on what\\nmodels the local node supports, i.e. what's the largest\\nmessage payload that the node needs to be able to send.\\nThis value affects memory and call stack consumption, which\\nis why the default is lower than the maximum that the\\nspecification would allow (32 segments).\\n\\nThe maximum outgoing SDU size is 12 times this number (out of\\nwhich 4 or 8 bytes is used for the Transport Layer MIC). For\\nexample, 5 segments means the maximum SDU size is 60 bytes,\\nwhich leaves 56 bytes for application layer data using a\\n4-byte MIC and 52 bytes using an 8-byte MIC.\\n\\nBe sure to specify a sufficient number of advertising buffers\\nwhen setting this option to a higher value. There must be at\\nleast three more advertising buffers (BLE_MESH_ADV_BUF_COUNT)\\nas there are outgoing segments.\",\n                        \"id\": \"BLE_MESH_TX_SEG_MAX\",\n                        \"name\": \"BLE_MESH_TX_SEG_MAX\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of segments in outgoing messages\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_RELAY_ADV_BUF && BLE_MESH_RELAY && BLE_MESH\",\n                                        \"help\": \"Number of advertising buffers for relay packets available.\",\n                                        \"id\": \"BLE_MESH_RELAY_ADV_BUF_COUNT\",\n                                        \"name\": \"BLE_MESH_RELAY_ADV_BUF_COUNT\",\n                                        \"range\": null,\n                                        \"title\": \"Number of advertising buffers for relay packets\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_RELAY && BLE_MESH\",\n                                \"help\": \"When selected, self-send packets will be put in a high-priority\\nqueue and relay packets will be put in a low-priority queue.\",\n                                \"id\": \"BLE_MESH_RELAY_ADV_BUF\",\n                                \"name\": \"BLE_MESH_RELAY_ADV_BUF\",\n                                \"range\": null,\n                                \"title\": \"Use separate advertising buffers for relay packets\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH_NODE && BLE_MESH\",\n                        \"help\": \"Support for acting as a Mesh Relay Node. Enabling this option will allow\\na node to support the Relay feature, and the Relay feature can still\\nbe enabled or disabled by proper configuration messages. Disabling this\\noption will let a node not support the Relay feature.\",\n                        \"id\": \"BLE_MESH_RELAY\",\n                        \"name\": \"BLE_MESH_RELAY\",\n                        \"range\": null,\n                        \"title\": \"Relay support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Perform the Friendship establishment using low power with the help of a\\nreduced scan duty cycle. The downside of this is that the node may miss\\nout on messages intended for it until it has successfully set up Friendship\\nwith a Friend node.\\nWhen this option is enabled, the node will stop scanning for a period of\\ntime after a Friend Request or Friend Poll is sent, so as to reduce more\\npower consumption.\",\n                                \"id\": \"BLE_MESH_LPN_ESTABLISHMENT\",\n                                \"name\": \"BLE_MESH_LPN_ESTABLISHMENT\",\n                                \"range\": null,\n                                \"title\": \"Perform Friendship establishment using low power\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_LPN_AUTO && BLE_MESH_LOW_POWER && BLE_MESH\",\n                                        \"help\": \"Time in seconds from the last received message, that the node waits out\\nbefore starting to look for Friend nodes.\",\n                                        \"id\": \"BLE_MESH_LPN_AUTO_TIMEOUT\",\n                                        \"name\": \"BLE_MESH_LPN_AUTO_TIMEOUT\",\n                                        \"range\": null,\n                                        \"title\": \"Time from last received message before going to LPN mode\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Once provisioned, automatically enable LPN functionality and start looking\\nfor Friend nodes. If this option is disabled LPN mode needs to be manually\\nenabled by calling bt_mesh_lpn_set(true).\\nWhen an unprovisioned device is provisioned successfully and becomes a node,\\nenabling this option will trigger the node starts to send Friend Request at\\na certain period until it finds a proper Friend node.\",\n                                \"id\": \"BLE_MESH_LPN_AUTO\",\n                                \"name\": \"BLE_MESH_LPN_AUTO\",\n                                \"range\": null,\n                                \"title\": \"Automatically start looking for Friend nodes once provisioned\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Time in seconds between Friend Requests, if a previous Friend Request did\\nnot yield any acceptable Friend Offers.\",\n                                \"id\": \"BLE_MESH_LPN_RETRY_TIMEOUT\",\n                                \"name\": \"BLE_MESH_LPN_RETRY_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Retry timeout for Friend requests\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"The contribution of the RSSI, measured by the Friend node, used in Friend\\nOffer Delay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\\nRSSIFactor, one of the parameters carried by Friend Request sent by Low Power\\nnode, which is used to calculate the Friend Offer Delay.\",\n                                \"id\": \"BLE_MESH_LPN_RSSI_FACTOR\",\n                                \"name\": \"BLE_MESH_LPN_RSSI_FACTOR\",\n                                \"range\": null,\n                                \"title\": \"RSSIFactor, used in Friend Offer Delay calculation\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"The contribution of the supported Receive Window used in Friend Offer\\nDelay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\\nReceiveWindowFactor, one of the parameters carried by Friend Request sent by\\nLow Power node, which is used to calculate the Friend Offer Delay.\",\n                                \"id\": \"BLE_MESH_LPN_RECV_WIN_FACTOR\",\n                                \"name\": \"BLE_MESH_LPN_RECV_WIN_FACTOR\",\n                                \"range\": null,\n                                \"title\": \"ReceiveWindowFactor, used in Friend Offer Delay calculation\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"The MinQueueSizeLog field is defined as log_2(N), where N is the minimum\\nnumber of maximum size Lower Transport PDUs that the Friend node can store\\nin its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2,\\nand value 7 gives N = 128.\",\n                                \"id\": \"BLE_MESH_LPN_MIN_QUEUE_SIZE\",\n                                \"name\": \"BLE_MESH_LPN_MIN_QUEUE_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Minimum size of the acceptable friend queue (MinQueueSizeLog)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"The ReceiveDelay is the time between the Low Power node sending a\\nrequest and listening for a response. This delay allows the Friend\\nnode time to prepare the response. The value is in units of milliseconds.\",\n                                \"id\": \"BLE_MESH_LPN_RECV_DELAY\",\n                                \"name\": \"BLE_MESH_LPN_RECV_DELAY\",\n                                \"range\": null,\n                                \"title\": \"Receive delay requested by the local node\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"PollTimeout timer is used to measure time between two consecutive\\nrequests sent by a Low Power node. If no requests are received\\nthe Friend node before the PollTimeout timer expires, then the\\nfriendship is considered terminated. The value is in units of 100\\nmilliseconds, so e.g. a value of 300 means 30 seconds.\\nThe smaller the value, the faster the Low Power node tries to get\\nmessages from corresponding Friend node and vice versa.\",\n                                \"id\": \"BLE_MESH_LPN_POLL_TIMEOUT\",\n                                \"name\": \"BLE_MESH_LPN_POLL_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"The value of the PollTimeout timer\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"The initial value of the PollTimeout timer when Friendship is to be\\nestablished for the first time. After this, the timeout gradually\\ngrows toward the actual PollTimeout, doubling in value for each iteration.\\nThe value is in units of 100 milliseconds, so e.g. a value of 300 means\\n30 seconds.\",\n                                \"id\": \"BLE_MESH_LPN_INIT_POLL_TIMEOUT\",\n                                \"name\": \"BLE_MESH_LPN_INIT_POLL_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"The starting value of the PollTimeout timer\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Latency (in milliseconds) is the time it takes to enable scanning. In\\npractice, it means how much time in advance of the Receive Window, the\\nrequest to enable scanning is made.\",\n                                \"id\": \"BLE_MESH_LPN_SCAN_LATENCY\",\n                                \"name\": \"BLE_MESH_LPN_SCAN_LATENCY\",\n                                \"range\": null,\n                                \"title\": \"Latency for enabling scanning\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Maximum number of groups to which the LPN can subscribe.\",\n                                \"id\": \"BLE_MESH_LPN_GROUPS\",\n                                \"name\": \"BLE_MESH_LPN_GROUPS\",\n                                \"range\": null,\n                                \"title\": \"Number of groups the LPN can subscribe to\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_LOW_POWER && BLE_MESH\",\n                                \"help\": \"Automatically subscribe all nodes address when friendship\\nestablished.\",\n                                \"id\": \"BLE_MESH_LPN_SUB_ALL_NODES_ADDR\",\n                                \"name\": \"BLE_MESH_LPN_SUB_ALL_NODES_ADDR\",\n                                \"range\": null,\n                                \"title\": \"Automatically subscribe all nodes address\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH_NODE && BLE_MESH\",\n                        \"help\": \"Enable this option to operate as a Low Power Node. If low power consumption\\nis required by a node, this option should be enabled. And once the node\\nenters the mesh network, it will try to find a Friend node and establish a\\nfriendship.\",\n                        \"id\": \"BLE_MESH_LOW_POWER\",\n                        \"name\": \"BLE_MESH_LOW_POWER\",\n                        \"range\": null,\n                        \"title\": \"Support for Low Power features\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_FRIEND && BLE_MESH\",\n                                \"help\": \"Receive Window in milliseconds supported by the Friend node.\",\n                                \"id\": \"BLE_MESH_FRIEND_RECV_WIN\",\n                                \"name\": \"BLE_MESH_FRIEND_RECV_WIN\",\n                                \"range\": null,\n                                \"title\": \"Friend Receive Window\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_FRIEND && BLE_MESH\",\n                                \"help\": \"Minimum number of buffers available to be stored for each local Friend Queue.\\nThis option decides the size of each buffer which can be used by a Friend node\\nto store messages for each Low Power node.\",\n                                \"id\": \"BLE_MESH_FRIEND_QUEUE_SIZE\",\n                                \"name\": \"BLE_MESH_FRIEND_QUEUE_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Minimum number of buffers supported per Friend Queue\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_FRIEND && BLE_MESH\",\n                                \"help\": \"Size of the Subscription List that can be supported by a Friend node for a\\nLow Power node. And Low Power node can send Friend Subscription List Add or\\nFriend Subscription List Remove messages to the Friend node to add or remove\\nsubscription addresses.\",\n                                \"id\": \"BLE_MESH_FRIEND_SUB_LIST_SIZE\",\n                                \"name\": \"BLE_MESH_FRIEND_SUB_LIST_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Friend Subscription List Size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_FRIEND && BLE_MESH\",\n                                \"help\": \"Number of Low Power Nodes with which a Friend can have Friendship simultaneously.\\nA Friend node can have friendship with multiple Low Power nodes at the same time,\\nwhile a Low Power node can only establish friendship with only one Friend node at\\nthe same time.\",\n                                \"id\": \"BLE_MESH_FRIEND_LPN_COUNT\",\n                                \"name\": \"BLE_MESH_FRIEND_LPN_COUNT\",\n                                \"range\": null,\n                                \"title\": \"Number of supported LPN nodes\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_FRIEND && BLE_MESH\",\n                                \"help\": \"Number of incomplete segment lists tracked for each Friends' LPN.\\nIn other words, this determines from how many elements can segmented\\nmessages destined for the Friend queue be received simultaneously.\",\n                                \"id\": \"BLE_MESH_FRIEND_SEG_RX\",\n                                \"name\": \"BLE_MESH_FRIEND_SEG_RX\",\n                                \"range\": null,\n                                \"title\": \"Number of incomplete segment lists per LPN\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Enable this option to be able to act as a Friend Node.\",\n                        \"id\": \"BLE_MESH_FRIEND\",\n                        \"name\": \"BLE_MESH_FRIEND\",\n                        \"range\": null,\n                        \"title\": \"Support for Friend feature\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH && BLE_MESH\",\n                        \"help\": \"Select this to save the BLE Mesh related rodata code size. Enabling this option\\nwill disable the output of BLE Mesh debug log.\",\n                        \"id\": \"BLE_MESH_NO_LOG\",\n                        \"name\": \"BLE_MESH_NO_LOG\",\n                        \"range\": null,\n                        \"title\": \"Disable BLE Mesh debug logs (minimize bin size)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_NONE\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"NONE\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_ERROR\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_ERROR\",\n                                        \"range\": null,\n                                        \"title\": \"ERROR\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_WARNING\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_WARNING\",\n                                        \"range\": null,\n                                        \"title\": \"WARNING\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_INFO\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_INFO\",\n                                        \"range\": null,\n                                        \"title\": \"INFO\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_DEBUG\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_DEBUG\",\n                                        \"range\": null,\n                                        \"title\": \"DEBUG\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_STACK_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_TRACE_LEVEL_VERBOSE\",\n                                        \"name\": \"BLE_MESH_TRACE_LEVEL_VERBOSE\",\n                                        \"range\": null,\n                                        \"title\": \"VERBOSE\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                                \"help\": \"Define BLE Mesh trace level for BLE Mesh stack.\",\n                                \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack\",\n                                \"name\": \"BLE_MESH_STACK_TRACE_LEVEL\",\n                                \"title\": \"BLE_MESH_STACK\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                                \"help\": null,\n                                \"id\": \"BLE_MESH_STACK_TRACE_LEVEL\",\n                                \"name\": \"BLE_MESH_STACK_TRACE_LEVEL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level\",\n                        \"title\": \"BLE Mesh STACK DEBUG LOG LEVEL\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_NONE\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"NONE\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR\",\n                                        \"range\": null,\n                                        \"title\": \"ERROR\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING\",\n                                        \"range\": null,\n                                        \"title\": \"WARNING\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_INFO\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_INFO\",\n                                        \"range\": null,\n                                        \"title\": \"INFO\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG\",\n                                        \"range\": null,\n                                        \"title\": \"DEBUG\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice BLE_MESH_NET_BUF_TRACE_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE\",\n                                        \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE\",\n                                        \"range\": null,\n                                        \"title\": \"VERBOSE\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                                \"help\": \"Define BLE Mesh trace level for BLE Mesh net buffer.\",\n                                \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf\",\n                                \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL\",\n                                \"title\": \"BLE_MESH_NET_BUF\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                                \"help\": null,\n                                \"id\": \"BLE_MESH_NET_BUF_TRACE_LEVEL\",\n                                \"name\": \"BLE_MESH_NET_BUF_TRACE_LEVEL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level\",\n                        \"title\": \"BLE Mesh NET BUF DEBUG LOG LEVEL\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"Timeout value used by the node to get response of the acknowledged\\nmessage which is sent by the client model.\\nThis value indicates the maximum time that a client model waits for\\nthe response of the sent acknowledged messages. If a client model\\nuses 0 as the timeout value when sending acknowledged messages, then\\nthe default value will be used which is four seconds.\",\n                        \"id\": \"BLE_MESH_CLIENT_MSG_TIMEOUT\",\n                        \"name\": \"BLE_MESH_CLIENT_MSG_TIMEOUT\",\n                        \"range\": null,\n                        \"title\": \"Timeout(ms) for client message response\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Configuration Client model.\",\n                                \"id\": \"BLE_MESH_CFG_CLI\",\n                                \"name\": \"BLE_MESH_CFG_CLI\",\n                                \"range\": null,\n                                \"title\": \"Configuration Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Health Client model.\",\n                                \"id\": \"BLE_MESH_HEALTH_CLI\",\n                                \"name\": \"BLE_MESH_HEALTH_CLI\",\n                                \"range\": null,\n                                \"title\": \"Health Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Health Server model.\",\n                                \"id\": \"BLE_MESH_HEALTH_SRV\",\n                                \"name\": \"BLE_MESH_HEALTH_SRV\",\n                                \"range\": null,\n                                \"title\": \"Health Server model\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models\",\n                        \"title\": \"Support for BLE Mesh Foundation models\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic OnOff Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_ONOFF_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_ONOFF_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic OnOff Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Level Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_LEVEL_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_LEVEL_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Level Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Default Transition Time Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Default Transition Time Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Power OnOff Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_POWER_ONOFF_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_POWER_ONOFF_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Power OnOff Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Power Level Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_POWER_LEVEL_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_POWER_LEVEL_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Power Level Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Battery Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_BATTERY_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_BATTERY_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Battery Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Location Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_LOCATION_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_LOCATION_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Location Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic Property Client model.\",\n                                \"id\": \"BLE_MESH_GENERIC_PROPERTY_CLI\",\n                                \"name\": \"BLE_MESH_GENERIC_PROPERTY_CLI\",\n                                \"range\": null,\n                                \"title\": \"Generic Property Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Sensor Client model.\",\n                                \"id\": \"BLE_MESH_SENSOR_CLI\",\n                                \"name\": \"BLE_MESH_SENSOR_CLI\",\n                                \"range\": null,\n                                \"title\": \"Sensor Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Time Client model.\",\n                                \"id\": \"BLE_MESH_TIME_CLI\",\n                                \"name\": \"BLE_MESH_TIME_CLI\",\n                                \"range\": null,\n                                \"title\": \"Time Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Scene Client model.\",\n                                \"id\": \"BLE_MESH_SCENE_CLI\",\n                                \"name\": \"BLE_MESH_SCENE_CLI\",\n                                \"range\": null,\n                                \"title\": \"Scene Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Scheduler Client model.\",\n                                \"id\": \"BLE_MESH_SCHEDULER_CLI\",\n                                \"name\": \"BLE_MESH_SCHEDULER_CLI\",\n                                \"range\": null,\n                                \"title\": \"Scheduler Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Light Lightness Client model.\",\n                                \"id\": \"BLE_MESH_LIGHT_LIGHTNESS_CLI\",\n                                \"name\": \"BLE_MESH_LIGHT_LIGHTNESS_CLI\",\n                                \"range\": null,\n                                \"title\": \"Light Lightness Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Light CTL Client model.\",\n                                \"id\": \"BLE_MESH_LIGHT_CTL_CLI\",\n                                \"name\": \"BLE_MESH_LIGHT_CTL_CLI\",\n                                \"range\": null,\n                                \"title\": \"Light CTL Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Light HSL Client model.\",\n                                \"id\": \"BLE_MESH_LIGHT_HSL_CLI\",\n                                \"name\": \"BLE_MESH_LIGHT_HSL_CLI\",\n                                \"range\": null,\n                                \"title\": \"Light HSL Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Light XYL Client model.\",\n                                \"id\": \"BLE_MESH_LIGHT_XYL_CLI\",\n                                \"name\": \"BLE_MESH_LIGHT_XYL_CLI\",\n                                \"range\": null,\n                                \"title\": \"Light XYL Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Light LC Client model.\",\n                                \"id\": \"BLE_MESH_LIGHT_LC_CLI\",\n                                \"name\": \"BLE_MESH_LIGHT_LC_CLI\",\n                                \"range\": null,\n                                \"title\": \"Light LC Client model\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Generic server models.\",\n                                \"id\": \"BLE_MESH_GENERIC_SERVER\",\n                                \"name\": \"BLE_MESH_GENERIC_SERVER\",\n                                \"range\": null,\n                                \"title\": \"Generic server models\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Sensor server models.\",\n                                \"id\": \"BLE_MESH_SENSOR_SERVER\",\n                                \"name\": \"BLE_MESH_SENSOR_SERVER\",\n                                \"range\": null,\n                                \"title\": \"Sensor server models\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Time and Scenes server models.\",\n                                \"id\": \"BLE_MESH_TIME_SCENE_SERVER\",\n                                \"name\": \"BLE_MESH_TIME_SCENE_SERVER\",\n                                \"range\": null,\n                                \"title\": \"Time and Scenes server models\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable support for Lighting server models.\",\n                                \"id\": \"BLE_MESH_LIGHTING_SERVER\",\n                                \"name\": \"BLE_MESH_LIGHTING_SERVER\",\n                                \"range\": null,\n                                \"title\": \"Lighting server models\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models\",\n                        \"title\": \"Support for BLE Mesh Client/Server models\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option removes the 96 hour limit of the IV Update Procedure and\\nlets the state to be changed at any time.\\nIf IV Update test mode is going to be used, this option should be enabled.\",\n                        \"id\": \"BLE_MESH_IV_UPDATE_TEST\",\n                        \"name\": \"BLE_MESH_IV_UPDATE_TEST\",\n                        \"range\": null,\n                        \"title\": \"Test the IV Update Procedure\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"help\": \"This option is used to decide whether discarding the old SeqAuth when\\nreceiving a segmented message.\",\n                        \"id\": \"BLE_MESH_DISCARD_OLD_SEQ_AUTH\",\n                        \"name\": \"BLE_MESH_DISCARD_OLD_SEQ_AUTH\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"This option adds extra self-tests which are run every time BLE Mesh\\nnetworking is initialized.\",\n                                \"id\": \"BLE_MESH_SELF_TEST\",\n                                \"name\": \"BLE_MESH_SELF_TEST\",\n                                \"range\": null,\n                                \"title\": \"Perform BLE Mesh self-tests\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_BQB_TEST && BLE_MESH\",\n                                        \"help\": \"This option is used to enable the log of auto-pts test.\",\n                                        \"id\": \"BLE_MESH_BQB_TEST_LOG\",\n                                        \"name\": \"BLE_MESH_BQB_TEST_LOG\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"This option is used to enable some internal functions for auto-pts test.\",\n                                \"id\": \"BLE_MESH_BQB_TEST\",\n                                \"name\": \"BLE_MESH_BQB_TEST\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Mesh specific internal test\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_SELF_TEST && BLE_MESH\",\n                                \"help\": \"With this option enabled, an unprovisioned device can automatically\\nenters mesh network using a specific test function without the pro-\\nvisioning procedure. And on the Provisioner side, a test function\\nneeds to be invoked to add the node information into the mesh stack.\",\n                                \"id\": \"BLE_MESH_TEST_AUTO_ENTER_NETWORK\",\n                                \"name\": \"BLE_MESH_TEST_AUTO_ENTER_NETWORK\",\n                                \"range\": null,\n                                \"title\": \"Unprovisioned device enters mesh network automatically\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH_SELF_TEST && BLE_MESH\",\n                                \"help\": \"With this option enabled, users can use white list to filter mesh\\nadvertising packets while scanning.\",\n                                \"id\": \"BLE_MESH_TEST_USE_WHITE_LIST\",\n                                \"name\": \"BLE_MESH_TEST_USE_WHITE_LIST\",\n                                \"range\": null,\n                                \"title\": \"Use white list to filter mesh advertising packets\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Activate shell module that provides BLE Mesh commands to the console.\",\n                                \"id\": \"BLE_MESH_SHELL\",\n                                \"name\": \"BLE_MESH_SHELL\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Mesh shell\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Network layer debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_NET\",\n                                        \"name\": \"BLE_MESH_DEBUG_NET\",\n                                        \"range\": null,\n                                        \"title\": \"Network layer debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Transport layer debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_TRANS\",\n                                        \"name\": \"BLE_MESH_DEBUG_TRANS\",\n                                        \"range\": null,\n                                        \"title\": \"Transport layer debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Beacon-related debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_BEACON\",\n                                        \"name\": \"BLE_MESH_DEBUG_BEACON\",\n                                        \"range\": null,\n                                        \"title\": \"Beacon debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable cryptographic debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_CRYPTO\",\n                                        \"name\": \"BLE_MESH_DEBUG_CRYPTO\",\n                                        \"range\": null,\n                                        \"title\": \"Crypto debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Provisioning debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_PROV\",\n                                        \"name\": \"BLE_MESH_DEBUG_PROV\",\n                                        \"range\": null,\n                                        \"title\": \"Provisioning debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Access layer debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_ACCESS\",\n                                        \"name\": \"BLE_MESH_DEBUG_ACCESS\",\n                                        \"range\": null,\n                                        \"title\": \"Access layer debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Foundation Models debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_MODEL\",\n                                        \"name\": \"BLE_MESH_DEBUG_MODEL\",\n                                        \"range\": null,\n                                        \"title\": \"Foundation model debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable advertising debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_ADV\",\n                                        \"name\": \"BLE_MESH_DEBUG_ADV\",\n                                        \"range\": null,\n                                        \"title\": \"Advertising debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Low Power debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_LOW_POWER\",\n                                        \"name\": \"BLE_MESH_DEBUG_LOW_POWER\",\n                                        \"range\": null,\n                                        \"title\": \"Low Power debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Friend debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_FRIEND\",\n                                        \"name\": \"BLE_MESH_DEBUG_FRIEND\",\n                                        \"range\": null,\n                                        \"title\": \"Friend debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"BLE_MESH_PROXY && BLE_MESH_DEBUG && BLE_MESH\",\n                                        \"help\": \"Enable Proxy protocol debug logs for the BLE Mesh functionality.\",\n                                        \"id\": \"BLE_MESH_DEBUG_PROXY\",\n                                        \"name\": \"BLE_MESH_DEBUG_PROXY\",\n                                        \"range\": null,\n                                        \"title\": \"Proxy debug\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"BLE_MESH\",\n                                \"help\": \"Enable debug logs for the BLE Mesh functionality.\",\n                                \"id\": \"BLE_MESH_DEBUG\",\n                                \"name\": \"BLE_MESH_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable BLE Mesh debug logs\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BLE_MESH\",\n                        \"id\": \"component-config-esp-ble-mesh-support-ble-mesh-specific-test-option\",\n                        \"title\": \"BLE Mesh specific test option\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": \"BT_ENABLED\",\n                \"help\": \"This option enables ESP BLE Mesh support. The specific features that are\\navailable may depend on other features that have been enabled in the\\nstack, such as Bluetooth Support, Bluedroid Support & GATT support.\",\n                \"id\": \"BLE_MESH\",\n                \"is_menuconfig\": true,\n                \"name\": \"BLE_MESH\",\n                \"range\": null,\n                \"title\": \"ESP BLE Mesh Support\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                                \"help\": \"If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\\nchannel. This is the default value.\\n\\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.\",\n                                \"id\": \"ADC_DISABLE_DAC\",\n                                \"name\": \"ADC_DISABLE_DAC\",\n                                \"range\": null,\n                                \"title\": \"Disable DAC when ADC2 is used on GPIO 25 and 26\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"ADC_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"ADC_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                                        \"help\": \"Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\\nThis option will allow the ADC calibration component to characterize the\\nADC-Voltage curve using Two Point values if they are available.\",\n                                        \"id\": \"ADC_CAL_EFUSE_TP_ENABLE\",\n                                        \"name\": \"ADC_CAL_EFUSE_TP_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Use Two Point Values\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                                        \"help\": \"Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\\nthe ADC calibration component to characterize the ADC-Voltage curve using\\neFuse Vref if it is available.\",\n                                        \"id\": \"ADC_CAL_EFUSE_VREF_ENABLE\",\n                                        \"name\": \"ADC_CAL_EFUSE_VREF_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Use eFuse Vref\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                                        \"help\": \"This option will allow the ADC calibration component to use Lookup Tables\\nto correct for non-linear behavior in 11db attenuation. Other attenuations\\ndo not exhibit non-linear behavior hence will not be affected by this option.\",\n                                        \"id\": \"ADC_CAL_LUT_ENABLE\",\n                                        \"name\": \"ADC_CAL_LUT_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Use Lookup Tables\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": null,\n                                        \"help\": \"Wether to suppress the deprecation warnings when using legacy adc calibration\\ndriver (esp_adc_cal.h).\\nIf you want to continue using the legacy driver, and don't want to see related\\ndeprecation warnings, you can enable this option.\",\n                                        \"id\": \"ADC_CALI_SUPPRESS_DEPRECATE_WARN\",\n                                        \"name\": \"ADC_CALI_SUPPRESS_DEPRECATE_WARN\",\n                                        \"range\": null,\n                                        \"title\": \"Suppress legacy driver deprecated warning\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"id\": \"component-config-driver-configurations-legacy-adc-configuration-legacy-adc-calibration-configuration\",\n                                \"title\": \"Legacy ADC Calibration Configuration\",\n                                \"type\": \"menu\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-driver-configurations-legacy-adc-configuration\",\n                        \"title\": \"Legacy ADC Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"help\": \"Normally only the ISR of SPI master is placed in the IRAM, so that it\\ncan work without the flash when interrupt is triggered.\\nFor other functions, there's some possibility that the flash cache\\nmiss when running inside and out of SPI functions, which may increase\\nthe interval of SPI transactions.\\nEnable this to put ``queue_trans``, ``get_trans_result`` and\\n``transmit`` functions into the IRAM to avoid possible cache miss.\\n\\nThis configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\\n\\nDuring unit test, this is enabled to measure the ideal case of api.\",\n                                \"id\": \"SPI_MASTER_IN_IRAM\",\n                                \"name\": \"SPI_MASTER_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place transmitting functions of SPI master into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!HEAP_PLACE_FUNCTION_INTO_FLASH\",\n                                \"help\": \"Place the SPI master ISR in to IRAM to avoid possible cache miss.\\n\\nEnabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH\\nis disabled since the spi master uses can allocate transactions buffers into DMA\\nmemory section using the heap component API that ipso facto has to be placed in IRAM.\\n\\nAlso you can forbid the ISR being disabled during flash writing\\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.\",\n                                \"id\": \"SPI_MASTER_ISR_IN_IRAM\",\n                                \"name\": \"SPI_MASTER_ISR_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place SPI master ISR function into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Normally only the ISR of SPI slave is placed in the IRAM, so that it\\ncan work without the flash when interrupt is triggered.\\nFor other functions, there's some possibility that the flash cache\\nmiss when running inside and out of SPI functions, which may increase\\nthe interval of SPI transactions.\\nEnable this to put ``queue_trans``, ``get_trans_result`` and\\n``transmit`` functions into the IRAM to avoid possible cache miss.\",\n                                \"id\": \"SPI_SLAVE_IN_IRAM\",\n                                \"name\": \"SPI_SLAVE_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place transmitting functions of SPI slave into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place the SPI slave ISR in to IRAM to avoid possible cache miss.\\n\\nAlso you can forbid the ISR being disabled during flash writing\\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.\",\n                                \"id\": \"SPI_SLAVE_ISR_IN_IRAM\",\n                                \"name\": \"SPI_SLAVE_ISR_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place SPI slave ISR function into IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-driver-configurations-spi-configuration\",\n                        \"title\": \"SPI Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_TWAI_SUPPORTED\",\n                                \"help\": \"Place the TWAI ISR in to IRAM. This will allow the ISR to avoid\\ncache misses, and also be able to run whilst the cache is disabled\\n(such as when writing to SPI Flash).\\nNote that if this option is enabled:\\n- Users should also set the ESP_INTR_FLAG_IRAM in the driver\\nconfiguration structure when installing the driver (see docs for\\nspecifics).\\n- Alert logging (i.e., setting of the TWAI_ALERT_AND_LOG flag)\\nwill have no effect.\",\n                                \"id\": \"TWAI_ISR_IN_IRAM\",\n                                \"name\": \"TWAI_ISR_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place TWAI ISR function into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED\",\n                                \"help\": \"When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the\\ndriver's ISR. However on the ESP32, there is an edge case where the REC will increase before the\\ndriver's ISR can respond in time (e.g., due to the rapid occurrence of bus errors), thus causing the\\nREC to be non-zero after bus-off. A non-zero REC can prevent bus-off recovery as the bus-off recovery\\ncondition is that both TEC and REC become 0. Enabling this option will add a workaround in the driver\\nto forcibly reset REC to zero on reaching bus-off.\",\n                                \"id\": \"TWAI_ERRATA_FIX_BUS_OFF_REC\",\n                                \"name\": \"TWAI_ERRATA_FIX_BUS_OFF_REC\",\n                                \"range\": null,\n                                \"title\": \"Add SW workaround for REC change during bus-off\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED\",\n                                \"help\": \"On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clock\\ncycle, the transmit interrupt could be lost. Enabling this option will add a workaround that checks the\\ntransmit buffer status bit to recover any lost transmit interrupt.\",\n                                \"id\": \"TWAI_ERRATA_FIX_TX_INTR_LOST\",\n                                \"name\": \"TWAI_ERRATA_FIX_TX_INTR_LOST\",\n                                \"range\": null,\n                                \"title\": \"Add SW workaround for TX interrupt lost errata\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED\",\n                                \"help\": \"On the ESP32, when receiving a data or remote frame, if a bus error occurs in the data or CRC field,\\nthe data of the next received frame could be invalid. Enabling this option will add a workaround that\\nwill reset the peripheral on detection of this errata condition. Note that if a frame is transmitted on\\nthe bus whilst the reset is ongoing, the message will not be receive by the peripheral sent on the bus\\nduring the reset, the message will be lost.\",\n                                \"id\": \"TWAI_ERRATA_FIX_RX_FRAME_INVALID\",\n                                \"name\": \"TWAI_ERRATA_FIX_RX_FRAME_INVALID\",\n                                \"range\": null,\n                                \"title\": \"Add SW workaround for invalid RX frame errata\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED\",\n                                \"help\": \"On the ESP32, when the RX FIFO overruns and the RX message counter maxes out at 64 messages, the entire\\nRX FIFO is no longer recoverable. Enabling this option will add a workaround that resets the peripheral\\non detection of this errata condition. Note that if a frame is being sent on the bus during the reset\\nbus during the reset, the message will be lost.\",\n                                \"id\": \"TWAI_ERRATA_FIX_RX_FIFO_CORRUPT\",\n                                \"name\": \"TWAI_ERRATA_FIX_RX_FIFO_CORRUPT\",\n                                \"range\": null,\n                                \"title\": \"Add SW workaround for RX FIFO corruption errata\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3) && SOC_TWAI_SUPPORTED\",\n                                \"help\": \"When in the listen only mode, the TWAI controller must not influence the TWAI bus (i.e., must not send\\nany dominant bits). However, while in listen only mode on the ESP32/ESP32-S2/ESP32-S3/ESP32-C3, the\\nTWAI controller will still transmit dominant bits when it detects an error (i.e., as part of an active\\nerror frame). Enabling this option will add a workaround that forces the TWAI controller into an error\\npassive state on initialization, thus preventing any dominant bits from being sent.\",\n                                \"id\": \"TWAI_ERRATA_FIX_LISTEN_ONLY_DOM\",\n                                \"name\": \"TWAI_ERRATA_FIX_LISTEN_ONLY_DOM\",\n                                \"range\": null,\n                                \"title\": \"Add SW workaround for listen only transmits dominant bit errata\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_TWAI_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-twai-configuration\",\n                        \"title\": \"TWAI Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy temperature sensor driver\\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\\nand don't want to see related deprecation warnings, you can enable this option.\",\n                                \"id\": \"TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for temperature sensor driver.\\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.\",\n                                \"id\": \"TEMP_SENSOR_ENABLE_DEBUG_LOG\",\n                                \"name\": \"TEMP_SENSOR_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED\",\n                                \"help\": \"Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"TEMP_SENSOR_ISR_IRAM_SAFE\",\n                                \"name\": \"TEMP_SENSOR_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"Temperature sensor ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_TEMP_SENSOR_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-temperature-sensor-configuration\",\n                        \"title\": \"Temperature sensor Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH\",\n                                \"help\": \"If this option is not selected, UART interrupt will be disabled for a long time and\\nmay cause data lost when doing spi flash operation.\",\n                                \"id\": \"UART_ISR_IN_IRAM\",\n                                \"name\": \"UART_ISR_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place UART ISR function into IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-driver-configurations-uart-configuration\",\n                        \"title\": \"UART Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"This option is intended to fix the bug that ESP32 is not able to switch to configured\\npullup/pulldown mode in sleep.\\nIf this option is selected, chip will automatically emulate the behaviour of switching,\\nand about 450B of source codes would be placed into IRAM.\",\n                                \"id\": \"GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL\",\n                                \"name\": \"GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL\",\n                                \"range\": null,\n                                \"title\": \"Support light sleep GPIO pullup/pulldown configuration for ESP32\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place GPIO control functions (like intr_disable/set_level) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\",\n                                \"id\": \"GPIO_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"GPIO_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place GPIO control functions into IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-driver-configurations-gpio-configuration\",\n                        \"title\": \"GPIO Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_SDM_SUPPORTED\",\n                                \"help\": \"Place SDM control functions (like set_duty) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"SDM_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"SDM_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place SDM control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_SDM_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy sigma delta driver.\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"SDM_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"SDM_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_SDM_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for SDM driver.\\nNote that, this option only controls the SDM driver log, won't affect other drivers.\",\n                                \"id\": \"SDM_ENABLE_DEBUG_LOG\",\n                                \"name\": \"SDM_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_SDM_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-sigma-delta-modulator-configuration\",\n                        \"title\": \"Sigma Delta Modulator Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_ANA_CMPR_SUPPORTED\",\n                                \"help\": \"Ensure the Analog Comparator interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"ANA_CMPR_ISR_IRAM_SAFE\",\n                                \"name\": \"ANA_CMPR_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"Analog comparator ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_ANA_CMPR_SUPPORTED\",\n                                \"help\": \"Place Analog Comparator control functions (like ana_cmpr_set_internal_reference) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in an IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"ANA_CMPR_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"ANA_CMPR_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place Analog Comparator control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_ANA_CMPR_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for Analog Comparator driver.\\nNote that, this option only controls the Analog Comparator driver log, won't affect other drivers.\",\n                                \"id\": \"ANA_CMPR_ENABLE_DEBUG_LOG\",\n                                \"name\": \"ANA_CMPR_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_ANA_CMPR_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-analog-comparator-configuration\",\n                        \"title\": \"Analog Comparator Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place GPTimer ISR handler into IRAM for better performance and fewer cache misses.\",\n                                \"id\": \"GPTIMER_ISR_HANDLER_IN_IRAM\",\n                                \"name\": \"GPTIMER_ISR_HANDLER_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place GPTimer ISR handler into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place GPTimer control functions (like start/stop) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"GPTIMER_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"GPTIMER_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place GPTimer control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Ensure the GPTimer interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"GPTIMER_ISR_IRAM_SAFE\",\n                                \"name\": \"GPTIMER_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"GPTimer ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"GPTIMER_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"GPTIMER_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Wether to enable the debug log message for GPTimer driver.\\nNote that, this option only controls the GPTimer driver log, won't affect other drivers.\",\n                                \"id\": \"GPTIMER_ENABLE_DEBUG_LOG\",\n                                \"name\": \"GPTIMER_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-driver-configurations-gptimer-configuration\",\n                        \"title\": \"GPTimer Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PCNT_SUPPORTED\",\n                                \"help\": \"Place PCNT control functions (like start/stop) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"PCNT_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"PCNT_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place PCNT control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PCNT_SUPPORTED\",\n                                \"help\": \"Ensure the PCNT interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"PCNT_ISR_IRAM_SAFE\",\n                                \"name\": \"PCNT_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"PCNT ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PCNT_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"PCNT_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"PCNT_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PCNT_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for PCNT driver.\\nNote that, this option only controls the PCNT driver log, won't affect other drivers.\",\n                                \"id\": \"PCNT_ENABLE_DEBUG_LOG\",\n                                \"name\": \"PCNT_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_PCNT_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-pcnt-configuration\",\n                        \"title\": \"PCNT Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_RMT_SUPPORTED\",\n                                \"help\": \"Ensure the RMT interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"RMT_ISR_IRAM_SAFE\",\n                                \"name\": \"RMT_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"RMT ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_RMT_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"RMT_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"RMT_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_RMT_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for RMT driver.\\nNote that, this option only controls the RMT driver log, won't affect other drivers.\",\n                                \"id\": \"RMT_ENABLE_DEBUG_LOG\",\n                                \"name\": \"RMT_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_RMT_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-rmt-configuration\",\n                        \"title\": \"RMT Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_MCPWM_SUPPORTED\",\n                                \"help\": \"This will ensure the MCPWM interrupt handle is IRAM-Safe, allow to avoid flash\\ncache misses, and also be able to run whilst the cache is disabled.\\n(e.g. SPI Flash write)\",\n                                \"id\": \"MCPWM_ISR_IRAM_SAFE\",\n                                \"name\": \"MCPWM_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"Place MCPWM ISR function into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_MCPWM_SUPPORTED\",\n                                \"help\": \"Place MCPWM control functions (like set_compare_value) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"MCPWM_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"MCPWM_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place MCPWM control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_MCPWM_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"MCPWM_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"MCPWM_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress leagcy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_MCPWM_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for MCPWM driver.\\nNote that, this option only controls the MCPWM driver log, won't affect other drivers.\",\n                                \"id\": \"MCPWM_ENABLE_DEBUG_LOG\",\n                                \"name\": \"MCPWM_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_MCPWM_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-mcpwm-configuration\",\n                        \"title\": \"MCPWM Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_I2S_SUPPORTED\",\n                                \"help\": \"Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"I2S_ISR_IRAM_SAFE\",\n                                \"name\": \"I2S_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"I2S ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_I2S_SUPPORTED\",\n                                \"help\": \"Enable this option will suppress the deprecation warnings of using APIs in legacy I2S driver.\",\n                                \"id\": \"I2S_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"I2S_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress leagcy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_I2S_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for I2S driver.\\nNote that, this option only controls the I2S driver log, will not affect other drivers.\",\n                                \"id\": \"I2S_ENABLE_DEBUG_LOG\",\n                                \"name\": \"I2S_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable I2S debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_I2S_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-i2s-configuration\",\n                        \"title\": \"I2S Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                                \"help\": \"Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,\\nso that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"DAC_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"DAC_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place DAC control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                                \"help\": \"Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"DAC_ISR_IRAM_SAFE\",\n                                \"name\": \"DAC_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"DAC ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                                \"help\": \"Wether to suppress the deprecation warnings when using legacy DAC driver (driver/dac.h).\\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\\nyou can enable this option.\",\n                                \"id\": \"DAC_SUPPRESS_DEPRECATE_WARN\",\n                                \"name\": \"DAC_SUPPRESS_DEPRECATE_WARN\",\n                                \"range\": null,\n                                \"title\": \"Suppress legacy driver deprecated warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for DAC driver.\\nNote that, this option only controls the DAC driver log, won't affect other drivers.\",\n                                \"id\": \"DAC_ENABLE_DEBUG_LOG\",\n                                \"name\": \"DAC_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED\",\n                                \"help\": \"Whether to left shift the continuous data to align every bytes to 16 bits in the driver.\\nOn ESP32, although the DAC resolution is only 8 bits,\\nthe hardware requires 16 bits data in continuous mode.\\nBy enabling this option, the driver will left shift 8 bits for the input data automatically.\\nOnly disable this option when you decide to do this step by yourself.\\nNote that the driver will allocate a new piece of memory to save the converted data.\",\n                                \"id\": \"DAC_DMA_AUTO_16BIT_ALIGN\",\n                                \"name\": \"DAC_DMA_AUTO_16BIT_ALIGN\",\n                                \"range\": null,\n                                \"title\": \"Align the continuous data to 16 bit automatically\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-dac-configuration\",\n                        \"title\": \"DAC Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && SOC_USB_SERIAL_JTAG_SUPPORTED\",\n                                \"help\": \"If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long\\nas the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to\\nprevent the system from entering light sleep.\\nThis option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is\\nenabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.\\nNote. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is\\ncalled manually from the program, enabling this option will not prevent light sleep entry even if the\\nUSB Serial/JTAG is in use.\",\n                                \"id\": \"USJ_NO_AUTO_LS_ON_CONNECTION\",\n                                \"name\": \"USJ_NO_AUTO_LS_ON_CONNECTION\",\n                                \"range\": null,\n                                \"title\": \"Don't enter the automatic light sleep when USB Serial/JTAG port is connected\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-usb-serial-jtag-configuration\",\n                        \"title\": \"USB Serial/JTAG Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PARLIO_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for parallel IO driver.\\nNote that, this option only controls the parallel IO driver log, won't affect other drivers.\",\n                                \"id\": \"PARLIO_ENABLE_DEBUG_LOG\",\n                                \"name\": \"PARLIO_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_PARLIO_SUPPORTED\",\n                                \"help\": \"Ensure the Parallel IO interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\",\n                                \"id\": \"PARLIO_ISR_IRAM_SAFE\",\n                                \"name\": \"PARLIO_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"Parallel IO ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_PARLIO_SUPPORTED\",\n                        \"id\": \"component-config-driver-configurations-parallel-io-configuration\",\n                        \"title\": \"Parallel IO Configuration\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-driver-configurations\",\n                \"title\": \"Driver Configurations\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_CUSTOM_TABLE\",\n                                \"help\": \"Name of the custom eFuse CSV filename. This path is evaluated\\nrelative to the project root directory.\",\n                                \"id\": \"EFUSE_CUSTOM_TABLE_FILENAME\",\n                                \"name\": \"EFUSE_CUSTOM_TABLE_FILENAME\",\n                                \"range\": null,\n                                \"title\": \"Custom eFuse CSV file\",\n                                \"type\": \"string\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Allows to generate a structure for eFuse from the CSV file.\",\n                        \"id\": \"EFUSE_CUSTOM_TABLE\",\n                        \"name\": \"EFUSE_CUSTOM_TABLE\",\n                        \"range\": null,\n                        \"title\": \"Use custom eFuse table\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_VIRTUAL\",\n                                \"help\": \"In addition to the \\\"Simulate eFuse operations in RAM\\\" option, this option just adds\\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\\nshould have the `efuse` partition. partition.csv: \\\"efuse_em, data, efuse,   ,   0x2000,\\\"\\n\\nDuring startup, the eFuses are copied from flash or,\\nin case if flash is empty, from real eFuse to RAM and then update flash.\\nThis mode is useful when need to keep changes after reboot\\n(testing secure_boot and flash_encryption).\",\n                                \"id\": \"EFUSE_VIRTUAL_KEEP_IN_FLASH\",\n                                \"name\": \"EFUSE_VIRTUAL_KEEP_IN_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Keep eFuses in flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"EFUSE_VIRTUAL\",\n                                \"help\": \"If enabled, log efuse burns. This shows changes that would be made.\",\n                                \"id\": \"EFUSE_VIRTUAL_LOG_ALL_WRITES\",\n                                \"name\": \"EFUSE_VIRTUAL_LOG_ALL_WRITES\",\n                                \"range\": null,\n                                \"title\": \"Log all virtual writes\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If \\\"n\\\" - No virtual mode. All eFuse operations are real and use eFuse registers.\\nIf \\\"y\\\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\\nLog output will state changes that would be applied, but they will not be.\\n\\nIf it is \\\"y\\\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\\nBecause the EFUSE VIRT mode is for testing only.\\n\\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.\",\n                        \"id\": \"EFUSE_VIRTUAL\",\n                        \"name\": \"EFUSE_VIRTUAL\",\n                        \"range\": null,\n                        \"title\": \"Simulate eFuse operations in RAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_NONE\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_NONE\",\n                                \"range\": null,\n                                \"title\": \"None Only\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_3_4\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_3_4\",\n                                \"range\": null,\n                                \"title\": \"3/4 and None\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice EFUSE_CODE_SCHEME_SELECTOR>\",\n                                \"help\": null,\n                                \"id\": \"EFUSE_CODE_SCHEME_COMPAT_REPEAT\",\n                                \"name\": \"EFUSE_CODE_SCHEME_COMPAT_REPEAT\",\n                                \"range\": null,\n                                \"title\": \"Repeat, 3/4 and None (common table does not support it)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                        \"help\": \"Selector eFuse code scheme.\",\n                        \"id\": \"component-config-efuse-bit-manager-coding-scheme-compatibility\",\n                        \"name\": \"EFUSE_CODE_SCHEME_SELECTOR\",\n                        \"title\": \"Coding Scheme Compatibility\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"EFUSE_MAX_BLK_LEN\",\n                        \"name\": \"EFUSE_MAX_BLK_LEN\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-efuse-bit-manager\",\n                \"title\": \"eFuse Bit Manager\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_TLS_LIBRARY_CHOOSE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TLS_USING_MBEDTLS\",\n                                \"name\": \"ESP_TLS_USING_MBEDTLS\",\n                                \"range\": null,\n                                \"title\": \"mbedTLS\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"TLS_STACK_WOLFSSL && <choice ESP_TLS_LIBRARY_CHOOSE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TLS_USING_WOLFSSL\",\n                                \"name\": \"ESP_TLS_USING_WOLFSSL\",\n                                \"range\": null,\n                                \"title\": \"wolfSSL (License info in wolfSSL directory README)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The ESP-TLS APIs support multiple backend TLS libraries. Currently mbedTLS and WolfSSL are\\nsupported. Different TLS libraries may support different features and have different resource\\nusage. Consult the ESP-TLS documentation in ESP-IDF Programming guide for more details.\",\n                        \"id\": \"component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-\",\n                        \"name\": \"ESP_TLS_LIBRARY_CHOOSE\",\n                        \"title\": \"Choose SSL/TLS library for ESP-TLS (See help for more Info)\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32 && ESP_TLS_USING_MBEDTLS\",\n                        \"help\": \"Enable use of Secure Element for ESP-TLS, this enables internal support for\\nATECC608A peripheral on ESPWROOM32SE, which can be used for TLS connection.\",\n                        \"id\": \"ESP_TLS_USE_SECURE_ELEMENT\",\n                        \"name\": \"ESP_TLS_USE_SECURE_ELEMENT\",\n                        \"range\": null,\n                        \"title\": \"Use Secure Element (ATECC608A) with ESP-TLS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_TLS_USING_MBEDTLS && SOC_DIG_SIGN_SUPPORTED\",\n                        \"help\": \"Enable use of the Digital Signature Peripheral for ESP-TLS.The DS peripheral\\ncan only be used when it is appropriately configured for TLS.\\nConsult the ESP-TLS documentation in ESP-IDF Programming Guide for more details.\",\n                        \"id\": \"ESP_TLS_USE_DS_PERIPHERAL\",\n                        \"name\": \"ESP_TLS_USE_DS_PERIPHERAL\",\n                        \"range\": null,\n                        \"title\": \"Use Digital Signature (DS) Peripheral with ESP-TLS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_TLS_USING_MBEDTLS && MBEDTLS_CLIENT_SSL_SESSION_TICKETS\",\n                        \"help\": \"Enable session ticket support as specified in RFC5077.\",\n                        \"id\": \"ESP_TLS_CLIENT_SESSION_TICKETS\",\n                        \"name\": \"ESP_TLS_CLIENT_SESSION_TICKETS\",\n                        \"range\": null,\n                        \"title\": \"Enable client session tickets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TLS_SERVER_SESSION_TICKETS\",\n                                        \"help\": \"Sets the session ticket timeout used in the tls server.\",\n                                        \"id\": \"ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT\",\n                                        \"name\": \"ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT\",\n                                        \"range\": null,\n                                        \"title\": \"Server session ticket timeout in seconds\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_TLS_SERVER && ESP_TLS_USING_MBEDTLS && MBEDTLS_SERVER_SSL_SESSION_TICKETS\",\n                                \"help\": \"Enable session ticket support as specified in RFC5077\",\n                                \"id\": \"ESP_TLS_SERVER_SESSION_TICKETS\",\n                                \"name\": \"ESP_TLS_SERVER_SESSION_TICKETS\",\n                                \"range\": null,\n                                \"title\": \"Enable server session tickets\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_TLS_USING_MBEDTLS && ESP_TLS_SERVER\",\n                                \"help\": \"Ability to configure and use a certificate selection callback during server handshake,\\nto select a certificate to present to the client based on the TLS extensions supplied in\\nthe client hello (alpn, sni, etc).\",\n                                \"id\": \"ESP_TLS_SERVER_CERT_SELECT_HOOK\",\n                                \"name\": \"ESP_TLS_SERVER_CERT_SELECT_HOOK\",\n                                \"range\": null,\n                                \"title\": \"Certificate selection hook\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_TLS_SERVER && ESP_TLS_USING_MBEDTLS\",\n                                \"help\": \"When this option is enabled, the peer (here, the client) certificate is checked by the server,\\nhowever the handshake continues even if verification failed. By default, the\\npeer certificate is not checked and ignored by the server.\\n\\nmbedtls_ssl_get_verify_result() can be called after the handshake is complete to\\nretrieve status of verification.\",\n                                \"id\": \"ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL\",\n                                \"name\": \"ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL\",\n                                \"range\": null,\n                                \"title\": \"ESP-TLS Server: Set minimum Certificate Verification mode to Optional\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"(ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER) || ESP_TLS_USING_WOLFSSL\",\n                        \"help\": \"Enable support for creating server side SSL/TLS session, available for mbedTLS\\nas well as wolfSSL TLS library.\",\n                        \"id\": \"ESP_TLS_SERVER\",\n                        \"name\": \"ESP_TLS_SERVER\",\n                        \"range\": null,\n                        \"title\": \"Enable ESP-TLS Server\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support for pre shared key ciphers, supported for both mbedTLS as well as\\nwolfSSL TLS library.\",\n                        \"id\": \"ESP_TLS_PSK_VERIFICATION\",\n                        \"name\": \"ESP_TLS_PSK_VERIFICATION\",\n                        \"range\": null,\n                        \"title\": \"Enable PSK verification\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_TLS_INSECURE\",\n                                \"help\": \"After enabling this option the esp-tls client will skip the server certificate verification\\nby default. Note that this option will only modify the default behaviour of esp-tls client\\nregarding server cert verification. The default behaviour should only be applicable when\\nno other option regarding the server cert verification is opted in the esp-tls config\\n(e.g. crt_bundle_attach, use_global_ca_store etc.).\\nWARNING : Enabling this option comes with a potential risk of establishing a TLS connection\\nwith a server which has a fake identity, provided that the server certificate\\nis not provided either through API or other mechanism like ca_store etc.\",\n                                \"id\": \"ESP_TLS_SKIP_SERVER_CERT_VERIFY\",\n                                \"name\": \"ESP_TLS_SKIP_SERVER_CERT_VERIFY\",\n                                \"range\": null,\n                                \"title\": \"Skip server certificate verification by default (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"You can enable some potentially insecure options. These options should only be used for testing pusposes.\\nOnly enable these options if you are very sure.\",\n                        \"id\": \"ESP_TLS_INSECURE\",\n                        \"name\": \"ESP_TLS_INSECURE\",\n                        \"range\": null,\n                        \"title\": \"Allow potentially insecure options\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_TLS_USING_WOLFSSL\",\n                        \"help\": \"Enables server verification with Intermediate CA cert, does not authenticate full chain\\nof trust upto the root CA cert (After Enabling this option client only needs to have Intermediate\\nCA certificate of the server to authenticate server, root CA cert is not necessary).\",\n                        \"id\": \"ESP_WOLFSSL_SMALL_CERT_VERIFY\",\n                        \"name\": \"ESP_WOLFSSL_SMALL_CERT_VERIFY\",\n                        \"range\": null,\n                        \"title\": \"Enable SMALL_CERT_VERIFY\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_TLS_USING_WOLFSSL\",\n                        \"help\": \"Enable detailed debug prints for wolfSSL SSL library.\",\n                        \"id\": \"ESP_DEBUG_WOLFSSL\",\n                        \"name\": \"ESP_DEBUG_WOLFSSL\",\n                        \"range\": null,\n                        \"title\": \"Enable debug logs for wolfSSL\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-tls\",\n                \"title\": \"ESP-TLS\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Place ISR version ADC oneshot mode read function into IRAM.\",\n                        \"id\": \"ADC_ONESHOT_CTRL_FUNC_IN_IRAM\",\n                        \"name\": \"ADC_ONESHOT_CTRL_FUNC_IN_IRAM\",\n                        \"range\": null,\n                        \"title\": \"Place ISR version ADC oneshot mode read function into IRAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_ADC_DMA_SUPPORTED\",\n                        \"help\": \"Ensure the ADC continuous mode ISR is IRAM-Safe. When enabled, the ISR handler\\nwill be available when the cache is disabled.\",\n                        \"id\": \"ADC_CONTINUOUS_ISR_IRAM_SAFE\",\n                        \"name\": \"ADC_CONTINUOUS_ISR_IRAM_SAFE\",\n                        \"range\": null,\n                        \"title\": \"ADC continuous mode driver ISR IRAM-Safe\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\\nThis option will allow the ADC calibration component to characterize the\\nADC-Voltage curve using Two Point values if they are available.\",\n                                \"id\": \"ADC_CALI_EFUSE_TP_ENABLE\",\n                                \"name\": \"ADC_CALI_EFUSE_TP_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Use Two Point Values\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\\nthe ADC calibration component to characterize the ADC-Voltage curve using\\neFuse Vref if it is available.\",\n                                \"id\": \"ADC_CALI_EFUSE_VREF_ENABLE\",\n                                \"name\": \"ADC_CALI_EFUSE_VREF_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Use eFuse Vref\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"This option will allow the ADC calibration component to use Lookup Tables\\nto correct for non-linear behavior in 11db attenuation. Other attenuations\\ndo not exhibit non-linear behavior hence will not be affected by this option.\",\n                                \"id\": \"ADC_CALI_LUT_ENABLE\",\n                                \"name\": \"ADC_CALI_LUT_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Use Lookup Tables\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                        \"id\": \"component-config-adc-and-adc-calibration-adc-calibration-configurations\",\n                        \"title\": \"ADC Calibration Configurations\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_DAC_SUPPORTED\",\n                        \"help\": \"By default, this is set. The ADC oneshot driver will disable the output of the\\ncorresponding DAC channels:\\nESP32:   IO25 and IO26\\nESP32S2: IO17 and IO18\\n\\nDisable this option so as to measure the output of DAC by internal ADC, for test usage.\",\n                        \"id\": \"ADC_DISABLE_DAC_OUTPUT\",\n                        \"name\": \"ADC_DISABLE_DAC_OUTPUT\",\n                        \"range\": null,\n                        \"title\": \"Disable DAC when ADC2 is in use\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3\",\n                        \"help\": \"On ESP32C3 and ESP32S3, ADC2 Digital Controller is not stable. Therefore,\\nADC2 continuous mode is not suggested on ESP32S3 and ESP32C3\\n\\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\\nFor more details, you can search for errata on espressif website.\",\n                        \"id\": \"ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3\",\n                        \"name\": \"ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3\",\n                        \"range\": null,\n                        \"title\": \"Force use ADC2 continumous mode on ESP32S3 or ESP32C3\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32C3\",\n                        \"help\": \"On ESP32C3, ADC2 Digital Controller is not stable. Therefore,\\nADC2 oneshot mode is not suggested on ESP32C3\\n\\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\\nFor more details, you can search for errata on espressif website.\",\n                        \"id\": \"ADC_ONESHOT_FORCE_USE_ADC2_ON_C3\",\n                        \"name\": \"ADC_ONESHOT_FORCE_USE_ADC2_ON_C3\",\n                        \"range\": null,\n                        \"title\": \"Force use ADC2 oneshot mode on ESP32C3\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-adc-and-adc-calibration\",\n                \"title\": \"ADC and ADC Calibration\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"(ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)\",\n                        \"help\": \"If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.\\nRecommended for heavy traffic scenarios. Both coexistence configuration options are\\nautomatically managed, no user intervention is required.\\nIf only Bluetooth is used, it is recommended to disable this option to reduce binary file\\nsize.\",\n                        \"id\": \"ESP_COEX_SW_COEXIST_ENABLE\",\n                        \"name\": \"ESP_COEX_SW_COEXIST_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Software controls WiFi/Bluetooth coexistence\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32\",\n                        \"help\": \"If enabled, HW External coexistence arbitration is managed by GPIO pins.\\nIt can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.\\nUser can select GPIO pins in application code with configure interfaces.\\n\\nThis function depends on BT-off\\nbecause currently we do not support external coex and internal coex simultaneously.\",\n                        \"id\": \"ESP_COEX_EXTERNAL_COEXIST_ENABLE\",\n                        \"name\": \"ESP_COEX_EXTERNAL_COEXIST_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"External Coexistence\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-wireless-coexistence\",\n                \"title\": \"Wireless Coexistence\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\\nrepresentations.\",\n                        \"id\": \"ESP_ERR_TO_NAME_LOOKUP\",\n                        \"name\": \"ESP_ERR_TO_NAME_LOOKUP\",\n                        \"range\": null,\n                        \"title\": \"Enable lookup of error code strings\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                        \"name\": \"ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-common-esp-related\",\n                \"title\": \"Common ESP-related\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ETH_ENABLED\",\n                        \"name\": \"ETH_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ETH_PHY_INTERFACE>\",\n                                        \"help\": null,\n                                        \"id\": \"ETH_PHY_INTERFACE_RMII\",\n                                        \"name\": \"ETH_PHY_INTERFACE_RMII\",\n                                        \"range\": null,\n                                        \"title\": \"Reduced Media Independent Interface (RMII)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Select the communication interface between MAC and PHY chip.\",\n                                \"id\": \"component-config-ethernet-support-esp32-internal-emac-controller-phy-interface\",\n                                \"name\": \"ETH_PHY_INTERFACE\",\n                                \"title\": \"PHY interface\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ETH_RMII_CLK_MODE>\",\n                                        \"help\": \"MAC will get RMII clock from outside.\\nNote that ESP32 only supports GPIO0 to input the RMII clock.\",\n                                        \"id\": \"ETH_RMII_CLK_INPUT\",\n                                        \"name\": \"ETH_RMII_CLK_INPUT\",\n                                        \"range\": null,\n                                        \"title\": \"Input RMII clock from external\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ETH_RMII_CLK_MODE>\",\n                                        \"help\": \"ESP32 can generate RMII clock by internal APLL.\\nThis clock can be routed to the external PHY device.\\nESP32 supports to route the RMII clock to GPIO0/16/17.\",\n                                        \"id\": \"ETH_RMII_CLK_OUTPUT\",\n                                        \"name\": \"ETH_RMII_CLK_OUTPUT\",\n                                        \"range\": null,\n                                        \"title\": \"Output RMII clock from internal\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ETH_PHY_INTERFACE_RMII && ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Select external or internal RMII clock.\",\n                                \"id\": \"component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode\",\n                                \"name\": \"ETH_RMII_CLK_MODE\",\n                                \"title\": \"RMII clock mode\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_RMII_CLK_INPUT && ETH_USE_ESP32_EMAC\",\n                                \"help\": \"ESP32 only supports GPIO0 to input the RMII clock.\",\n                                \"id\": \"ETH_RMII_CLK_IN_GPIO\",\n                                \"name\": \"ETH_RMII_CLK_IN_GPIO\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC\",\n                                \"help\": \"GPIO0 can be set to output a pre-divided PLL clock (test only!).\\nEnabling this option will configure GPIO0 to output a 50MHz clock.\\nIn fact this clock doesn't have directly relationship with EMAC peripheral.\\nSometimes this clock won't work well with your PHY chip. You might need to\\nadd some extra devices after GPIO0 (e.g. inverter).\\nNote that outputting RMII clock on GPIO0 is an experimental practice.\\nIf you want the Ethernet to work with WiFi, don't select GPIO0 output mode for stability.\",\n                                \"id\": \"ETH_RMII_CLK_OUTPUT_GPIO0\",\n                                \"name\": \"ETH_RMII_CLK_OUTPUT_GPIO0\",\n                                \"range\": null,\n                                \"title\": \"Output RMII clock from GPIO0 (Experimental!)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Set the GPIO number to output RMII Clock.\",\n                                \"id\": \"ETH_RMII_CLK_OUT_GPIO\",\n                                \"name\": \"ETH_RMII_CLK_OUT_GPIO\",\n                                \"range\": null,\n                                \"title\": \"RMII clock GPIO number\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Set the size of each buffer used by Ethernet MAC DMA.\",\n                                \"id\": \"ETH_DMA_BUFFER_SIZE\",\n                                \"name\": \"ETH_DMA_BUFFER_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Ethernet DMA buffer size (Byte)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Number of DMA receive buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\\nLarger number of buffers could increase throughput somehow.\",\n                                \"id\": \"ETH_DMA_RX_BUFFER_NUM\",\n                                \"name\": \"ETH_DMA_RX_BUFFER_NUM\",\n                                \"range\": null,\n                                \"title\": \"Amount of Ethernet DMA Rx buffers\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\\nLarger number of buffers could increase throughput somehow.\",\n                                \"id\": \"ETH_DMA_TX_BUFFER_NUM\",\n                                \"name\": \"ETH_DMA_TX_BUFFER_NUM\",\n                                \"range\": null,\n                                \"title\": \"Amount of Ethernet DMA Tx buffers\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_DMA_RX_BUFFER_NUM > 15 && ETH_USE_ESP32_EMAC\",\n                                \"help\": \"Ethernet MAC engine on ESP32 doesn't feature a flow control logic.\\nThe MAC driver can perform a software flow control if you enable this option.\\nNote that, if the RX buffer number is small, enabling software flow control will\\ncause obvious performance loss.\",\n                                \"id\": \"ETH_SOFT_FLOW_CONTROL\",\n                                \"name\": \"ETH_SOFT_FLOW_CONTROL\",\n                                \"range\": null,\n                                \"title\": \"Enable software flow control\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_ESP32_EMAC\",\n                                \"help\": \"If enabled, functions related to RX/TX are placed into IRAM. It can improve Ethernet throughput.\\nIf disabled, all functions are placed into FLASH.\",\n                                \"id\": \"ETH_IRAM_OPTIMIZATION\",\n                                \"name\": \"ETH_IRAM_OPTIMIZATION\",\n                                \"range\": null,\n                                \"title\": \"Enable IRAM optimization\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                        \"help\": \"ESP32 integrates a 10/100M Ethernet MAC controller.\",\n                        \"id\": \"ETH_USE_ESP32_EMAC\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"ETH_USE_ESP32_EMAC\",\n                        \"range\": null,\n                        \"title\": \"Support ESP32 internal EMAC controller\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_SPI_ETHERNET\",\n                                \"help\": \"DM9051 is a fast Ethernet controller with an SPI interface.\\nIt's also integrated with a 10/100M PHY and MAC.\\nSelect this to enable DM9051 driver.\",\n                                \"id\": \"ETH_SPI_ETHERNET_DM9051\",\n                                \"name\": \"ETH_SPI_ETHERNET_DM9051\",\n                                \"range\": null,\n                                \"title\": \"Use DM9051\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_SPI_ETHERNET\",\n                                \"help\": \"W5500 is a HW TCP/IP embedded Ethernet controller.\\nTCP/IP stack, 10/100 Ethernet MAC and PHY are embedded in a single chip.\\nHowever the driver in ESP-IDF only enables the RAW MAC mode,\\nmaking it compatible with the software TCP/IP stack.\\nSay yes to enable W5500 driver.\",\n                                \"id\": \"ETH_SPI_ETHERNET_W5500\",\n                                \"name\": \"ETH_SPI_ETHERNET_W5500\",\n                                \"range\": null,\n                                \"title\": \"Use W5500 (MAC RAW)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_SPI_ETHERNET\",\n                                \"help\": \"The KSZ8851SNL is a single-chip Fast Ethernet controller consisting of\\na 10/100 physical layer transceiver (PHY), a MAC, and a Serial Peripheral Interface (SPI).\\nSelect this to enable KSZ8851SNL driver.\",\n                                \"id\": \"ETH_SPI_ETHERNET_KSZ8851SNL\",\n                                \"name\": \"ETH_SPI_ETHERNET_KSZ8851SNL\",\n                                \"range\": null,\n                                \"title\": \"Use KSZ8851SNL\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"ESP-IDF can also support some SPI-Ethernet modules.\",\n                        \"id\": \"ETH_USE_SPI_ETHERNET\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"ETH_USE_SPI_ETHERNET\",\n                        \"range\": null,\n                        \"title\": \"Support SPI to Ethernet Module\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_OPENETH\",\n                                \"help\": \"Number of DMA receive buffers, each buffer is 1600 bytes.\",\n                                \"id\": \"ETH_OPENETH_DMA_RX_BUFFER_NUM\",\n                                \"name\": \"ETH_OPENETH_DMA_RX_BUFFER_NUM\",\n                                \"range\": null,\n                                \"title\": \"Number of Ethernet DMA Rx buffers\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ETH_USE_OPENETH\",\n                                \"help\": \"Number of DMA transmit buffers, each buffer is 1600 bytes.\",\n                                \"id\": \"ETH_OPENETH_DMA_TX_BUFFER_NUM\",\n                                \"name\": \"ETH_OPENETH_DMA_TX_BUFFER_NUM\",\n                                \"range\": null,\n                                \"title\": \"Number of Ethernet DMA Tx buffers\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"OpenCores Ethernet MAC driver can be used when an ESP-IDF application\\nis executed in QEMU. This driver is not supported when running on a\\nreal chip.\",\n                        \"id\": \"ETH_USE_OPENETH\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"ETH_USE_OPENETH\",\n                        \"range\": null,\n                        \"title\": \"Support OpenCores Ethernet MAC (for use with QEMU)\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ETH_ENABLED\",\n                        \"help\": \"Prevents multiple accesses when Ethernet interface is used as shared resource and multiple\\nfunctionalities might try to access it at a time.\",\n                        \"id\": \"ETH_TRANSMIT_MUTEX\",\n                        \"name\": \"ETH_TRANSMIT_MUTEX\",\n                        \"range\": null,\n                        \"title\": \"Enable Transmit Mutex\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-ethernet\",\n                \"title\": \"Ethernet\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables collections of statistics in the event loop library such as the number of events posted\\nto/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event\\nloop queue, run time of event handlers, and number of times/run time of each event handler.\",\n                        \"id\": \"ESP_EVENT_LOOP_PROFILING\",\n                        \"name\": \"ESP_EVENT_LOOP_PROFILING\",\n                        \"range\": null,\n                        \"title\": \"Enable event loop profiling\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_EVENT_POST_FROM_ISR\",\n                                \"help\": \"Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions\\nesp_event_post and esp_event_post_to in IRAM.\",\n                                \"id\": \"ESP_EVENT_POST_FROM_IRAM_ISR\",\n                                \"name\": \"ESP_EVENT_POST_FROM_IRAM_ISR\",\n                                \"range\": null,\n                                \"title\": \"Support posting events from ISRs placed in IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable posting events from interrupt handlers.\",\n                        \"id\": \"ESP_EVENT_POST_FROM_ISR\",\n                        \"name\": \"ESP_EVENT_POST_FROM_ISR\",\n                        \"range\": null,\n                        \"title\": \"Support posting events from ISRs\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-event-loop-library\",\n                \"title\": \"Event Loop Library\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_GDBSTUB_ENABLED\",\n                        \"name\": \"ESP_GDBSTUB_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_GDBSTUB_SUPPORT_TASKS\",\n                                \"help\": \"Set the number of tasks which GDB Stub will support.\",\n                                \"id\": \"ESP_GDBSTUB_MAX_TASKS\",\n                                \"name\": \"ESP_GDBSTUB_MAX_TASKS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of tasks supported by GDB Stub\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"ESP_GDBSTUB_ENABLED\",\n                        \"help\": \"If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.\\nThread list can be queried from GDB using 'info threads' command.\\nNote that if GDB task lists were corrupted, this feature may not work.\\nIf GDBStub fails, try disabling this feature.\",\n                        \"id\": \"ESP_GDBSTUB_SUPPORT_TASKS\",\n                        \"name\": \"ESP_GDBSTUB_SUPPORT_TASKS\",\n                        \"range\": null,\n                        \"title\": \"Enable listing FreeRTOS tasks through GDB Stub\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-gdb-stub\",\n                \"title\": \"GDB Stub\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option will enable https protocol by linking esp-tls library and initializing SSL transport\",\n                        \"id\": \"ESP_HTTP_CLIENT_ENABLE_HTTPS\",\n                        \"name\": \"ESP_HTTP_CLIENT_ENABLE_HTTPS\",\n                        \"range\": null,\n                        \"title\": \"Enable https\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option will enable HTTP Basic Authentication. It is disabled by default as Basic\\nauth uses unencrypted encoding, so it introduces a vulnerability when not using TLS\",\n                        \"id\": \"ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH\",\n                        \"name\": \"ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH\",\n                        \"range\": null,\n                        \"title\": \"Enable HTTP Basic Authentication\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option will enable HTTP Digest Authentication. It is enabled by default, but use of this\\nconfiguration is not recommended as the password can be derived from the exchange, so it introduces\\na vulnerability when not using TLS\",\n                        \"id\": \"ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH\",\n                        \"name\": \"ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH\",\n                        \"range\": null,\n                        \"title\": \"Enable HTTP Digest Authentication\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-http-client\",\n                \"title\": \"ESP HTTP client\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This sets the maximum supported size of headers section in HTTP request packet to be processed by the\\nserver\",\n                        \"id\": \"HTTPD_MAX_REQ_HDR_LEN\",\n                        \"name\": \"HTTPD_MAX_REQ_HDR_LEN\",\n                        \"range\": null,\n                        \"title\": \"Max HTTP Request Header Length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This sets the maximum supported size of HTTP request URI to be processed by the server\",\n                        \"id\": \"HTTPD_MAX_URI_LEN\",\n                        \"name\": \"HTTPD_MAX_URI_LEN\",\n                        \"range\": null,\n                        \"title\": \"Max HTTP URI Length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the\\nunderlying socket is closed. Please note that turning this off may cause multiple test failures\",\n                        \"id\": \"HTTPD_ERR_RESP_NO_DELAY\",\n                        \"name\": \"HTTPD_ERR_RESP_NO_DELAY\",\n                        \"range\": null,\n                        \"title\": \"Use TCP_NODELAY socket option when sending HTTP error responses\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This sets the size of the temporary buffer used to receive and discard any remaining data that is\\nreceived from the HTTP client in the request, but not processed as part of the server HTTP request\\nhandler.\\n\\nIf the remaining data is larger than the available buffer size, the buffer will be filled in multiple\\niterations. The buffer should be small enough to fit on the stack, but large enough to avoid excessive\\niterations.\",\n                        \"id\": \"HTTPD_PURGE_BUF_LEN\",\n                        \"name\": \"HTTPD_PURGE_BUF_LEN\",\n                        \"range\": null,\n                        \"title\": \"Length of temporary buffer for purging data\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this will log discarded binary HTTP request data at Debug level.\\nFor large content data this may not be desirable as it will clutter the log.\",\n                        \"id\": \"HTTPD_LOG_PURGE_DATA\",\n                        \"name\": \"HTTPD_LOG_PURGE_DATA\",\n                        \"range\": null,\n                        \"title\": \"Log purged content data at Debug level\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This sets the WebSocket server support.\",\n                        \"id\": \"HTTPD_WS_SUPPORT\",\n                        \"name\": \"HTTPD_WS_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"WebSocket server support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This makes httpd_queue_work() API to wait until a message space is available on UDP control socket.\\nIt internally uses a counting semaphore with count set to `LWIP_UDP_RECVMBOX_SIZE` to achieve this.\\nThis config will slightly change API behavior to block until message gets delivered on control socket.\",\n                        \"id\": \"HTTPD_QUEUE_WORK_BLOCKING\",\n                        \"name\": \"HTTPD_QUEUE_WORK_BLOCKING\",\n                        \"range\": null,\n                        \"title\": \"httpd_queue_work as blocking API\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-http-server\",\n                \"title\": \"HTTP Server\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Exposes an additional callback whereby firmware data could be decrypted\\nbefore being processed by OTA update component. This can help to integrate\\nexternal encryption related format and removal of such encapsulation layer\\nfrom firmware image.\",\n                        \"id\": \"ESP_HTTPS_OTA_DECRYPT_CB\",\n                        \"name\": \"ESP_HTTPS_OTA_DECRYPT_CB\",\n                        \"range\": null,\n                        \"title\": \"Provide decryption callback\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"It is highly recommended to keep HTTPS (along with server certificate validation) enabled.\\nEnabling this option comes with potential risk of:\\n- Non-encrypted communication channel with server\\n- Accepting firmware upgrade image from server with fake identity\",\n                        \"id\": \"ESP_HTTPS_OTA_ALLOW_HTTP\",\n                        \"name\": \"ESP_HTTPS_OTA_ALLOW_HTTP\",\n                        \"range\": null,\n                        \"title\": \"Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-https-ota\",\n                \"title\": \"ESP HTTPS OTA\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER\",\n                        \"help\": \"Enable ESP HTTPS server component\",\n                        \"id\": \"ESP_HTTPS_SERVER_ENABLE\",\n                        \"name\": \"ESP_HTTPS_SERVER_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable ESP_HTTPS_SERVER component\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-https-server\",\n                \"title\": \"ESP HTTPS server\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_0\",\n                                        \"name\": \"ESP32S3_REV_MIN_0\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.0 (ECO0)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_1\",\n                                        \"name\": \"ESP32S3_REV_MIN_1\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.1 (ECO1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_REV_MIN>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_REV_MIN_2\",\n                                        \"name\": \"ESP32S3_REV_MIN_2\",\n                                        \"range\": null,\n                                        \"title\": \"Rev v0.2 (ECO2)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Required minimum chip revision. ESP-IDF will check for it and\\nreject to boot if the chip revision fails the check.\\nThis ensures the chip used will have some modifications (features, or bugfixes).\\n\\nThe complied binary will only support chips above this revision,\\nthis will also help to reduce binary size.\",\n                                \"id\": \"component-config-hardware-settings-chip-revision-minimum-supported-esp32-s3-revision\",\n                                \"name\": \"ESP32S3_REV_MIN\",\n                                \"title\": \"Minimum Supported ESP32-S3 Revision\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_REV_MIN_FULL\",\n                                \"name\": \"ESP32S3_REV_MIN_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_REV_MIN_FULL\",\n                                \"name\": \"ESP_REV_MIN_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_REV_MAX_FULL\",\n                                \"name\": \"ESP32S3_REV_MAX_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_REV_MAX_FULL\",\n                                \"name\": \"ESP_REV_MAX_FULL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_CI_BUILD\",\n                                \"help\": \"For internal chip testing, a small number of new versions chips didn't\\nupdate the version field in eFuse, you can enable this option to force the\\nsoftware recognize the chip version based on the rev selected in menuconfig.\",\n                                \"id\": \"ESP_REV_NEW_CHIP_TEST\",\n                                \"name\": \"ESP_REV_NEW_CHIP_TEST\",\n                                \"range\": null,\n                                \"title\": \"Internal test mode\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-chip-revision\",\n                        \"title\": \"Chip revision\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_BT\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_BT\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_ETH\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_ETH\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_ADDR_UNIVERSE_IEEE802154\",\n                                \"name\": \"ESP_MAC_ADDR_UNIVERSE_IEEE802154\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                \"name\": \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_UNIVERSAL_MAC_ADDRESSES>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                        \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\",\n                                        \"range\": null,\n                                        \"title\": \"Two\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_UNIVERSAL_MAC_ADDRESSES>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                        \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\",\n                                        \"range\": null,\n                                        \"title\": \"Four\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Configure the number of universally administered (by IEEE) MAC addresses.\\nDuring initialization, MAC addresses for each network interface are generated or derived from a\\nsingle base MAC address.\\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\\nreceive a universally administered MAC address. These are generated sequentially by adding 0\\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\\naddresses, respectively.\\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\\naddresses in this range (either 2 or 4 per device.)\",\n                                \"id\": \"component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address\",\n                                \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"title\": \"Number of universally administered (by IEEE) MAC address\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"name\": \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\\nand you still want to use this chip, you can enable this option to bypass such an error.\\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.\",\n                                \"id\": \"ESP_MAC_IGNORE_MAC_CRC_ERROR\",\n                                \"name\": \"ESP_MAC_IGNORE_MAC_CRC_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Ignore MAC CRC error (not recommended)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-mac-config\",\n                        \"title\": \"MAC Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM\",\n                                \"help\": \"If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\\n\\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.\",\n                                \"id\": \"ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"name\": \"ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Power down flash in light sleep when there is no SPIRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP && !ESP_SLEEP_POWER_DOWN_FLASH\",\n                                \"help\": \"All IOs will be set to isolate(floating) state by default during sleep.\\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\\nlow level(selected state) in the floating state, there will be a large current leakage, and the\\ndata in Flash may be corrupted by random signals on other SPI pins.\\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\\nincrease the sleep current about 10 uA.\\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\\nconsumption caused by internal pull-up during sleep.\\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)\",\n                                \"id\": \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"Pull-up Flash CS pin in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPIRAM\",\n                                \"help\": \"All IOs will be set to isolate(floating) state by default during sleep.\\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\\nlow level(selected state) in the floating state, there will be a large current leakage, and the\\ndata in PSRAM may be corrupted by random signals on other SPI pins.\\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\\nincrease the sleep current about 10 uA.\\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\\nconsumption caused by internal pull-up during sleep.\\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)\",\n                                \"id\": \"ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"Pull-up PSRAM CS pin in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ESP_SLEEP_POWER_DOWN_FLASH && (ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND)\",\n                                \"help\": \"To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\\nall pins. It depends on the SPI Flash/RAM chip used.\",\n                                \"id\": \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\",\n                                \"name\": \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\",\n                                \"range\": null,\n                                \"title\": \"Pull-up all SPI pins in light sleep\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"esp32c2, esp32c3, esp32s3, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\\na small electrostatic pulse during light sleep, with specific condition\\n\\n- GPIO needs to be configured as input-mode only\\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\\n  voltage is higher than 6 V\\n\\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\\nThe hardware design needs to controlled it with determined supply or ground voltage\\nis necessary.\\n\\nThis option provides a software workaround for this issue. Configure to isolate all\\nGPIO pins in sleep state.\",\n                                \"id\": \"ESP_SLEEP_GPIO_RESET_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_GPIO_RESET_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"light sleep GPIO reset workaround\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3\",\n                                \"help\": \"When the chip exits deep sleep, the CPU and the flash chip are powered on\\nat the same time. CPU will run deep sleep stub first, and then\\nproceed to load code from flash. Some flash chips need sufficient\\ntime to pass between power on and first read operation. By default,\\nwithout any extra delay, this time is approximately 900us, although\\nsome flash chip types need more than that.\\n\\nBy default extra delay is set to 2000us. When optimizing startup time\\nfor applications which require it, this value may be reduced.\\n\\nIf you are seeing \\\"flash read err, 1000\\\" message printed to the\\nconsole after deep sleep reset, try increasing this value.\",\n                                \"id\": \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\",\n                                \"name\": \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\",\n                                \"range\": [\n                                    0,\n                                    5000\n                                ],\n                                \"title\": \"Extra delay in deep sleep wake stub (in us)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\\nmake use of the internal ones.\",\n                                \"id\": \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\",\n                                \"name\": \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\",\n                                \"range\": null,\n                                \"title\": \"Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-sleep-config\",\n                        \"title\": \"Sleep Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32C3\",\n                                \"help\": \"Its not able to stall ESP32C3 systimer in sleep.\\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\\nTODO: IDF-7036\",\n                                \"id\": \"ESP_SLEEP_SYSTIMER_STALL_WORKAROUND\",\n                                \"name\": \"ESP_SLEEP_SYSTIMER_STALL_WORKAROUND\",\n                                \"range\": null,\n                                \"title\": \"ESP32C3 SYSTIMER Stall Issue Workaround\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-esp_sleep_workaround\",\n                        \"title\": \"ESP_SLEEP_WORKAROUND\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_INT_RC\",\n                                        \"name\": \"RTC_CLK_SRC_INT_RC\",\n                                        \"range\": null,\n                                        \"title\": \"Internal 136kHz RC oscillator\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_EXT_CRYS\",\n                                        \"name\": \"RTC_CLK_SRC_EXT_CRYS\",\n                                        \"range\": null,\n                                        \"title\": \"External 32kHz crystal\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_EXT_OSC\",\n                                        \"name\": \"RTC_CLK_SRC_EXT_OSC\",\n                                        \"range\": null,\n                                        \"title\": \"External 32kHz oscillator at 32K_XP pin\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice RTC_CLK_SRC>\",\n                                        \"help\": null,\n                                        \"id\": \"RTC_CLK_SRC_INT_8MD256\",\n                                        \"name\": \"RTC_CLK_SRC_INT_8MD256\",\n                                        \"range\": null,\n                                        \"title\": \"Internal 17.5MHz oscillator, divided by 256\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Choose which clock is used as RTC clock source.\",\n                                \"id\": \"component-config-hardware-settings-rtc-clock-config-rtc-clock-source\",\n                                \"name\": \"RTC_CLK_SRC\",\n                                \"title\": \"RTC clock source\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When the startup code initializes RTC_SLOW_CLK, it can perform\\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\\nby the calibration routine. Higher numbers increase calibration\\nprecision, which may be important for applications which spend a lot of\\ntime in deep sleep. Lower numbers reduce startup time.\\n\\nWhen this option is set to 0, clock calibration will not be performed at\\nstartup, and approximate clock frequencies will be assumed:\\n\\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\\n    In case more value will help improve the definition of the launch of the crystal.\\n    If the crystal could not start, it will be switched to internal RC.\",\n                                \"id\": \"RTC_CLK_CAL_CYCLES\",\n                                \"name\": \"RTC_CLK_CAL_CYCLES\",\n                                \"range\": [\n                                    0,\n                                    32766\n                                ],\n                                \"title\": \"Number of cycles for RTC_SLOW_CLK calibration\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-rtc-clock-config\",\n                        \"title\": \"RTC Clock Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Place peripheral control functions (e.g. periph_module_reset) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\",\n                                \"id\": \"PERIPH_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"PERIPH_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place peripheral control functions into IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-peripheral-control\",\n                        \"title\": \"Peripheral Control\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_ETM_SUPPORTED\",\n                                \"help\": \"Wether to enable the debug log message for ETM core driver.\\nNote that, this option only controls the ETM related driver log, won't affect other drivers.\",\n                                \"id\": \"ETM_ENABLE_DEBUG_LOG\",\n                                \"name\": \"ETM_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_ETM_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-etm-configuration\",\n                        \"title\": \"ETM Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                                \"help\": \"Place GDMA control functions (like start/stop/append/reset) into IRAM,\\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\\nEnabling this option can improve driver performance as well.\",\n                                \"id\": \"GDMA_CTRL_FUNC_IN_IRAM\",\n                                \"name\": \"GDMA_CTRL_FUNC_IN_IRAM\",\n                                \"range\": null,\n                                \"title\": \"Place GDMA control functions into IRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                                \"help\": \"This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\\ncache misses, and also be able to run whilst the cache is disabled.\\n(e.g. SPI Flash write).\",\n                                \"id\": \"GDMA_ISR_IRAM_SAFE\",\n                                \"name\": \"GDMA_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"GDMA ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_GDMA_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-gdma-configuration\",\n                        \"title\": \"GDMA Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_24M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_24\",\n                                        \"name\": \"XTAL_FREQ_24\",\n                                        \"range\": null,\n                                        \"title\": \"24 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_26M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_26\",\n                                        \"name\": \"XTAL_FREQ_26\",\n                                        \"range\": null,\n                                        \"title\": \"26 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_32M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_32\",\n                                        \"name\": \"XTAL_FREQ_32\",\n                                        \"range\": null,\n                                        \"title\": \"32 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_40M && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_40\",\n                                        \"name\": \"XTAL_FREQ_40\",\n                                        \"range\": null,\n                                        \"title\": \"40 MHz\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_XTAL_SUPPORT_AUTO_DETECT && <choice XTAL_FREQ_SEL>\",\n                                        \"help\": null,\n                                        \"id\": \"XTAL_FREQ_AUTO\",\n                                        \"name\": \"XTAL_FREQ_AUTO\",\n                                        \"range\": null,\n                                        \"title\": \"Autodetect\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\\nThe selected value MUST reflect the frequency of the given hardware.\\n\\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\\nin high ambient temperatures or use high-temperature qualified chips and modules.\",\n                                \"id\": \"component-config-hardware-settings-main-xtal-config-main-xtal-frequency\",\n                                \"name\": \"XTAL_FREQ_SEL\",\n                                \"title\": \"Main XTAL frequency\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"XTAL_FREQ\",\n                                \"name\": \"XTAL_FREQ\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-hardware-settings-main-xtal-config\",\n                        \"title\": \"Main XTAL Config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW\",\n                                                \"range\": null,\n                                                \"title\": \"Security level low\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM\",\n                                                \"range\": null,\n                                                \"title\": \"Security level medium\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_CRYPTO_DPA_PROTECTION_LEVEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH\",\n                                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH\",\n                                                \"range\": null,\n                                                \"title\": \"Security level high\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                        \"help\": \"Configure the DPA protection security level\",\n                                        \"id\": \"component-config-hardware-settings-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level\",\n                                        \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                        \"title\": \"DPA protection level\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                \"help\": \"This config controls the DPA (Differential Power Analysis) protection\\nknob for the crypto peripherals. DPA protection dynamically adjusts the\\nclock frequency of the crypto peripheral. DPA protection helps to make it\\ndifficult to perform SCA attacks on the crypto peripherals. However,\\nthere is also associated performance impact based on the security level\\nset. Please refer to the TRM for more details.\",\n                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP\",\n                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP\",\n                                \"range\": null,\n                                \"title\": \"Enable crypto DPA protection at startup\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                                \"help\": null,\n                                \"id\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                \"name\": \"ESP_CRYPTO_DPA_PROTECTION_LEVEL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_CRYPTO_DPA_PROTECTION_SUPPORTED\",\n                        \"id\": \"component-config-hardware-settings-crypto-dpa-protection\",\n                        \"title\": \"Crypto DPA Protection\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-hardware-settings\",\n                \"title\": \"Hardware Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"LCD driver allocates an internal buffer to transform the data into a proper format, because of\\nthe endian order mismatch. This option is to set the size of the buffer, in bytes.\",\n                                \"id\": \"LCD_PANEL_IO_FORMAT_BUF_SIZE\",\n                                \"name\": \"LCD_PANEL_IO_FORMAT_BUF_SIZE\",\n                                \"range\": null,\n                                \"title\": \"LCD panel io format buffer size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Wether to enable the debug log message for LCD driver.\\nNote that, this option only controls the LCD driver log, won't affect other drivers.\",\n                                \"id\": \"LCD_ENABLE_DEBUG_LOG\",\n                                \"name\": \"LCD_ENABLE_DEBUG_LOG\",\n                                \"range\": null,\n                                \"title\": \"Enable debug log\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_LCD_RGB_SUPPORTED\",\n                                \"help\": \"Ensure the LCD interrupt is IRAM-Safe by allowing the interrupt handler to be\\nexecutable when the cache is disabled (e.g. SPI Flash write).\\nIf you want the LCD driver to keep flushing the screen even when cache ops disabled,\\nyou can enable this option. Note, this will also increase the IRAM usage.\",\n                                \"id\": \"LCD_RGB_ISR_IRAM_SAFE\",\n                                \"name\": \"LCD_RGB_ISR_IRAM_SAFE\",\n                                \"range\": null,\n                                \"title\": \"RGB LCD ISR IRAM-Safe\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_LCD_RGB_SUPPORTED\",\n                                \"help\": \"Reset the GDMA channel every VBlank to stop permanent desyncs from happening.\\nOnly need to enable it when in your application, the DMA can't deliver data\\nas fast as the LCD consumes it.\",\n                                \"id\": \"LCD_RGB_RESTART_IN_VSYNC\",\n                                \"name\": \"LCD_RGB_RESTART_IN_VSYNC\",\n                                \"range\": null,\n                                \"title\": \"Restart transmission in VSYNC\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lcd-and-touch-panel-lcd-peripheral-configuration\",\n                        \"title\": \"LCD Peripheral Configuration\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-lcd-and-touch-panel\",\n                \"title\": \"LCD and Touch Panel\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\\n\\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\\nbe started everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\\nthe timer expires.\",\n                        \"id\": \"ESP_NETIF_IP_LOST_TIMER_INTERVAL\",\n                        \"name\": \"ESP_NETIF_IP_LOST_TIMER_INTERVAL\",\n                        \"range\": [\n                            0,\n                            65535\n                        ],\n                        \"title\": \"IP Address lost timer interval (seconds)\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_NETIF_USE_TCPIP_STACK_LIB>\",\n                                \"help\": \"lwIP is a small independent implementation of the TCP/IP protocol suite.\",\n                                \"id\": \"ESP_NETIF_TCPIP_LWIP\",\n                                \"name\": \"ESP_NETIF_TCPIP_LWIP\",\n                                \"range\": null,\n                                \"title\": \"LwIP\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_NETIF_USE_TCPIP_STACK_LIB>\",\n                                \"help\": \"Dummy implementation of esp-netif functionality which connects driver transmit\\nto receive function. This option is for testing purpose only\",\n                                \"id\": \"ESP_NETIF_LOOPBACK\",\n                                \"name\": \"ESP_NETIF_LOOPBACK\",\n                                \"range\": null,\n                                \"title\": \"Loopback\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.\",\n                        \"id\": \"component-config-esp-netif-adapter-tcp-ip-stack-library\",\n                        \"name\": \"ESP_NETIF_USE_TCPIP_STACK_LIB\",\n                        \"title\": \"TCP/IP Stack Library\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_NETIF_USES_TCPIP_WITH_BSD_API\",\n                        \"name\": \"ESP_NETIF_USES_TCPIP_WITH_BSD_API\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable if esp_netif_receive() should return error code. This is useful to inform upper layers\\nthat packet input to TCP/IP stack failed, so the upper layers could implement flow control.\\nThis option is disabled by default due to backward compatibility and will be enabled in v6.0 (IDF-7194)\",\n                        \"id\": \"ESP_NETIF_RECEIVE_REPORT_ERRORS\",\n                        \"name\": \"ESP_NETIF_RECEIVE_REPORT_ERRORS\",\n                        \"range\": null,\n                        \"title\": \"Use esp_err_t to report errors from esp_netif_receive\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_NETIF_L2_TAP\",\n                                \"help\": \"Maximum number of opened File descriptors (FD's) associated with ESP TAP device. ESP TAP FD's take up\\na certain amount of memory, and allowing fewer FD's to be opened at the same time conserves memory.\",\n                                \"id\": \"ESP_NETIF_L2_TAP_MAX_FDS\",\n                                \"name\": \"ESP_NETIF_L2_TAP_MAX_FDS\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of opened L2 TAP File descriptors\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_NETIF_L2_TAP\",\n                                \"help\": \"Maximum number of frames queued in opened File descriptor. Once the queue is full, the newly arriving\\nframes are dropped until the queue has enough room to accept incoming traffic (Tail Drop queue\\nmanagement).\",\n                                \"id\": \"ESP_NETIF_L2_TAP_RX_QUEUE_SIZE\",\n                                \"name\": \"ESP_NETIF_L2_TAP_RX_QUEUE_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Size of L2 TAP Rx queue\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"A user program can read/write link layer (L2) frames from/to ESP TAP device.\\nThe ESP TAP device can be currently associated only with Ethernet physical interfaces.\",\n                        \"id\": \"ESP_NETIF_L2_TAP\",\n                        \"name\": \"ESP_NETIF_L2_TAP\",\n                        \"range\": null,\n                        \"title\": \"Enable netif L2 TAP support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_NETIF_TCPIP_LWIP\",\n                        \"help\": \"Enable LwIP IEEE 802.1D bridge support in ESP-NETIF. Note that \\\"Number of clients store data in netif\\\"\\n(LWIP_NUM_NETIF_CLIENT_DATA) option needs to be properly configured to be LwIP bridge avaiable!\",\n                        \"id\": \"ESP_NETIF_BRIDGE_EN\",\n                        \"name\": \"ESP_NETIF_BRIDGE_EN\",\n                        \"range\": null,\n                        \"title\": \"Enable LwIP IEEE 802.1D bridge\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-netif-adapter\",\n                \"title\": \"ESP NETIF Adapter\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_LINUX\",\n                        \"help\": \"This option enables gathering host test statistics and SPI flash wear levelling simulation.\",\n                        \"id\": \"ESP_PARTITION_ENABLE_STATS\",\n                        \"name\": \"ESP_PARTITION_ENABLE_STATS\",\n                        \"range\": null,\n                        \"title\": \"Host test statistics enabled\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-partition-api-configuration\",\n                \"title\": \"Partition API Configuration\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full calibration\\nwill be performed and stored in NVS. Normally, only partial calibration will be performed.\\nIf this option is disabled, full calibration will be performed.\\n\\nIf it's easy that your board calibrate bad data, choose 'n'.\\nTwo cases for example, you should choose 'n':\\n1.If your board is easy to be booted up with antenna disconnected.\\n2.Because of your board design, each time when you do calibration, the result are too unstable.\\nIf unsure, choose 'y'.\",\n                        \"id\": \"ESP_PHY_CALIBRATION_AND_DATA_STORAGE\",\n                        \"name\": \"ESP_PHY_CALIBRATION_AND_DATA_STORAGE\",\n                        \"range\": null,\n                        \"title\": \"Store phy calibration data in NVS\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_PHY_INIT_DATA_IN_PARTITION\",\n                                \"help\": \"If enabled, PHY init data will be restored to default if\\nit cannot be verified successfully to avoid endless bootloops.\\n\\nIf unsure, choose 'n'.\",\n                                \"id\": \"ESP_PHY_DEFAULT_INIT_IF_INVALID\",\n                                \"name\": \"ESP_PHY_DEFAULT_INIT_IF_INVALID\",\n                                \"range\": null,\n                                \"title\": \"Reset default PHY init data if invalid\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION\",\n                                        \"help\": \"If enabled, multiple phy init data bin will embedded into app bin\\nIf not enabled, multiple phy init data bin will still leave alone, and need to be flashed by users.\",\n                                        \"id\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED\",\n                                        \"name\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED\",\n                                        \"range\": null,\n                                        \"title\": \"Support embedded multiple phy init data bin to app bin\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION\",\n                                        \"help\": \"If enabled, when an error occurs while the PHY init data is updated,\\nthe program will terminate and restart.\\nIf not enabled, the PHY init data will not be updated when an error occurs.\",\n                                        \"id\": \"ESP_PHY_INIT_DATA_ERROR\",\n                                        \"name\": \"ESP_PHY_INIT_DATA_ERROR\",\n                                        \"range\": null,\n                                        \"title\": \"Terminate operation when PHY init data error\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_INIT_DATA_IN_PARTITION\",\n                                \"help\": \"If enabled, the corresponding PHY init data type can be automatically switched\\naccording to the country code. China's PHY init data bin is used by default.\\nCan be modified by country information in API esp_wifi_set_country().\\nThe priority of switching the PHY init data type is:\\n1. Country configured by API esp_wifi_set_country()\\nand the parameter policy is WIFI_COUNTRY_POLICY_MANUAL.\\n2. Country notified by the connected AP.\\n3. Country configured by API esp_wifi_set_country()\\nand the parameter policy is WIFI_COUNTRY_POLICY_AUTO.\",\n                                \"id\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN\",\n                                \"name\": \"ESP_PHY_MULTIPLE_INIT_DATA_BIN\",\n                                \"range\": null,\n                                \"title\": \"Support multiple PHY init data bin\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_WIFI_SUPPORTED\",\n                        \"help\": \"If enabled, PHY init data will be loaded from a partition.\\nWhen using a custom partition table, make sure that PHY data\\npartition is included (type: 'data', subtype: 'phy').\\nWith default partition tables, this is done automatically.\\nIf PHY init data is stored in a partition, it has to be flashed there,\\notherwise runtime error will occur.\\n\\nIf this option is not enabled, PHY init data will be embedded\\ninto the application binary.\\n\\nIf unsure, choose 'n'.\",\n                        \"id\": \"ESP_PHY_INIT_DATA_IN_PARTITION\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"ESP_PHY_INIT_DATA_IN_PARTITION\",\n                        \"range\": null,\n                        \"title\": \"Use a partition to store PHY init data\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set maximum transmit power for WiFi radio. Actual transmit power for high\\ndata rates may be lower than this setting.\",\n                        \"id\": \"ESP_PHY_MAX_WIFI_TX_POWER\",\n                        \"name\": \"ESP_PHY_MAX_WIFI_TX_POWER\",\n                        \"range\": [\n                            10,\n                            20\n                        ],\n                        \"title\": \"Max WiFi TX power (dBm)\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_PHY_MAX_TX_POWER\",\n                        \"name\": \"ESP_PHY_MAX_TX_POWER\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_PM_SUPPORT_MAC_BB_PD && FREERTOS_USE_TICKLESS_IDLE\",\n                        \"help\": \"If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered\\ndown when PHY is disabled. Enabling this setting reduces power consumption\\nby a small amount but increases RAM use by approximately 4 KB(Wi-Fi only),\\n2 KB(Bluetooth only) or 5.3 KB(Wi-Fi + Bluetooth).\",\n                        \"id\": \"ESP_PHY_MAC_BB_PD\",\n                        \"name\": \"ESP_PHY_MAC_BB_PD\",\n                        \"range\": null,\n                        \"title\": \"Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_BROWNOUT_DET\",\n                        \"help\": \"When brownout reset occurs, reduce PHY TX power to keep the code running.\",\n                        \"id\": \"ESP_PHY_REDUCE_TX_POWER\",\n                        \"name\": \"ESP_PHY_REDUCE_TX_POWER\",\n                        \"range\": null,\n                        \"title\": \"Reduce PHY TX power when brownout reset\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"USB_OTG_SUPPORTED || ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\",\n                        \"help\": \"When using USB Serial/JTAG/OTG/CDC, PHY should enable USB, otherwise USB module\\ncan not work properly. Notice: Enabling this configuration option will slightly impact wifi performance.\",\n                        \"id\": \"ESP_PHY_ENABLE_USB\",\n                        \"name\": \"ESP_PHY_ENABLE_USB\",\n                        \"range\": null,\n                        \"title\": \"Enable USB when phy init\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3\",\n                        \"help\": \"If enabled, you can use RF certification test APIs.\",\n                        \"id\": \"ESP_PHY_ENABLE_CERT_TEST\",\n                        \"name\": \"ESP_PHY_ENABLE_CERT_TEST\",\n                        \"range\": null,\n                        \"title\": \"Enable RF certification test functions\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_PHY_CALIBRATION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_PHY_RF_CAL_PARTIAL\",\n                                \"name\": \"ESP_PHY_RF_CAL_PARTIAL\",\n                                \"range\": null,\n                                \"title\": \"Calibration partial\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_PHY_CALIBRATION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_PHY_RF_CAL_NONE\",\n                                \"name\": \"ESP_PHY_RF_CAL_NONE\",\n                                \"range\": null,\n                                \"title\": \"Calibration none\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_PHY_CALIBRATION_MODE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_PHY_RF_CAL_FULL\",\n                                \"name\": \"ESP_PHY_RF_CAL_FULL\",\n                                \"range\": null,\n                                \"title\": \"Calibration full\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select PHY calibration mode. During RF initialization, the partial calibration\\nmethod is used by default for RF calibration. Full calibration takes about 100ms\\nmore than partial calibration. If boot duration is not critical, it is suggested\\nto use the full calibration method. No calibration method is only used when the\\ndevice wakes up from deep sleep.\",\n                        \"id\": \"component-config-phy-calibration-mode\",\n                        \"name\": \"ESP_PHY_CALIBRATION_MODE\",\n                        \"title\": \"Calibration mode\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_PHY_CALIBRATION_MODE\",\n                        \"name\": \"ESP_PHY_CALIBRATION_MODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_PHY_IMPROVE_RX_11B\",\n                        \"help\": \"This is a workaround to improve Wi-Fi receive 11b pkts for some modules using AC-DC power supply with\\nhigh interference, enable this option will sacrifice Wi-Fi OFDM receive performance.\\nBut to guarantee 11b receive performance serves as a bottom line in this case.\",\n                        \"id\": \"ESP_PHY_IMPROVE_RX_11B\",\n                        \"name\": \"ESP_PHY_IMPROVE_RX_11B\",\n                        \"range\": null,\n                        \"title\": \"Improve Wi-Fi receive 11b pkts\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-phy\",\n                \"title\": \"PHY\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"PM_ENABLE\",\n                                \"help\": \"If enabled, startup code configures dynamic frequency scaling.\\nMax CPU frequency is set to DEFAULT_CPU_FREQ_MHZ setting,\\nmin frequency is set to XTAL frequency.\\nIf disabled, DFS will not be active until the application\\nconfigures it using esp_pm_configure function.\",\n                                \"id\": \"PM_DFS_INIT_AUTO\",\n                                \"name\": \"PM_DFS_INIT_AUTO\",\n                                \"range\": null,\n                                \"title\": \"Enable dynamic frequency scaling (DFS) at startup\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"PM_ENABLE\",\n                                \"help\": \"If enabled, esp_pm_* functions will keep track of the amount of time\\neach of the power management locks has been held, and esp_pm_dump_locks\\nfunction will print this information.\\nThis feature can be used to analyze which locks are preventing the chip\\nfrom going into a lower power state, and see what time the chip spends\\nin each power saving mode. This feature does incur some run-time\\noverhead, so should typically be disabled in production builds.\",\n                                \"id\": \"PM_PROFILING\",\n                                \"name\": \"PM_PROFILING\",\n                                \"range\": null,\n                                \"title\": \"Enable profiling counters for PM locks\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"PM_ENABLE\",\n                                \"help\": \"If enabled, some GPIOs will be used to signal events such as RTOS ticks,\\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\\nfile for the list of GPIOs.\\nThis feature is intended to be used when analyzing/debugging behavior\\nof power management implementation, and should be kept disabled in\\napplications.\",\n                                \"id\": \"PM_TRACE\",\n                                \"name\": \"PM_TRACE\",\n                                \"range\": null,\n                                \"title\": \"Enable debug tracing of PM using GPIOs\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!FREERTOS_SMP\",\n                        \"help\": \"If enabled, application is compiled with support for power management.\\nThis option has run-time overhead (increased interrupt latency,\\nlonger time to enter idle state), and it also reduces accuracy of\\nRTOS ticks and timers used for timekeeping.\\nEnable this option if application uses power management APIs.\",\n                        \"id\": \"PM_ENABLE\",\n                        \"name\": \"PM_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Support for power management\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                        \"help\": \"If enabled, about 1.8KB of lightsleep related source code would be in IRAM and chip would sleep\\nlonger for 760us at most each time.\\nThis feature is intended to be used when lower power consumption is needed\\nwhile there is enough place in IRAM to place source code.\",\n                        \"id\": \"PM_SLP_IRAM_OPT\",\n                        \"name\": \"PM_SLP_IRAM_OPT\",\n                        \"range\": null,\n                        \"title\": \"Put lightsleep related codes in internal RAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                        \"help\": \"If enabled, about 260B of RTOS_IDLE related source code would be in IRAM and chip would sleep\\nlonger for 40us at most each time.\\nThis feature is intended to be used when lower power consumption is needed\\nwhile there is enough place in IRAM to place source code.\",\n                        \"id\": \"PM_RTOS_IDLE_OPT\",\n                        \"name\": \"PM_RTOS_IDLE_OPT\",\n                        \"range\": null,\n                        \"title\": \"Put RTOS IDLE related codes in internal RAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                        \"help\": \"This feature is intended to disable all GPIO pins at automantic sleep to get a lower power mode.\\nIf enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA current.\\nIf you want to specifically use some pins normally as chip wakes when chip sleeps,\\nyou can call 'gpio_sleep_sel_dis' to disable this feature on those pins.\\nYou can also keep this feature on and call 'gpio_sleep_set_direction' and 'gpio_sleep_set_pull_mode'\\nto have a different GPIO configuration at sleep.\\nWaring: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\\nat first, otherwise you will not be able to switch pullup/pulldown mode.\",\n                        \"id\": \"PM_SLP_DISABLE_GPIO\",\n                        \"name\": \"PM_SLP_DISABLE_GPIO\",\n                        \"range\": null,\n                        \"title\": \"Disable all GPIO when chip at sleep\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"PM_SLP_DEFAULT_PARAMS_OPT\",\n                        \"name\": \"PM_SLP_DEFAULT_PARAMS_OPT\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\",\n                        \"help\": \"This option is invisible to users, and it is only used for ci testing,\\nenabling it in the application will increase the sleep and wake-up time overhead\",\n                        \"id\": \"PM_CHECK_SLEEP_RETENTION_FRAME\",\n                        \"name\": \"PM_CHECK_SLEEP_RETENTION_FRAME\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\",\n                                \"help\": \"If enabled, the I/D-cache tag memory will be retained in light sleep. Depending on the the\\ncache configuration, if this option is enabled, it will consume up to 9 KB of internal RAM.\",\n                                \"id\": \"PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP\",\n                                \"name\": \"PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP\",\n                                \"range\": null,\n                                \"title\": \"Power down I/D-cache tag memory in light sleep\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_PM_SUPPORT_CPU_PD\",\n                        \"help\": \"If enabled, the CPU will be powered down in light sleep. On esp32c3 soc, enabling this\\noption will consume 1.68 KB of internal RAM and will reduce sleep current consumption\\nby about 100 uA. On esp32s3 soc, enabling this option will consume 8.58 KB of internal\\nRAM and will reduce sleep current consumption by about 650 uA.\",\n                        \"id\": \"PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\",\n                        \"name\": \"PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\",\n                        \"range\": null,\n                        \"title\": \"Power down CPU in light sleep\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_PAU_SUPPORTED\",\n                        \"help\": \"If enabled, digital peripherals will be powered down in light sleep, it will reduce sleep\\ncurrent consumption by about 100 uA. Chip will save/restore register context at sleep/wake\\ntime to keep the system running. Enabling this option will increase static RAM and heap usage,\\nthe actual cost depends on the peripherals you have initialized. In order to save/restore the\\ncontext of the necessary hardware for FreeRTOS to run, it will need at least 4.55 KB free heap\\nat sleep time. Otherwise sleep will not power down the peripherals.\\n\\nNote1: Please use this option with caution, the current IDF does not support the retention of\\nall peripherals. When the digital peripherals are powered off and a sleep and wake-up is completed,\\nthe peripherals that have not saved the running context are equivalent to performing a reset.\\n!!! Please confirm the peripherals used in your application and their sleep retention support status\\nbefore enabling this option, peripherals sleep retention driver support status is tracked in\\npower_management.rst\\n\\nNote2: When this option is enabled simultaneously with FREERTOS_USE_TICKLESS_IDLE, since the UART will\\nbe powered down, the uart FIFO will be flushed before sleep to avoid data loss, however, this has the\\npotential to block the sleep process and cause the wakeup time to be skipped, which will cause the tick\\nof freertos to not be compensated correctly when returning from sleep and cause the system to crash.\\nTo avoid this, you can increase FREERTOS_IDLE_TIME_BEFORE_SLEEP threshold in menuconfig.\",\n                        \"id\": \"PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP\",\n                        \"name\": \"PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP\",\n                        \"range\": null,\n                        \"title\": \"Power down Digital Peripheral in light sleep (EXPERIMENTAL)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"PM_UPDATE_CCOMPARE_HLI_WORKAROUND\",\n                        \"name\": \"PM_UPDATE_CCOMPARE_HLI_WORKAROUND\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-power-management\",\n                \"title\": \"Power Management\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_MODE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_MODE_QUAD\",\n                                                \"name\": \"SPIRAM_MODE_QUAD\",\n                                                \"range\": null,\n                                                \"title\": \"Quad Mode PSRAM\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_MODE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_MODE_OCT\",\n                                                \"name\": \"SPIRAM_MODE_OCT\",\n                                                \"range\": null,\n                                                \"title\": \"Octal Mode PSRAM\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": null,\n                                        \"id\": \"component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-mode-quad-oct-of-spi-ram-chip-in-use\",\n                                        \"name\": \"SPIRAM_MODE\",\n                                        \"title\": \"Mode (QUAD/OCT) of SPI RAM chip in use\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_TYPE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_TYPE_AUTO\",\n                                                \"name\": \"SPIRAM_TYPE_AUTO\",\n                                                \"range\": null,\n                                                \"title\": \"Auto-detect\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"SPIRAM_MODE_QUAD && <choice SPIRAM_TYPE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_TYPE_ESPPSRAM16\",\n                                                \"name\": \"SPIRAM_TYPE_ESPPSRAM16\",\n                                                \"range\": null,\n                                                \"title\": \"ESP-PSRAM16 or APS1604\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"SPIRAM_MODE_QUAD && <choice SPIRAM_TYPE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_TYPE_ESPPSRAM32\",\n                                                \"name\": \"SPIRAM_TYPE_ESPPSRAM32\",\n                                                \"range\": null,\n                                                \"title\": \"ESP-PSRAM32\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_TYPE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_TYPE_ESPPSRAM64\",\n                                                \"name\": \"SPIRAM_TYPE_ESPPSRAM64\",\n                                                \"range\": null,\n                                                \"title\": \"ESP-PSRAM64 , LY68L6400 or APS6408\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": null,\n                                        \"id\": \"component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-type-of-spiram-chip-in-use\",\n                                        \"name\": \"SPIRAM_TYPE\",\n                                        \"title\": \"Type of SPIRAM chip in use\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Accessing memory in SPIRAM has certain restrictions, so task stacks allocated by xTaskCreate\\nare by default allocated from internal RAM.\\n\\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\",\n                                        \"id\": \"SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY\",\n                                        \"name\": \"SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY\",\n                                        \"range\": null,\n                                        \"title\": \"Allow external memory as an argument to xTaskCreateStatic\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": null,\n                                        \"id\": \"SPIRAM_CLK_IO\",\n                                        \"name\": \"SPIRAM_CLK_IO\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": null,\n                                        \"id\": \"SPIRAM_CS_IO\",\n                                        \"name\": \"SPIRAM_CS_IO\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If enabled, instructions in flash will be moved into PSRAM on startup.\\nIf SPIRAM_RODATA is also enabled, code that requires execution during an SPI1 Flash operation\\ncan forgo being placed in IRAM, thus optimizing RAM usage (see External RAM documentation\\nfor more details).\",\n                                        \"id\": \"SPIRAM_FETCH_INSTRUCTIONS\",\n                                        \"name\": \"SPIRAM_FETCH_INSTRUCTIONS\",\n                                        \"range\": null,\n                                        \"title\": \"Move Instructions in Flash to PSRAM\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If enabled, rodata in flash will be moved into PSRAM on startup.\\nIf SPIRAM_FETCH_INSTRUCTIONS is also enabled, code that requires execution during an SPI1 Flash operation\\ncan forgo being placed in IRAM, thus optimizing RAM usage (see External RAM documentation\\nfor more details).\",\n                                        \"id\": \"SPIRAM_RODATA\",\n                                        \"name\": \"SPIRAM_RODATA\",\n                                        \"range\": null,\n                                        \"title\": \"Move Read-Only Data in Flash to PSRAM\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"(SPIRAM_MODE_QUAD || IDF_EXPERIMENTAL_FEATURES) && <choice SPIRAM_SPEED>\",\n                                                \"help\": \"- Quad PSRAM 120 MHz is stable.\\n\\n- Octal PSRAM 120 MHz is an experimental feature, it works when\\n  the temperature is stable.\\n\\n    Risks:\\n        If your chip powers on at a certain temperature, then after the temperature\\n        increases or decreases by approximately 20 Celsius degrees (depending on the\\n        chip), the accesses to / from PSRAM will crash randomly.\",\n                                                \"id\": \"SPIRAM_SPEED_120M\",\n                                                \"name\": \"SPIRAM_SPEED_120M\",\n                                                \"range\": null,\n                                                \"title\": \"120MHz clock speed\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_SPEED>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_SPEED_80M\",\n                                                \"name\": \"SPIRAM_SPEED_80M\",\n                                                \"range\": null,\n                                                \"title\": \"80MHz clock speed\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_SPEED>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_SPEED_40M\",\n                                                \"name\": \"SPIRAM_SPEED_40M\",\n                                                \"range\": null,\n                                                \"title\": \"40Mhz clock speed\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Select the speed for the SPI RAM chip.\",\n                                        \"id\": \"component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed\",\n                                        \"name\": \"SPIRAM_SPEED\",\n                                        \"title\": \"Set RAM clock speed\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": null,\n                                        \"id\": \"SPIRAM_SPEED\",\n                                        \"name\": \"SPIRAM_SPEED\",\n                                        \"range\": null,\n                                        \"title\": null,\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"SPIRAM_BOOT_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                                \"help\": \"Normally, if psram initialization is enabled during compile time but not found at runtime, it\\nis seen as an error making the CPU panic. If this is enabled, booting will complete\\nbut no PSRAM will be available.\",\n                                                \"id\": \"SPIRAM_IGNORE_NOTFOUND\",\n                                                \"name\": \"SPIRAM_IGNORE_NOTFOUND\",\n                                                \"range\": null,\n                                                \"title\": \"Ignore PSRAM when not found\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If this is enabled, the SPI RAM will be enabled during initial boot. Unless you\\nhave specific requirements, you'll want to leave this enabled so memory allocated\\nduring boot-up can also be placed in SPI RAM.\",\n                                        \"id\": \"SPIRAM_BOOT_INIT\",\n                                        \"name\": \"SPIRAM_BOOT_INIT\",\n                                        \"range\": null,\n                                        \"title\": \"Initialize SPI RAM during startup\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_USE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_USE_MEMMAP\",\n                                                \"name\": \"SPIRAM_USE_MEMMAP\",\n                                                \"range\": null,\n                                                \"title\": \"Integrate RAM into memory map\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_USE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_USE_CAPS_ALLOC\",\n                                                \"name\": \"SPIRAM_USE_CAPS_ALLOC\",\n                                                \"range\": null,\n                                                \"title\": \"Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice SPIRAM_USE>\",\n                                                \"help\": null,\n                                                \"id\": \"SPIRAM_USE_MALLOC\",\n                                                \"name\": \"SPIRAM_USE_MALLOC\",\n                                                \"range\": null,\n                                                \"title\": \"Make RAM allocatable using malloc() as well\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"The SPI RAM can be accessed in multiple methods: by just having it available as an unmanaged\\nmemory region in the CPU's memory map, by integrating it in the heap as 'special' memory\\nneeding heap_caps_malloc to allocate, or by fully integrating it making malloc() also able to\\nreturn SPI RAM pointers.\",\n                                        \"id\": \"component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method\",\n                                        \"name\": \"SPIRAM_USE\",\n                                        \"title\": \"SPI RAM access method\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM_BOOT_INIT && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Runs a rudimentary memory test on initialization. Aborts when memory test fails. Disable this for\\nslightly faster startup.\",\n                                        \"id\": \"SPIRAM_MEMTEST\",\n                                        \"name\": \"SPIRAM_MEMTEST\",\n                                        \"range\": null,\n                                        \"title\": \"Run memory test on SPI RAM initialization\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If malloc() is capable of also allocating SPI-connected ram, its allocation strategy will prefer to\\nallocate chunks less than this size in internal memory, while allocations larger than this will be\\ndone from external RAM. If allocation from the preferred region fails, an attempt is made to allocate\\nfrom the non-preferred region instead, so malloc() will not suddenly fail when either internal or\\nexternal memory is full.\",\n                                        \"id\": \"SPIRAM_MALLOC_ALWAYSINTERNAL\",\n                                        \"name\": \"SPIRAM_MALLOC_ALWAYSINTERNAL\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum malloc() size, in bytes, to always put in internal memory\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, try to allocate internal\\nmemory then.\",\n                                        \"id\": \"SPIRAM_TRY_ALLOCATE_WIFI_LWIP\",\n                                        \"name\": \"SPIRAM_TRY_ALLOCATE_WIFI_LWIP\",\n                                        \"range\": null,\n                                        \"title\": \"Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Because the external/internal RAM allocation strategy is not always perfect, it sometimes may happen\\nthat the internal memory is entirely filled up. This causes allocations that are specifically done in\\ninternal memory, for example the stack for new tasks or memory to service DMA or have memory that's\\nalso available when SPI cache is down, to fail. This option reserves a pool specifically for requests\\nlike that; the memory in this pool is not given out when a normal malloc() is called.\\n\\nSet this to 0 to disable this feature.\\n\\nNote that because FreeRTOS stacks are forced to internal memory, they will also use this memory pool;\\nbe sure to keep this in mind when adjusting this value.\\n\\nNote also that the DMA reserved pool may not be one single contiguous memory region, depending on the\\nconfigured size and the static memory usage of the app.\",\n                                        \"id\": \"SPIRAM_MALLOC_RESERVE_INTERNAL\",\n                                        \"name\": \"SPIRAM_MALLOC_RESERVE_INTERNAL\",\n                                        \"range\": null,\n                                        \"title\": \"Reserve this amount of bytes for data that specifically needs to be in DMA or internal memory\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If enabled, variables with EXT_RAM_BSS_ATTR attribute will be placed in SPIRAM instead of internal DRAM.\\nBSS section of `lwip`, `net80211`, `pp`, `bt` libraries will be automatically placed\\nin SPIRAM. BSS sections from other object files and libraries can also be placed in SPIRAM through\\nlinker fragment scheme `extram_bss`.\\n\\nNote that the variables placed in SPIRAM using EXT_RAM_BSS_ATTR will be zero initialized.\",\n                                        \"id\": \"SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                                        \"name\": \"SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY\",\n                                        \"range\": null,\n                                        \"title\": \"Allow .bss segment placed in external memory\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM && IDF_TARGET_ESP32 && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"If enabled, noinit variables can be placed in PSRAM using EXT_RAM_NOINIT_ATTR.\\n\\nNote the values placed into this section will not be initialized at startup and should keep its value\\nafter software restart.\",\n                                        \"id\": \"SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY\",\n                                        \"name\": \"SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY\",\n                                        \"range\": null,\n                                        \"title\": \"Allow .noinit segment placed in external memory\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIRAM_MODE_OCT && IDF_TARGET_ESP32S3 && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                        \"help\": \"Enable MSPI Error-Correcting Code function when accessing SPIRAM.\\n\\nIf enabled, 1/16 of the SPI RAM total size will be reserved for error-correcting code.\",\n                                        \"id\": \"SPIRAM_ECC_ENABLE\",\n                                        \"name\": \"SPIRAM_ECC_ENABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Enable SPI RAM ECC\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"id\": \"component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config\",\n                                \"title\": \"SPI RAM config\",\n                                \"type\": \"menu\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This enables support for an external SPI RAM chip, connected in parallel with the\\nmain SPI flash chip.\",\n                        \"id\": \"SPIRAM\",\n                        \"name\": \"SPIRAM\",\n                        \"range\": null,\n                        \"title\": \"Support for external, SPI-connected RAM\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"id\": \"component-config-esp-psram\",\n                \"title\": \"ESP PSRAM\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"RINGBUF_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"help\": \"Place ISR ringbuf functions (like xRingbufferSendFromISR/xRingbufferReceiveFromISR) into flash.\\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled\\nor from an IRAM interrupt context.\\n\\nThis option is not compatible with ESP-IDF drivers which are configured to\\nrun the ISR from an IRAM context, e.g. CONFIG_UART_ISR_IN_IRAM.\",\n                                \"id\": \"RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH\",\n                                \"name\": \"RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Place ISR ringbuf functions into flash\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Place non-ISR ringbuf functions (like xRingbufferCreate/xRingbufferSend) into flash.\\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled.\",\n                        \"id\": \"RINGBUF_PLACE_FUNCTIONS_INTO_FLASH\",\n                        \"name\": \"RINGBUF_PLACE_FUNCTIONS_INTO_FLASH\",\n                        \"range\": null,\n                        \"title\": \"Place non-ISR ringbuf functions into flash\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-ringbuf\",\n                \"title\": \"ESP Ringbuf\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_ENV_FPGA && <choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_40\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_40\",\n                                \"range\": null,\n                                \"title\": \"40 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_80\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_80\",\n                                \"range\": null,\n                                \"title\": \"80 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_160\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_160\",\n                                \"range\": null,\n                                \"title\": \"160 MHz\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_DEFAULT_CPU_FREQ_MHZ>\",\n                                \"help\": null,\n                                \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ_240\",\n                                \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ_240\",\n                                \"range\": null,\n                                \"title\": \"240 MHz\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"CPU frequency to be set on application startup.\",\n                        \"id\": \"component-config-esp-system-settings-cpu-frequency\",\n                        \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"title\": \"CPU frequency\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"name\": \"ESP_DEFAULT_CPU_FREQ_MHZ\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_16KB\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_16KB\",\n                                        \"range\": null,\n                                        \"title\": \"16KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_32KB\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_32KB\",\n                                        \"range\": null,\n                                        \"title\": \"32KB\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache size to be set on application startup.\\nIf you use 16KB instruction cache rather than 32KB instruction cache,\\nthen the other 16KB will be managed by heap allocator.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-size\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"title\": \"Instruction cache size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_ICACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_4WAYS\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_4WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"4 ways\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_ICACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_8WAYS\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_8WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"8 ways\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache associated ways to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-associated-ways\",\n                                \"name\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"title\": \"Instruction cache associated ways\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"name\": \"ESP32S3_ICACHE_ASSOCIATED_WAYS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_INSTRUCTION_CACHE_16KB && <choice ESP32S3_INSTRUCTION_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\",\n                                        \"range\": null,\n                                        \"title\": \"16 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_INSTRUCTION_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\",\n                                        \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\",\n                                        \"range\": null,\n                                        \"title\": \"32 Bytes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Instruction cache line size to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-instruction-cache-line-size\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"title\": \"Instruction cache line size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM_ECC_ENABLE\",\n                                \"help\": \"If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\\nHowever, it depends on complex conditions.\",\n                                \"id\": \"ESP32S3_INSTRUCTION_CACHE_WRAP\",\n                                \"name\": \"ESP32S3_INSTRUCTION_CACHE_WRAP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_16KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_16KB\",\n                                        \"range\": null,\n                                        \"title\": \"16KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_32KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_32KB\",\n                                        \"range\": null,\n                                        \"title\": \"32KB\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_64KB\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_64KB\",\n                                        \"range\": null,\n                                        \"title\": \"64KB\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache size to be set on application startup.\\nIf you use 32KB data cache rather than 64KB data cache,\\nthe other 32KB will be added to the heap.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-size\",\n                                \"name\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"title\": \"Data cache size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"name\": \"ESP32S3_DATA_CACHE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DCACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_4WAYS\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_4WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"4 ways\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DCACHE_ASSOCIATED_WAYS>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_8WAYS\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_8WAYS\",\n                                        \"range\": null,\n                                        \"title\": \"8 ways\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache associated ways to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-associated-ways\",\n                                \"name\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"title\": \"Data cache associated ways\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"name\": \"ESP32S3_DCACHE_ASSOCIATED_WAYS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && <choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_16B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_16B\",\n                                        \"range\": null,\n                                        \"title\": \"16 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_32B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_32B\",\n                                        \"range\": null,\n                                        \"title\": \"32 Bytes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice ESP32S3_DATA_CACHE_LINE_SIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"ESP32S3_DATA_CACHE_LINE_64B\",\n                                        \"name\": \"ESP32S3_DATA_CACHE_LINE_64B\",\n                                        \"range\": null,\n                                        \"title\": \"64 Bytes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Data cache line size to be set on application startup.\",\n                                \"id\": \"component-config-esp-system-settings-cache-config-data-cache-line-size\",\n                                \"name\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"title\": \"Data cache line size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"name\": \"ESP32S3_DATA_CACHE_LINE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM_ECC_ENABLE\",\n                                \"help\": \"If enabled, data cache will use wrap mode to read spi flash or spi ram.\\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\\nHowever, it depends on complex conditions.\",\n                                \"id\": \"ESP32S3_DATA_CACHE_WRAP\",\n                                \"name\": \"ESP32S3_DATA_CACHE_WRAP\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-cache-config\",\n                        \"title\": \"Cache config\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This option allows to place .rtc_data and .rtc_rodata sections into\\nRTC fast memory segment to free the slow memory region for ULP programs.\",\n                                \"id\": \"ESP32S3_RTCDATA_IN_FAST_MEM\",\n                                \"name\": \"ESP32S3_RTCDATA_IN_FAST_MEM\",\n                                \"range\": null,\n                                \"title\": \"Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                        \"help\": \"RAM size dedicated for static variables (.data & .bss sections).\\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\\nE.g. parts are used by the software bootloader, and will only be available\\nas heap memory after app startup.\",\n                                        \"id\": \"ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                        \"name\": \"ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Fixed Static RAM size\",\n                                        \"type\": \"hex\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"If this option is disabled, the DRAM part of the heap starts right after the .bss section,\\nwithin the dram0_0 region. As a result, adding or removing some static variables\\nwill change the available heap size.\\n\\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\\nwhere its length is set with ESP32S3_FIXED_STATIC_RAM_SIZE\",\n                                \"id\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                \"name\": \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Use fixed static RAM size\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-memory\",\n                        \"title\": \"Memory\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_MEMMAP_TRACEMEM\",\n                                \"name\": \"ESP32S3_MEMMAP_TRACEMEM\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_MEMMAP_TRACEMEM_TWOBANKS\",\n                                \"name\": \"ESP32S3_MEMMAP_TRACEMEM_TWOBANKS\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP32S3_TRAX && !FREERTOS_UNICORE\",\n                                        \"help\": \"The esp32-s3 contains a feature which allows you to trace the execution path the processor\\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\\nof memory that can't be used for general purposes anymore. Disable this if you do not know\\nwhat this is.\",\n                                        \"id\": \"ESP32S3_TRAX_TWOBANKS\",\n                                        \"name\": \"ESP32S3_TRAX_TWOBANKS\",\n                                        \"range\": null,\n                                        \"title\": \"Reserve memory for tracing both pro as well as app cpu execution\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"The esp32-s3 contains a feature which allows you to trace the execution path the processor\\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\\nof memory that can't be used for general purposes anymore. Disable this if you do not know\\nwhat this is.\",\n                                \"id\": \"ESP32S3_TRAX\",\n                                \"name\": \"ESP32S3_TRAX\",\n                                \"range\": null,\n                                \"title\": \"Use TRAX tracing feature\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP32S3_TRACEMEM_RESERVE_DRAM\",\n                                \"name\": \"ESP32S3_TRACEMEM_RESERVE_DRAM\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-trace-memory\",\n                        \"title\": \"Trace memory\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Outputs the relevant registers over the serial port and halt the\\nprocessor. Needs a manual reset to restart.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_PRINT_HALT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_PRINT_HALT\",\n                                \"range\": null,\n                                \"title\": \"Print registers and halt\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Outputs the relevant registers over the serial port and immediately\\nreset the processor.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                                \"range\": null,\n                                \"title\": \"Print registers and reboot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Just resets the processor without outputting anything\",\n                                \"id\": \"ESP_SYSTEM_PANIC_SILENT_REBOOT\",\n                                \"name\": \"ESP_SYSTEM_PANIC_SILENT_REBOOT\",\n                                \"range\": null,\n                                \"title\": \"Silent reboot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\\nof the crash.\",\n                                \"id\": \"ESP_SYSTEM_PANIC_GDBSTUB\",\n                                \"name\": \"ESP_SYSTEM_PANIC_GDBSTUB\",\n                                \"range\": null,\n                                \"title\": \"GDBStub on panic\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!IDF_TARGET_ESP32C2 && <choice ESP_SYSTEM_PANIC>\",\n                                \"help\": \"Invoke gdbstub on the serial port, allowing for gdb to attach to it and to do a debug on runtime.\",\n                                \"id\": \"ESP_SYSTEM_GDBSTUB_RUNTIME\",\n                                \"name\": \"ESP_SYSTEM_GDBSTUB_RUNTIME\",\n                                \"range\": null,\n                                \"title\": \"GDBStub at runtime\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\\ninvoked. Configure the panic handler's action here.\",\n                        \"id\": \"component-config-esp-system-settings-panic-handler-behaviour\",\n                        \"name\": \"ESP_SYSTEM_PANIC\",\n                        \"title\": \"Panic handler behaviour\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_PANIC_PRINT_REBOOT\",\n                        \"help\": \"After the panic handler executes, you can specify a number of seconds to\\nwait before the device reboots.\",\n                        \"id\": \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\",\n                        \"name\": \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\",\n                        \"range\": [\n                            0,\n                            99\n                        ],\n                        \"title\": \"Panic reboot delay (Seconds)\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Only initialize and use the main core.\",\n                        \"id\": \"ESP_SYSTEM_SINGLE_CORE_MODE\",\n                        \"name\": \"ESP_SYSTEM_SINGLE_CORE_MODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_OSC\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_OSC\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_RTC_EXT_XTAL\",\n                        \"help\": \"To reduce the startup time of an external RTC crystal,\\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\\nlonger to start up or fail to oscillate under some conditions).\\n\\nIf this value is too high, a faulty crystal may initially start and then fail.\\nIf this value is too low, an otherwise good crystal may not start.\\n\\nTo accurately determine if the crystal has started,\\nset a larger \\\"Number of cycles for RTC_SLOW_CLK calibration\\\" (about 3000).\",\n                        \"id\": \"ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES\",\n                        \"name\": \"ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES\",\n                        \"range\": null,\n                        \"title\": \"Bootstrap cycles for external 32kHz crystal\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_RTC_FAST_MEM_SUPPORTED\",\n                        \"help\": null,\n                        \"id\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"name\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\",\n                        \"help\": \"This config option allows to add RTC fast memory region to system heap with capability\\nsimilar to that of DRAM region but without DMA. This memory will be consumed first per\\nheap initialization order by early startup services and scheduler related code. Speed\\nwise RTC fast memory operates on APB clock and hence does not have much performance impact.\",\n                        \"id\": \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\",\n                        \"name\": \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\",\n                        \"range\": null,\n                        \"title\": \"Enable RTC fast memory for dynamic allocations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ARCH_RISCV\",\n                        \"help\": \"Generate DWARF information for each function of the project. These information will parsed and used to\\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\\nthe program itself, regardless of the serial monitor used.\\nThis option shall NOT be used for production.\",\n                        \"id\": \"ESP_SYSTEM_USE_EH_FRAME\",\n                        \"name\": \"ESP_SYSTEM_USE_EH_FRAME\",\n                        \"range\": null,\n                        \"title\": \"Generate and use eh_frame for backtracing\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_CPU_IDRAM_SPLIT_USING_PMP\",\n                                \"help\": \"If enabled, the CPU watches all the memory access and raises an exception in case\\nof any memory violation. This feature automatically splits\\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\\nfor the instruction part (below given splitting address) and Read/Write permissions\\nfor the data part (above the splitting address). The memory protection is effective\\non all access through the IRAM0 and DRAM0 buses.\",\n                                \"id\": \"ESP_SYSTEM_PMP_IDRAM_SPLIT\",\n                                \"name\": \"ESP_SYSTEM_PMP_IDRAM_SPLIT\",\n                                \"range\": null,\n                                \"title\": \"Enable IRAM/DRAM split protection\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                        \"help\": \"Once locked, memory protection settings cannot be changed anymore.\\nThe lock is reset only on the chip startup.\",\n                                        \"id\": \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\",\n                                        \"name\": \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\",\n                                        \"range\": null,\n                                        \"title\": \"Lock memory protection settings\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"SOC_MEMPROT_SUPPORTED\",\n                                \"help\": \"If enabled, the permission control module watches all the memory access and fires the panic handler\\nif a permission violation is detected. This feature automatically splits\\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\\nfor the instruction part (below given splitting address) and Read/Write permissions\\nfor the data part (above the splitting address). The memory protection is effective\\non all access through the IRAM0 and DRAM0 buses.\",\n                                \"id\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                \"name\": \"ESP_SYSTEM_MEMPROT_FEATURE\",\n                                \"range\": null,\n                                \"title\": \"Enable memory protection\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-memory-protection\",\n                        \"title\": \"Memory protection\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Config system event queue size in different application.\",\n                        \"id\": \"ESP_SYSTEM_EVENT_QUEUE_SIZE\",\n                        \"name\": \"ESP_SYSTEM_EVENT_QUEUE_SIZE\",\n                        \"range\": null,\n                        \"title\": \"System event queue size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Config system event task stack size in different application.\",\n                        \"id\": \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Event loop task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the \\\"main task\\\" stack size. This is the stack of the task\\nwhich calls app_main(). If app_main() returns then this task is deleted\\nand its stack memory is freed.\",\n                        \"id\": \"ESP_MAIN_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_MAIN_TASK_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Main task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_CPU0\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_CPU0\",\n                                \"range\": null,\n                                \"title\": \"CPU0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && <choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_CPU1\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_CPU1\",\n                                \"range\": null,\n                                \"title\": \"CPU1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_MAIN_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\",\n                                \"name\": \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the \\\"main task\\\" core affinity. This is the used core of the task\\nwhich calls app_main(). If app_main() returns then this task is deleted.\",\n                        \"id\": \"component-config-esp-system-settings-main-task-core-affinity\",\n                        \"name\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"title\": \"Main task core affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"name\": \"ESP_MAIN_TASK_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Minimal value of size, in bytes, accepted to execute a expression\\nwith shared stack.\",\n                        \"id\": \"ESP_MINIMAL_SHARED_STACK_SIZE\",\n                        \"name\": \"ESP_MINIMAL_SHARED_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Minimal allowed size for shared stack\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_DEFAULT\",\n                                \"name\": \"ESP_CONSOLE_UART_DEFAULT\",\n                                \"range\": null,\n                                \"title\": \"Default: UART0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && <choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_USB_CDC\",\n                                \"name\": \"ESP_CONSOLE_USB_CDC\",\n                                \"range\": null,\n                                \"title\": \"USB CDC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_USB_SERIAL_JTAG_SUPPORTED && <choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_USB_SERIAL_JTAG\",\n                                \"name\": \"ESP_CONSOLE_USB_SERIAL_JTAG\",\n                                \"range\": null,\n                                \"title\": \"USB Serial/JTAG Controller\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM\",\n                                \"range\": null,\n                                \"title\": \"Custom UART\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_NONE\",\n                                \"name\": \"ESP_CONSOLE_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select where to send console output (through stdout and stderr).\\n\\n- Default is to use UART0 on pre-defined GPIOs.\\n- If \\\"Custom\\\" is selected, UART0 or UART1 can be chosen,\\n  and any pins can be selected.\\n- If \\\"None\\\" is selected, there will be no console output on any UART, except\\n  for initial output from ROM bootloader. This ROM output can be suppressed by\\n  GPIO strapping or EFUSE, refer to chip datasheet for details.\\n- On chips with USB OTG peripheral, \\\"USB CDC\\\" option redirects output to the\\n  CDC port. This option uses the CDC driver in the chip ROM.\\n  This option is incompatible with TinyUSB stack.\\n- On chips with an USB serial/JTAG debug controller, selecting the option\\n  for that redirects output to the CDC/ACM (serial port emulation) component\\n  of that device.\",\n                        \"id\": \"component-config-esp-system-settings-channel-for-console-output\",\n                        \"name\": \"ESP_CONSOLE_UART\",\n                        \"title\": \"Channel for console output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_SECONDARY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_SECONDARY_NONE\",\n                                \"name\": \"ESP_CONSOLE_SECONDARY_NONE\",\n                                \"range\": null,\n                                \"title\": \"No secondary console\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!ESP_CONSOLE_USB_SERIAL_JTAG && <choice ESP_CONSOLE_SECONDARY>\",\n                                \"help\": \"This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\\nThe output currently only supports non-blocking mode without using the console.\\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.\",\n                                \"id\": \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\",\n                                \"name\": \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\",\n                                \"range\": null,\n                                \"title\": \"USB_SERIAL_JTAG PORT\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_USB_SERIAL_JTAG_SUPPORTED\",\n                        \"help\": \"This secondary option supports output through other specific port like USB_SERIAL_JTAG\\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\\ninput through this secondary port, please change the primary config to this port\\nin `Channel for console output` menu.\",\n                        \"id\": \"component-config-esp-system-settings-channel-for-console-secondary-output\",\n                        \"name\": \"ESP_CONSOLE_SECONDARY\",\n                        \"title\": \"Channel for console secondary output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\",\n                        \"name\": \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_UART\",\n                        \"name\": \"ESP_CONSOLE_UART\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_MULTIPLE_UART\",\n                        \"name\": \"ESP_CONSOLE_MULTIPLE_UART\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART_NUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM_NUM_0\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM_NUM_0\",\n                                \"range\": null,\n                                \"title\": \"UART0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_CONSOLE_UART_NUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_CONSOLE_UART_CUSTOM_NUM_1\",\n                                \"name\": \"ESP_CONSOLE_UART_CUSTOM_NUM_1\",\n                                \"range\": null,\n                                \"title\": \"UART1\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM && ESP_CONSOLE_MULTIPLE_UART\",\n                        \"help\": \"This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\\n\\nDue to an ESP32 ROM bug, UART2 is not supported for console output\\nvia esp_rom_printf.\",\n                        \"id\": \"component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-\",\n                        \"name\": \"ESP_CONSOLE_UART_NUM\",\n                        \"title\": \"UART peripheral to use for console output (0-1)\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_CONSOLE_UART_NUM\",\n                        \"name\": \"ESP_CONSOLE_UART_NUM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM\",\n                        \"help\": \"This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\\nboot log output and default standard output and standard error of the app).\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_TX_GPIO\",\n                        \"name\": \"ESP_CONSOLE_UART_TX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART TX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART_CUSTOM\",\n                        \"help\": \"This GPIO is used for UART RX input in the ESP-IDF Bootloader and the app (including\\ndefault default standard input of the app).\\n\\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_RX_GPIO\",\n                        \"name\": \"ESP_CONSOLE_UART_RX_GPIO\",\n                        \"range\": null,\n                        \"title\": \"UART RX on GPIO#\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_UART\",\n                        \"help\": \"This baud rate is used by both the ESP-IDF Bootloader and the app (including\\nboot log output and default standard input/output/error of the app).\\n\\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\\naccurate.\\n\\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\\nis reconfigured after the bootloader exits and the app starts.\",\n                        \"id\": \"ESP_CONSOLE_UART_BAUDRATE\",\n                        \"name\": \"ESP_CONSOLE_UART_BAUDRATE\",\n                        \"range\": [\n                            1200,\n                            4000000\n                        ],\n                        \"title\": \"UART console baud rate\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_USB_CDC\",\n                        \"help\": \"Set the size of USB CDC RX buffer. Increase the buffer size if your application\\nis often receiving data over USB CDC.\",\n                        \"id\": \"ESP_CONSOLE_USB_CDC_RX_BUF_SIZE\",\n                        \"name\": \"ESP_CONSOLE_USB_CDC_RX_BUF_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size of USB CDC RX buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_CONSOLE_USB_CDC\",\n                        \"help\": \"If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\\nDisabling this option saves about 1kB or RAM.\",\n                        \"id\": \"ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF\",\n                        \"name\": \"ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF\",\n                        \"range\": null,\n                        \"title\": \"Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_INT_WDT\",\n                                \"help\": \"The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.\",\n                                \"id\": \"ESP_INT_WDT_TIMEOUT_MS\",\n                                \"name\": \"ESP_INT_WDT_TIMEOUT_MS\",\n                                \"range\": [\n                                    10,\n                                    10000\n                                ],\n                                \"title\": \"Interrupt watchdog timeout (ms)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_INT_WDT && !FREERTOS_UNICORE\",\n                                \"help\": \"Also detect if interrupts on CPU 1 are disabled for too long.\",\n                                \"id\": \"ESP_INT_WDT_CHECK_CPU1\",\n                                \"name\": \"ESP_INT_WDT_CHECK_CPU1\",\n                                \"range\": null,\n                                \"title\": \"Also watch CPU1 tick interrupt\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\\neither because a task turned off interrupts and did not turn them on for a long time, or because an\\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\\nreset the SoC.\",\n                        \"id\": \"ESP_INT_WDT\",\n                        \"name\": \"ESP_INT_WDT\",\n                        \"range\": null,\n                        \"title\": \"Interrupt watchdog\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_TASK_WDT_EN\",\n                                \"help\": null,\n                                \"id\": \"ESP_TASK_WDT_USE_ESP_TIMER\",\n                                \"name\": \"ESP_TASK_WDT_USE_ESP_TIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will be configured to\\ntrigger the panic handler when it times out. This can also be configured\\nat run time (see Task Watchdog Timer API Reference)\",\n                                        \"id\": \"ESP_TASK_WDT_PANIC\",\n                                        \"name\": \"ESP_TASK_WDT_PANIC\",\n                                        \"range\": null,\n                                        \"title\": \"Invoke panic handler on Task Watchdog timeout\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"Timeout period configuration for the Task Watchdog Timer in seconds.\\nThis is also configurable at run time (see Task Watchdog Timer API Reference)\",\n                                        \"id\": \"ESP_TASK_WDT_TIMEOUT_S\",\n                                        \"name\": \"ESP_TASK_WDT_TIMEOUT_S\",\n                                        \"range\": null,\n                                        \"title\": \"Task Watchdog timeout period (seconds)\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will watch the CPU0\\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\\nof CPU starvation as the Idle Task not being called is usually a symptom of\\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\\ntasks depend on the Idle Task getting some runtime every now and then.\",\n                                        \"id\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0\",\n                                        \"name\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0\",\n                                        \"range\": null,\n                                        \"title\": \"Watch CPU0 Idle Task\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"ESP_TASK_WDT_INIT && !FREERTOS_UNICORE\",\n                                        \"help\": \"If this option is enabled, the Task Watchdog Timer will wach the CPU1\\nIdle Task.\",\n                                        \"id\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1\",\n                                        \"name\": \"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1\",\n                                        \"range\": null,\n                                        \"title\": \"Watch CPU1 Idle Task\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ESP_TASK_WDT_EN\",\n                                \"help\": \"Enabling this option will cause the Task Watchdog Timer to be initialized\\nautomatically at startup.\",\n                                \"id\": \"ESP_TASK_WDT_INIT\",\n                                \"name\": \"ESP_TASK_WDT_INIT\",\n                                \"range\": null,\n                                \"title\": \"Initialize Task Watchdog Timer on startup\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The Task Watchdog Timer can be used to make sure individual tasks are still\\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\\neither initialized automatically at startup or initialized after startup\\n(see Task Watchdog Timer API Reference)\",\n                        \"id\": \"ESP_TASK_WDT_EN\",\n                        \"name\": \"ESP_TASK_WDT_EN\",\n                        \"range\": null,\n                        \"title\": \"Enable Task Watchdog Timer\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_XT_WDT\",\n                                \"help\": \"Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.\",\n                                \"id\": \"ESP_XT_WDT_TIMEOUT\",\n                                \"name\": \"ESP_XT_WDT_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"XTAL32K watchdog timeout period\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_XT_WDT\",\n                                \"help\": \"Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\\nthe watchdog timer expires.\",\n                                \"id\": \"ESP_XT_WDT_BACKUP_CLK_ENABLE\",\n                                \"name\": \"ESP_XT_WDT_BACKUP_CLK_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Automatically switch to BACKUP32K_CLK when timer expires\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!IDF_TARGET_ESP32 && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)\",\n                        \"help\": \"This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\\nan interrupt.\",\n                        \"id\": \"ESP_XT_WDT\",\n                        \"name\": \"ESP_XT_WDT\",\n                        \"range\": null,\n                        \"title\": \"Initialize XTAL32K watchdog timer on startup\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this option is disabled (default), the panic handler code is placed in flash not IRAM.\\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\\nrisk, if the flash cache status is also corrupted during the crash.\\n\\nIf this option is enabled, the panic handler code (including required UART functions) is placed\\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\\nis triggered.\",\n                        \"id\": \"ESP_PANIC_HANDLER_IRAM\",\n                        \"name\": \"ESP_PANIC_HANDLER_IRAM\",\n                        \"range\": null,\n                        \"title\": \"Place panic handler code in IRAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX\",\n                        \"help\": \"Debug stubs are used by OpenOCD to execute pre-compiled onboard code\\nwhich does some useful debugging stuff, e.g. GCOV data dump.\",\n                        \"id\": \"ESP_DEBUG_STUBS_ENABLE\",\n                        \"name\": \"ESP_DEBUG_STUBS_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"OpenOCD debug stubs\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\\ninstead of panicking, have the debugger stop on the offending instruction.\",\n                        \"id\": \"ESP_DEBUG_OCDAWARE\",\n                        \"name\": \"ESP_DEBUG_OCDAWARE\",\n                        \"range\": null,\n                        \"title\": \"Make exception and panic handlers JTAG/OCD aware\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32 && <choice ESP_SYSTEM_CHECK_INT_LEVEL>\",\n                                \"help\": \"Using level 5 interrupt for Interrupt Watchdog and other system checks.\",\n                                \"id\": \"ESP_SYSTEM_CHECK_INT_LEVEL_5\",\n                                \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL_5\",\n                                \"range\": null,\n                                \"title\": \"Level 5 interrupt\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!BTDM_CTRL_HLI && <choice ESP_SYSTEM_CHECK_INT_LEVEL>\",\n                                \"help\": \"Using level 4 interrupt for Interrupt Watchdog and other system checks.\",\n                                \"id\": \"ESP_SYSTEM_CHECK_INT_LEVEL_4\",\n                                \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL_4\",\n                                \"range\": null,\n                                \"title\": \"Level 4 interrupt\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Interrupt level to use for Interrupt Watchdog and other system checks.\",\n                        \"id\": \"component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks\",\n                        \"name\": \"ESP_SYSTEM_CHECK_INT_LEVEL\",\n                        \"title\": \"Interrupt level to use for Interrupt Watchdog and other system checks\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_7\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_7\",\n                                                \"range\": null,\n                                                \"title\": \"2.44V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_6\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_6\",\n                                                \"range\": null,\n                                                \"title\": \"2.56V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_5\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_5\",\n                                                \"range\": null,\n                                                \"title\": \"2.67V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_4\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_4\",\n                                                \"range\": null,\n                                                \"title\": \"2.84V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_3\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_3\",\n                                                \"range\": null,\n                                                \"title\": \"2.98V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_2\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_2\",\n                                                \"range\": null,\n                                                \"title\": \"3.19V\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice ESP_BROWNOUT_DET_LVL_SEL>\",\n                                                \"help\": null,\n                                                \"id\": \"ESP_BROWNOUT_DET_LVL_SEL_1\",\n                                                \"name\": \"ESP_BROWNOUT_DET_LVL_SEL_1\",\n                                                \"range\": null,\n                                                \"title\": \"3.30V\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"ESP_BROWNOUT_DET\",\n                                        \"help\": \"The brownout detector will reset the chip when the supply voltage is approximately\\nbelow this level. Note that there may be some variation of brownout voltage level\\nbetween each ESP3-S3 chip.\\n\\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\\n#of the brownout threshold levels.\",\n                                        \"id\": \"component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level\",\n                                        \"name\": \"ESP_BROWNOUT_DET_LVL_SEL\",\n                                        \"title\": \"Brownout voltage level\",\n                                        \"type\": \"choice\"\n                                    }\n                                ],\n                                \"depends_on\": \"!IDF_ENV_FPGA\",\n                                \"help\": \"The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\\na specific value. If this happens, it will reset the chip in order to prevent unintended\\nbehaviour.\",\n                                \"id\": \"ESP_BROWNOUT_DET\",\n                                \"name\": \"ESP_BROWNOUT_DET\",\n                                \"range\": null,\n                                \"title\": \"Hardware brownout detect & reset\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"ESP_BROWNOUT_DET_LVL\",\n                                \"name\": \"ESP_BROWNOUT_DET_LVL\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-esp-system-settings-brownout-detector\",\n                        \"title\": \"Brownout Detector\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This config allows to trigger an interrupt when brownout detected. Software restart will be done\\nat the end of the default callback.\\nTwo occasions need to restart the chip with interrupt so far.\\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\\n      So that we must restart from interrupt.\\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\\n     needs to be done in callback function of interrupt.\",\n                        \"id\": \"ESP_SYSTEM_BROWNOUT_INTR\",\n                        \"name\": \"ESP_SYSTEM_BROWNOUT_INTR\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-system-settings\",\n                \"title\": \"ESP System Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\\nneeds.\",\n                        \"id\": \"ESP_IPC_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_IPC_TASK_STACK_SIZE\",\n                        \"range\": [\n                            512,\n                            65536\n                        ],\n                        \"title\": \"Inter-Processor Call (IPC) task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!FREERTOS_UNICORE\",\n                        \"help\": \"If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.\",\n                        \"id\": \"ESP_IPC_USES_CALLERS_PRIORITY\",\n                        \"name\": \"ESP_IPC_USES_CALLERS_PRIORITY\",\n                        \"range\": null,\n                        \"title\": \"IPC runs at caller's priority\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\\ncontext of a High Priority Interrupt. The IPC ISR feature is itended for low latency execution of simple\\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\\ncallbacks must be written with particular restrictions (see \\\"IPC\\\" and \\\"High-Level Interrupt\\\" docs for more\\ndetails).\",\n                        \"id\": \"ESP_IPC_ISR_ENABLE\",\n                        \"name\": \"ESP_IPC_ISR_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-ipc-inter-processor-call-\",\n                \"title\": \"IPC (Inter-Processor Call)\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If enabled, esp_timer_dump will dump information such as number of times the timer was started,\\nnumber of times the timer has triggered, and the total time it took for the callback to run.\\nThis option has some effect on timer performance and the amount of memory used for timer\\nstorage, and should only be used for debugging/testing purposes.\",\n                        \"id\": \"ESP_TIMER_PROFILING\",\n                        \"name\": \"ESP_TIMER_PROFILING\",\n                        \"range\": null,\n                        \"title\": \"Enable esp_timer profiling features\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_TIME_FUNCS_USE_RTC_TIMER\",\n                        \"name\": \"ESP_TIME_FUNCS_USE_RTC_TIMER\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_TIME_FUNCS_USE_ESP_TIMER\",\n                        \"name\": \"ESP_TIME_FUNCS_USE_ESP_TIMER\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_TIME_FUNCS_USE_NONE\",\n                        \"name\": \"ESP_TIME_FUNCS_USE_NONE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure the stack size of \\\"timer_task\\\" task. This task is used\\nto dispatch callbacks of timers created using ets_timer and esp_timer\\nAPIs. If you are seing stack overflow errors in timer task, increase\\nthis value.\\n\\nNote that this is not the same as FreeRTOS timer task. To configure\\nFreeRTOS timer task size, see \\\"FreeRTOS timer task stack size\\\" option\\nin \\\"FreeRTOS\\\".\",\n                        \"id\": \"ESP_TIMER_TASK_STACK_SIZE\",\n                        \"name\": \"ESP_TIMER_TASK_STACK_SIZE\",\n                        \"range\": [\n                            2048,\n                            65536\n                        ],\n                        \"title\": \"High-resolution timer task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"It sets the interrupt level for esp_timer ISR in range 1..3.\\nA higher level (3) helps to decrease the ISR esp_timer latency.\",\n                        \"id\": \"ESP_TIMER_INTERRUPT_LEVEL\",\n                        \"name\": \"ESP_TIMER_INTERRUPT_LEVEL\",\n                        \"range\": [\n                            1,\n                            1\n                        ],\n                        \"title\": \"Interrupt level\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This shows some hidden features of esp_timer.\\nNote that they may break other features, use them with care.\",\n                        \"id\": \"ESP_TIMER_SHOW_EXPERIMENTAL\",\n                        \"name\": \"ESP_TIMER_SHOW_EXPERIMENTAL\",\n                        \"range\": null,\n                        \"title\": \"show esp_timer's experimental features\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_TIMER_TASK_AFFINITY\",\n                        \"name\": \"ESP_TIMER_TASK_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_TIMER_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_TASK_AFFINITY_CPU0\",\n                                \"name\": \"ESP_TIMER_TASK_AFFINITY_CPU0\",\n                                \"range\": null,\n                                \"title\": \"CPU0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && <choice ESP_TIMER_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_TASK_AFFINITY_CPU1\",\n                                \"name\": \"ESP_TIMER_TASK_AFFINITY_CPU1\",\n                                \"range\": null,\n                                \"title\": \"CPU1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && <choice ESP_TIMER_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_TASK_AFFINITY_NO_AFFINITY\",\n                                \"name\": \"ESP_TIMER_TASK_AFFINITY_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The default settings: timer TASK on CPU0 and timer ISR on CPU0.\\nOther settings may help in certain cases, but note that they may break\\nother features, use them with care.\\n- \\\"CPU0\\\": (default) esp_timer task is processed by CPU0.\\n- \\\"CPU1\\\": esp_timer task is processed by CPU1.\\n- \\\"No affinity\\\": esp_timer task can be processed by any CPU.\",\n                        \"id\": \"component-config-high-resolution-timer-esp_timer--esp_timer-task-core-affinity\",\n                        \"name\": \"ESP_TIMER_TASK_AFFINITY\",\n                        \"title\": \"esp_timer task core affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_TIMER_ISR_AFFINITY\",\n                        \"name\": \"ESP_TIMER_ISR_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_TIMER_ISR_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_ISR_AFFINITY_CPU0\",\n                                \"name\": \"ESP_TIMER_ISR_AFFINITY_CPU0\",\n                                \"range\": null,\n                                \"title\": \"CPU0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && <choice ESP_TIMER_ISR_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_ISR_AFFINITY_CPU1\",\n                                \"name\": \"ESP_TIMER_ISR_AFFINITY_CPU1\",\n                                \"range\": null,\n                                \"title\": \"CPU1\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && <choice ESP_TIMER_ISR_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"ESP_TIMER_ISR_AFFINITY_NO_AFFINITY\",\n                                \"name\": \"ESP_TIMER_ISR_AFFINITY_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The default settings: timer TASK on CPU0 and timer ISR on CPU0.\\nOther settings may help in certain cases, but note that they may break\\nother features, use them with care.\\n- \\\"CPU0\\\": (default) timer interrupt is processed by CPU0.\\n- \\\"CPU1\\\": timer interrupt is processed by CPU1.\\n- \\\"No affinity\\\": timer interrupt can be processed by any CPU. It helps\\nto reduce latency but there is a disadvantage it leads to the timer ISR\\nrunning on every core. It increases the CPU time usage for timer ISRs\\nby N on an N-core system.\",\n                        \"id\": \"component-config-high-resolution-timer-esp_timer--timer-interrupt-core-affinity\",\n                        \"name\": \"ESP_TIMER_ISR_AFFINITY\",\n                        \"title\": \"timer interrupt core affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also avalible).\\n- ESP_TIMER_TASK - Timer callbacks are dispatched from a high-priority esp_timer task.\\n- ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.\\nThe ISR dispatch can be used, in some cases, when a callback is very simple\\nor need a lower-latency.\",\n                        \"id\": \"ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD\",\n                        \"name\": \"ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD\",\n                        \"range\": null,\n                        \"title\": \"Support ISR dispatch method\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32\",\n                        \"help\": null,\n                        \"id\": \"ESP_TIMER_IMPL_TG0_LAC\",\n                        \"name\": \"ESP_TIMER_IMPL_TG0_LAC\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!IDF_TARGET_ESP32\",\n                        \"help\": null,\n                        \"id\": \"ESP_TIMER_IMPL_SYSTIMER\",\n                        \"name\": \"ESP_TIMER_IMPL_SYSTIMER\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-high-resolution-timer-esp_timer-\",\n                \"title\": \"High resolution timer (esp_timer)\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_WIFI_ENABLED\",\n                        \"name\": \"ESP_WIFI_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.\\nThe static rx buffers are allocated when esp_wifi_init is called, they are not freed\\nuntil esp_wifi_deinit is called.\\n\\nWiFi hardware use these buffers to receive all 802.11 frames.\\nA higher number may allow higher throughput but increases memory use. If ESP_WIFI_AMPDU_RX_ENABLED\\nis enabled, this value is recommended to set equal or bigger than ESP_WIFI_RX_BA_WIN in order to\\nachieve better throughput and compatibility with both stations and APs.\",\n                        \"id\": \"ESP_WIFI_STATIC_RX_BUFFER_NUM\",\n                        \"name\": \"ESP_WIFI_STATIC_RX_BUFFER_NUM\",\n                        \"range\": [\n                            2,\n                            25\n                        ],\n                        \"title\": \"Max number of WiFi static RX buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated\\n(provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of\\nthe received data frame.\\n\\nFor each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers\\nit to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has\\nsuccessfully received the data frame.\\n\\nFor some applications, WiFi data frames may be received faster than the application can\\nprocess them. In these cases we may run out of memory if RX buffer number is unlimited (0).\\n\\nIf a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.\",\n                        \"id\": \"ESP_WIFI_DYNAMIC_RX_BUFFER_NUM\",\n                        \"name\": \"ESP_WIFI_DYNAMIC_RX_BUFFER_NUM\",\n                        \"range\": [\n                            0,\n                            128\n                        ],\n                        \"title\": \"Max number of WiFi dynamic RX buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_WIFI_TX_BUFFER>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_STATIC_TX_BUFFER\",\n                                \"name\": \"ESP_WIFI_STATIC_TX_BUFFER\",\n                                \"range\": null,\n                                \"title\": \"Static\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!SPIRAM_USE_MALLOC && <choice ESP_WIFI_TX_BUFFER>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_DYNAMIC_TX_BUFFER\",\n                                \"name\": \"ESP_WIFI_DYNAMIC_TX_BUFFER\",\n                                \"range\": null,\n                                \"title\": \"Dynamic\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select type of WiFi TX buffers:\\n\\nIf \\\"Static\\\" is selected, WiFi TX buffers are allocated when WiFi is initialized and released\\nwhen WiFi is de-initialized. The size of each static TX buffer is fixed to about 1.6KB.\\n\\nIf \\\"Dynamic\\\" is selected, each WiFi TX buffer is allocated as needed when a data frame is\\ndelivered to the Wifi driver from the TCP/IP stack. The buffer is freed after the data frame\\nhas been sent by the WiFi driver. The size of each dynamic TX buffer depends on the length\\nof each data frame sent by the TCP/IP layer.\\n\\nIf PSRAM is enabled, \\\"Static\\\" should be selected to guarantee enough WiFi TX buffers.\\nIf PSRAM is disabled, \\\"Dynamic\\\" should be selected to improve the utilization of RAM.\",\n                        \"id\": \"component-config-wi-fi-type-of-wifi-tx-buffers\",\n                        \"name\": \"ESP_WIFI_TX_BUFFER\",\n                        \"title\": \"Type of WiFi TX buffers\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_WIFI_TX_BUFFER_TYPE\",\n                        \"name\": \"ESP_WIFI_TX_BUFFER_TYPE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_WIFI_STATIC_TX_BUFFER\",\n                        \"help\": \"Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.\\nThe static RX buffers are allocated when esp_wifi_init() is called, they are not released\\nuntil esp_wifi_deinit() is called.\\n\\nFor each transmitted data frame from the higher layer TCP/IP stack, the WiFi driver makes a\\ncopy of it in a TX buffer.  For some applications especially UDP applications, the upper\\nlayer can deliver frames faster than WiFi layer can transmit. In these cases, we may run out\\nof TX buffers.\",\n                        \"id\": \"ESP_WIFI_STATIC_TX_BUFFER_NUM\",\n                        \"name\": \"ESP_WIFI_STATIC_TX_BUFFER_NUM\",\n                        \"range\": null,\n                        \"title\": \"Max number of WiFi static TX buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPIRAM\",\n                        \"help\": \"Set the number of WiFi cache TX buffer number.\\n\\nFor each TX packet from uplayer, such as LWIP etc, WiFi driver needs to allocate a static TX\\nbuffer and makes a copy of uplayer packet. If WiFi driver fails to allocate the static TX buffer,\\nit caches the uplayer packets to a dedicated buffer queue, this option is used to configure the\\nsize of the cached TX queue.\",\n                        \"id\": \"ESP_WIFI_CACHE_TX_BUFFER_NUM\",\n                        \"name\": \"ESP_WIFI_CACHE_TX_BUFFER_NUM\",\n                        \"range\": null,\n                        \"title\": \"Max number of WiFi cache TX buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_WIFI_DYNAMIC_TX_BUFFER\",\n                        \"help\": \"Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,\\nit depends on the size of each transmitted data frame.\\n\\nFor each transmitted frame from the higher layer TCP/IP stack, the WiFi driver makes a copy\\nof it in a TX buffer. For some applications, especially UDP applications, the upper layer\\ncan deliver frames faster than WiFi layer can transmit. In these cases, we may run out of TX\\nbuffers.\",\n                        \"id\": \"ESP_WIFI_DYNAMIC_TX_BUFFER_NUM\",\n                        \"name\": \"ESP_WIFI_DYNAMIC_TX_BUFFER_NUM\",\n                        \"range\": [\n                            1,\n                            128\n                        ],\n                        \"title\": \"Max number of WiFi dynamic TX buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_WIFI_MGMT_RX_BUFFER>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_STATIC_RX_MGMT_BUFFER\",\n                                \"name\": \"ESP_WIFI_STATIC_RX_MGMT_BUFFER\",\n                                \"range\": null,\n                                \"title\": \"Static\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_WIFI_MGMT_RX_BUFFER>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER\",\n                                \"name\": \"ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER\",\n                                \"range\": null,\n                                \"title\": \"Dynamic\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select type of WiFi RX MGMT buffers:\\n\\nIf \\\"Static\\\" is selected, WiFi RX MGMT buffers are allocated when WiFi is initialized and released\\nwhen WiFi is de-initialized. The size of each static RX MGMT buffer is fixed to about 500 Bytes.\\n\\nIf \\\"Dynamic\\\" is selected, each WiFi RX MGMT buffer is allocated as needed when a MGMT data frame is\\nreceived. The MGMT buffer is freed after the MGMT data frame has been processed by the WiFi driver.\",\n                        \"id\": \"component-config-wi-fi-type-of-wifi-rx-mgmt-buffers\",\n                        \"name\": \"ESP_WIFI_MGMT_RX_BUFFER\",\n                        \"title\": \"Type of WiFi RX MGMT buffers\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_WIFI_DYNAMIC_RX_MGMT_BUF\",\n                        \"name\": \"ESP_WIFI_DYNAMIC_RX_MGMT_BUF\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set the number of WiFi RX_MGMT buffers.\\n\\nFor Management buffers, the number of dynamic and static management buffers is the same.\\nIn order to prevent memory fragmentation, the management buffer type should be set to static first.\",\n                        \"id\": \"ESP_WIFI_RX_MGMT_BUF_NUM_DEF\",\n                        \"name\": \"ESP_WIFI_RX_MGMT_BUF_NUM_DEF\",\n                        \"range\": [\n                            1,\n                            10\n                        ],\n                        \"title\": \"Max number of WiFi RX MGMT buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_CSI_SUPPORT\",\n                        \"help\": \"Select this option to enable CSI(Channel State Information) feature. CSI takes about\\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM KB of RAM. If CSI is not used, it is better to disable\\nthis feature in order to save memory.\",\n                        \"id\": \"ESP_WIFI_CSI_ENABLED\",\n                        \"name\": \"ESP_WIFI_CSI_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"WiFi CSI(Channel State Information)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_AMPDU_TX_ENABLED\",\n                                \"help\": \"Set the size of WiFi Block Ack TX window. Generally a bigger value means higher throughput but\\nmore memory. Most of time we should NOT change the default value unless special reason, e.g.\\ntest the maximum UDP TX throughput with iperf etc. For iperf test in shieldbox, the recommended\\nvalue is 9~12.\",\n                                \"id\": \"ESP_WIFI_TX_BA_WIN\",\n                                \"name\": \"ESP_WIFI_TX_BA_WIN\",\n                                \"range\": [\n                                    2,\n                                    32\n                                ],\n                                \"title\": \"WiFi AMPDU TX BA window size\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable AMPDU TX feature\",\n                        \"id\": \"ESP_WIFI_AMPDU_TX_ENABLED\",\n                        \"name\": \"ESP_WIFI_AMPDU_TX_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"WiFi AMPDU TX\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_AMPDU_RX_ENABLED\",\n                                \"help\": \"Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and better\\ncompatibility but more memory. Most of time we should NOT change the default value unless special\\nreason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the\\nrecommended value is 9~12. If PSRAM is used and WiFi memory is prefered to allocat in PSRAM first,\\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\\nstations and APs.\",\n                                \"id\": \"ESP_WIFI_RX_BA_WIN\",\n                                \"name\": \"ESP_WIFI_RX_BA_WIN\",\n                                \"range\": [\n                                    2,\n                                    32\n                                ],\n                                \"title\": \"WiFi AMPDU RX BA window size\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable AMPDU RX feature\",\n                        \"id\": \"ESP_WIFI_AMPDU_RX_ENABLED\",\n                        \"name\": \"ESP_WIFI_AMPDU_RX_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"WiFi AMPDU RX\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPIRAM\",\n                        \"help\": \"Select this option to enable AMSDU TX feature\",\n                        \"id\": \"ESP_WIFI_AMSDU_TX_ENABLED\",\n                        \"name\": \"ESP_WIFI_AMSDU_TX_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"WiFi AMSDU TX\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable WiFi NVS flash\",\n                        \"id\": \"ESP_WIFI_NVS_ENABLED\",\n                        \"name\": \"ESP_WIFI_NVS_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"WiFi NVS flash\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_WIFI_TASK_CORE_ID>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_TASK_PINNED_TO_CORE_0\",\n                                \"name\": \"ESP_WIFI_TASK_PINNED_TO_CORE_0\",\n                                \"range\": null,\n                                \"title\": \"Core 0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_WIFI_TASK_CORE_ID>\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_TASK_PINNED_TO_CORE_1\",\n                                \"name\": \"ESP_WIFI_TASK_PINNED_TO_CORE_1\",\n                                \"range\": null,\n                                \"title\": \"Core 1\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!FREERTOS_UNICORE\",\n                        \"help\": \"Pinned WiFi task to core 0 or core 1.\",\n                        \"id\": \"component-config-wi-fi-wifi-task-core-id\",\n                        \"name\": \"ESP_WIFI_TASK_CORE_ID\",\n                        \"title\": \"WiFi Task Core ID\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However the\\ndefault length of a beacon frame can simultaneously hold only five root node identifier structures,\\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurence of\\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will detect\\nfive of the root nodes, resolve the conflict, and re-detect more root nodes. This process will repeat\\nuntil all root node conflicts are resolved. However this process can generally take a very long time.\\n\\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\\ndetected simultaneously. Each additional root node will require 36 bytes and should be added ontop of the\\ndefault beacon frame length of\\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\\nframe length as\\n932 (752+36*5).\\n\\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be identified\\nmore quickly.\",\n                        \"id\": \"ESP_WIFI_SOFTAP_BEACON_MAX_LEN\",\n                        \"name\": \"ESP_WIFI_SOFTAP_BEACON_MAX_LEN\",\n                        \"range\": [\n                            752,\n                            1256\n                        ],\n                        \"title\": \"Max length of WiFi SoftAP Beacon\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set the number of WiFi management short buffer.\",\n                        \"id\": \"ESP_WIFI_MGMT_SBUF_NUM\",\n                        \"name\": \"ESP_WIFI_MGMT_SBUF_NUM\",\n                        \"range\": [\n                            6,\n                            32\n                        ],\n                        \"title\": \"WiFi mgmt short buffer number\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to place frequently called Wi-Fi library functions in IRAM.\\nWhen this option is disabled, more than 10Kbytes of IRAM memory will be saved\\nbut Wi-Fi throughput will be reduced.\",\n                        \"id\": \"ESP_WIFI_IRAM_OPT\",\n                        \"name\": \"ESP_WIFI_IRAM_OPT\",\n                        \"range\": null,\n                        \"title\": \"WiFi IRAM speed optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to place additional frequently called Wi-Fi library functions\\nin IRAM. When this option is disabled, more than 5Kbytes of IRAM memory will be saved\\nbut Wi-Fi throughput will be reduced.\",\n                        \"id\": \"ESP_WIFI_EXTRA_IRAM_OPT\",\n                        \"name\": \"ESP_WIFI_EXTRA_IRAM_OPT\",\n                        \"range\": null,\n                        \"title\": \"WiFi EXTRA IRAM speed optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to place frequently called Wi-Fi library RX functions in IRAM.\\nWhen this option is disabled, more than 17Kbytes of IRAM memory will be saved\\nbut Wi-Fi performance will be reduced.\",\n                        \"id\": \"ESP_WIFI_RX_IRAM_OPT\",\n                        \"name\": \"ESP_WIFI_RX_IRAM_OPT\",\n                        \"range\": null,\n                        \"title\": \"WiFi RX IRAM speed optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_ENABLE_WPA3_SAE\",\n                                \"help\": \"Select this option to enable SAE-PK\",\n                                \"id\": \"ESP_WIFI_ENABLE_SAE_PK\",\n                                \"name\": \"ESP_WIFI_ENABLE_SAE_PK\",\n                                \"range\": null,\n                                \"title\": \"Enable SAE-PK\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_SOFTAP_SUPPORT\",\n                                \"help\": \"Select this option to enable SAE support in softAP mode.\",\n                                \"id\": \"ESP_WIFI_SOFTAP_SAE_SUPPORT\",\n                                \"name\": \"ESP_WIFI_SOFTAP_SAE_SUPPORT\",\n                                \"range\": null,\n                                \"title\": \"Enable WPA3 Personal(SAE) SoftAP\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.\",\n                        \"id\": \"ESP_WIFI_ENABLE_WPA3_SAE\",\n                        \"name\": \"ESP_WIFI_ENABLE_WPA3_SAE\",\n                        \"range\": null,\n                        \"title\": \"Enable WPA3-Personal\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to allow the device to establish OWE connection with eligible AP's.\\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.\",\n                        \"id\": \"ESP_WIFI_ENABLE_WPA3_OWE_STA\",\n                        \"name\": \"ESP_WIFI_ENABLE_WPA3_OWE_STA\",\n                        \"range\": null,\n                        \"title\": \"Enable OWE STA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_IRAM_OPT\",\n                                \"help\": \"The minimum timeout for waiting to receive data, unit: milliseconds.\",\n                                \"id\": \"ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME\",\n                                \"name\": \"ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME\",\n                                \"range\": null,\n                                \"title\": \"Minimum active time\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_IRAM_OPT\",\n                                \"help\": \"The maximum time that wifi keep alive, unit: seconds.\",\n                                \"id\": \"ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME\",\n                                \"name\": \"ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME\",\n                                \"range\": null,\n                                \"title\": \"Maximum keep alive time\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to place called Wi-Fi library TBTT process and receive beacon functions in IRAM.\\nSome functions can be put in IRAM either by ESP_WIFI_IRAM_OPT and ESP_WIFI_RX_IRAM_OPT, or this one.\\nIf already enabled ESP_WIFI_IRAM_OPT, the other 7.3KB IRAM memory would be taken by this option.\\nIf already enabled ESP_WIFI_RX_IRAM_OPT, the other 1.3KB IRAM memory would be taken by this option.\\nIf neither of them are enabled, the other 7.4KB IRAM memory would be taken by this option.\\nWi-Fi power-save mode average current would be reduced if this option is enabled.\",\n                        \"id\": \"ESP_WIFI_SLP_IRAM_OPT\",\n                        \"name\": \"ESP_WIFI_SLP_IRAM_OPT\",\n                        \"range\": null,\n                        \"title\": \"WiFi SLP IRAM speed optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_FTM_ENABLE\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_FTM_INITIATOR_SUPPORT\",\n                                \"name\": \"ESP_WIFI_FTM_INITIATOR_SUPPORT\",\n                                \"range\": null,\n                                \"title\": \"FTM Initiator support\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_FTM_ENABLE\",\n                                \"help\": null,\n                                \"id\": \"ESP_WIFI_FTM_RESPONDER_SUPPORT\",\n                                \"name\": \"ESP_WIFI_FTM_RESPONDER_SUPPORT\",\n                                \"range\": null,\n                                \"title\": \"FTM Responder support\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_WIFI_FTM_SUPPORT\",\n                        \"help\": \"Enable feature Fine Timing Measurement for calculating WiFi Round-Trip-Time (RTT).\",\n                        \"id\": \"ESP_WIFI_FTM_ENABLE\",\n                        \"name\": \"ESP_WIFI_FTM_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"WiFi FTM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable power_management for station when disconnected.\\nChip will do modem-sleep when rf module is not in use any more.\",\n                        \"id\": \"ESP_WIFI_STA_DISCONNECTED_PM_ENABLE\",\n                        \"name\": \"ESP_WIFI_STA_DISCONNECTED_PM_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Power Management for station at disconnected\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_GCMP_SUPPORT\",\n                        \"help\": \"Select this option to enable GCMP support. GCMP support is compulsory for WiFi Suite-B support.\",\n                        \"id\": \"ESP_WIFI_GCMP_SUPPORT\",\n                        \"name\": \"ESP_WIFI_GCMP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"WiFi GCMP Support(GCMP128 and GCMP256)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.\",\n                        \"id\": \"ESP_WIFI_GMAC_SUPPORT\",\n                        \"name\": \"ESP_WIFI_GMAC_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"WiFi GMAC Support(GMAC128 and GMAC256)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"WiFi module can be compiled without SoftAP to save code size.\",\n                        \"id\": \"ESP_WIFI_SOFTAP_SUPPORT\",\n                        \"name\": \"ESP_WIFI_SOFTAP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"WiFi SoftAP Support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_PHY_MAC_BB_PD && SOC_PM_SUPPORT_BEACON_WAKEUP\",\n                        \"help\": \"The wifi modem automatically receives the beacon frame during light sleep.\",\n                        \"id\": \"ESP_WIFI_ENHANCED_LIGHT_SLEEP\",\n                        \"name\": \"ESP_WIFI_ENHANCED_LIGHT_SLEEP\",\n                        \"range\": null,\n                        \"title\": \"WiFi modem automatically receives the beacon\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_BEACON_LOST_OPT\",\n                                \"help\": \"Timeout time for close rf phy when beacon loss occurs, Unit: 1024 microsecond.\",\n                                \"id\": \"ESP_WIFI_SLP_BEACON_LOST_TIMEOUT\",\n                                \"name\": \"ESP_WIFI_SLP_BEACON_LOST_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Beacon loss timeout\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_BEACON_LOST_OPT\",\n                                \"help\": \"Maximum number of consecutive lost beacons allowed, WiFi keeps Rx state when\\nthe number of consecutive beacons lost is greater than the given threshold.\",\n                                \"id\": \"ESP_WIFI_SLP_BEACON_LOST_THRESHOLD\",\n                                \"name\": \"ESP_WIFI_SLP_BEACON_LOST_THRESHOLD\",\n                                \"range\": null,\n                                \"title\": \"Maximum number of consecutive lost beacons allowed\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n                                \"help\": \"Delta early time for rf phy on, When the beacon is lost, the next rf phy on will\\nbe earlier the time specified by the configuration item, Unit: 32 microsecond.\",\n                                \"id\": \"ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME\",\n                                \"name\": \"ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME\",\n                                \"range\": null,\n                                \"title\": \"Delta early time for RF PHY on\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\",\n                                \"help\": \"Delta timeout time for rf phy off, When the beacon is lost, the next rf phy off will\\nbe delayed for the time specified by the configuration item. Unit: 1024 microsecond.\",\n                                \"id\": \"ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME\",\n                                \"name\": \"ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME\",\n                                \"range\": null,\n                                \"title\": \"Delta timeout time for RF PHY off\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable wifi sleep optimization when beacon loss occurs and immediately enter\\nsleep mode when the WiFi module detects beacon loss.\",\n                        \"id\": \"ESP_WIFI_SLP_BEACON_LOST_OPT\",\n                        \"name\": \"ESP_WIFI_SLP_BEACON_LOST_OPT\",\n                        \"range\": null,\n                        \"title\": \"Wifi sleep optimize when beacon lost\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Maximum number of encrypted peers supported by espnow.\\nThe number of hardware keys for encryption is fixed. And the espnow and SoftAP share the same\\nhardware keys. So this configuration will affect the maximum connection number of SoftAP.\\nMaximum espnow encrypted peers number + maximum number of connections of SoftAP = Max hardware keys number.\\nWhen using ESP mesh, this value should be set to a maximum of 6.\",\n                        \"id\": \"ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM\",\n                        \"name\": \"ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM\",\n                        \"range\": [\n                            0,\n                            17\n                        ],\n                        \"title\": \"Maximum espnow encrypt peers number\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_NAN_SUPPORT\",\n                        \"help\": \"Enable WiFi Aware (NAN) feature.\",\n                        \"id\": \"ESP_WIFI_NAN_ENABLE\",\n                        \"name\": \"ESP_WIFI_NAN_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"WiFi Aware\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_HE_SUPPORT\",\n                        \"help\": \"Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category\\nwill use 346 bytes memory.\",\n                        \"id\": \"ESP_WIFI_ENABLE_WIFI_TX_STATS\",\n                        \"name\": \"ESP_WIFI_ENABLE_WIFI_TX_STATS\",\n                        \"range\": null,\n                        \"title\": \"Enable Wi-Fi transmission statistics\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_MBEDTLS_CRYPTO\",\n                                \"help\": \"Select this option to use MbedTLS TLS client for WPA2 enterprise connection.\\nPlease note that from MbedTLS-3.0 onwards, MbedTLS does not support SSL-3.0\\nTLS-v1.0, TLS-v1.1 versions. Incase your server is using one of these version,\\nit is advisable to update your server.\\nPlease disable this option for compatibilty with older TLS versions.\",\n                                \"id\": \"ESP_WIFI_MBEDTLS_TLS_CLIENT\",\n                                \"name\": \"ESP_WIFI_MBEDTLS_TLS_CLIENT\",\n                                \"range\": null,\n                                \"title\": \"Use MbedTLS TLS client for WiFi Enterprise connection\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable the use of MbedTLS crypto APIs.\\nThe internal crypto support within the supplicant is limited\\nand may not suffice for all new security features, including WPA3.\\n\\nIt is recommended to always keep this option enabled. Additionally,\\nnote that MbedTLS can leverage hardware acceleration if available,\\nresulting in significantly faster cryptographic operations.\",\n                        \"id\": \"ESP_WIFI_MBEDTLS_CRYPTO\",\n                        \"name\": \"ESP_WIFI_MBEDTLS_CRYPTO\",\n                        \"range\": null,\n                        \"title\": \"Use MbedTLS crypto APIs\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_WAPI_SUPPORT\",\n                        \"help\": \"Select this option to enable WAPI-PSK\\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).\",\n                        \"id\": \"ESP_WIFI_WAPI_PSK\",\n                        \"name\": \"ESP_WIFI_WAPI_PSK\",\n                        \"range\": null,\n                        \"title\": \"Enable WAPI PSK support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_WIFI_GCMP_SUPPORT\",\n                        \"help\": \"Select this option to enable 192 bit NSA suite-B.\\nThis is necessary to support WPA3 192 bit security.\",\n                        \"id\": \"ESP_WIFI_SUITE_B_192\",\n                        \"name\": \"ESP_WIFI_SUITE_B_192\",\n                        \"range\": null,\n                        \"title\": \"Enable NSA suite B support with 192 bit key\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_11KV_SUPPORT\",\n                                \"help\": \"Keep scan results in cache, if not enabled, those\\nwill be flushed immediately.\",\n                                \"id\": \"ESP_WIFI_SCAN_CACHE\",\n                                \"name\": \"ESP_WIFI_SCAN_CACHE\",\n                                \"range\": null,\n                                \"title\": \"Keep scan results in cache\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).\\nOnly APIs which are helpful for network assisted roaming\\nare supported for now.\\nEnable this option with BTM and RRM enabled in sta config\\nto make device ready for network assisted roaming.\\nBTM: BSS transition management enables an AP to request a station to transition\\nto a specific AP, or to indicate to a station a set of preferred APs.\\nRRM: Radio measurements enable STAs to understand the radio environment,\\nit enables STAs to observe and gather data on radio link performance\\nand on the radio environment. Current implementation adds beacon report,\\nlink measurement, neighbor report.\",\n                        \"id\": \"ESP_WIFI_11KV_SUPPORT\",\n                        \"name\": \"ESP_WIFI_11KV_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable 802.11k, 802.11v APIs Support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable WiFi Multiband operation certification support.\",\n                        \"id\": \"ESP_WIFI_MBO_SUPPORT\",\n                        \"name\": \"ESP_WIFI_MBO_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable Multi Band Operation Certification Support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable WiFi Easy Connect Support.\",\n                        \"id\": \"ESP_WIFI_DPP_SUPPORT\",\n                        \"name\": \"ESP_WIFI_DPP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable DPP support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable WiFi Fast Transition Support.\",\n                        \"id\": \"ESP_WIFI_11R_SUPPORT\",\n                        \"name\": \"ESP_WIFI_11R_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable 802.11R (Fast Transition) Support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_WIFI_SOFTAP_SUPPORT\",\n                        \"help\": \"Select this option to enable WPS registrar support in softAP mode.\",\n                        \"id\": \"ESP_WIFI_WPS_SOFTAP_REGISTRAR\",\n                        \"name\": \"ESP_WIFI_WPS_SOFTAP_REGISTRAR\",\n                        \"range\": null,\n                        \"title\": \"Add WPS Registrar support in SoftAP mode\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_WIFI_ENABLE_WIFI_RX_STATS\",\n                                \"help\": \"Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.\",\n                                \"id\": \"ESP_WIFI_ENABLE_WIFI_RX_MU_STATS\",\n                                \"name\": \"ESP_WIFI_ENABLE_WIFI_RX_MU_STATS\",\n                                \"range\": null,\n                                \"title\": \"Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_WIFI_HE_SUPPORT\",\n                        \"help\": \"Enable Wi-Fi reception statistics. Total support 2 access category. Each access category\\nwill use 190 bytes memory.\",\n                        \"id\": \"ESP_WIFI_ENABLE_WIFI_RX_STATS\",\n                        \"name\": \"ESP_WIFI_ENABLE_WIFI_RX_STATS\",\n                        \"range\": null,\n                        \"title\": \"Enable Wi-Fi reception statistics\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Select this option to enable validate each WPS attribute\\nrigorously. Disabling this add the workaorunds with various APs.\\nEnabling this may cause inter operability issues with some APs.\",\n                                \"id\": \"ESP_WIFI_WPS_STRICT\",\n                                \"name\": \"ESP_WIFI_WPS_STRICT\",\n                                \"range\": null,\n                                \"title\": \"Strictly validate all WPS attributes\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Select this option to get passphrase during WPS configuration.\\nThis option fakes the virtual display capabilites to get the\\nconfiguration in passphrase mode.\\nNot recommanded to be used since WPS credentials should not\\nbe shared to other devices, making it in readable format increases\\nthat risk, also passphrase requires pbkdf2 to convert in psk.\",\n                                \"id\": \"ESP_WIFI_WPS_PASSPHRASE\",\n                                \"name\": \"ESP_WIFI_WPS_PASSPHRASE\",\n                                \"range\": null,\n                                \"title\": \"Get WPA2 passphrase in WPS config\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-wi-fi-wps-configuration-options\",\n                        \"title\": \"WPS Configuration Options\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to print logging information from WPA supplicant,\\nthis includes handshake information and key hex dumps depending\\non the project logging level.\\n\\nEnabling this could increase the build size ~60kb\\ndepending on the project logging level.\",\n                        \"id\": \"ESP_WIFI_DEBUG_PRINT\",\n                        \"name\": \"ESP_WIFI_DEBUG_PRINT\",\n                        \"range\": null,\n                        \"title\": \"Print debug messages from WPA Supplicant\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this to enable unity test for DPP.\",\n                        \"id\": \"ESP_WIFI_TESTING_OPTIONS\",\n                        \"name\": \"ESP_WIFI_TESTING_OPTIONS\",\n                        \"range\": null,\n                        \"title\": \"Add DPP testing code\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Select this to enable/disable enterprise connection support.\\n\\ndisabling this will reduce binary size.\\ndisabling this will disable the use of any esp_wifi_sta_wpa2_ent_* (as APIs will be meaningless)\",\n                        \"id\": \"ESP_WIFI_ENTERPRISE_SUPPORT\",\n                        \"name\": \"ESP_WIFI_ENTERPRISE_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable enterprise option\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-wi-fi\",\n                \"title\": \"Wi-Fi\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_TO_FLASH_OR_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_ENABLE_TO_FLASH\",\n                                \"name\": \"ESP_COREDUMP_ENABLE_TO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_TO_FLASH_OR_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_ENABLE_TO_UART\",\n                                \"name\": \"ESP_COREDUMP_ENABLE_TO_UART\",\n                                \"range\": null,\n                                \"title\": \"UART\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_TO_FLASH_OR_UART>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_ENABLE_TO_NONE\",\n                                \"name\": \"ESP_COREDUMP_ENABLE_TO_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select place to store core dump: flash, uart or none (to disable core dumps generation).\\n\\nCore dumps to Flash are not available if PSRAM is used for task stacks.\\n\\nIf core dump is configured to be stored in flash and custom partition table is used add\\ncorresponding entry to your CSV. For examples, please see predefined partition table CSV descriptions\\nin the components/partition_table directory.\",\n                        \"id\": \"component-config-core-dump-data-destination\",\n                        \"name\": \"ESP_COREDUMP_TO_FLASH_OR_UART\",\n                        \"title\": \"Data destination\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_DATA_FORMAT>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_DATA_FORMAT_BIN\",\n                                \"name\": \"ESP_COREDUMP_DATA_FORMAT_BIN\",\n                                \"range\": null,\n                                \"title\": \"Binary format\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_DATA_FORMAT>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_DATA_FORMAT_ELF\",\n                                \"name\": \"ESP_COREDUMP_DATA_FORMAT_ELF\",\n                                \"range\": null,\n                                \"title\": \"ELF format\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!ESP_COREDUMP_ENABLE_TO_NONE\",\n                        \"help\": \"Select the data format for core dump.\",\n                        \"id\": \"component-config-core-dump-core-dump-data-format\",\n                        \"name\": \"ESP_COREDUMP_DATA_FORMAT\",\n                        \"title\": \"Core dump data format\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_CHECKSUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_CHECKSUM_CRC32\",\n                                \"name\": \"ESP_COREDUMP_CHECKSUM_CRC32\",\n                                \"range\": null,\n                                \"title\": \"Use CRC32 for integrity verification\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP_COREDUMP_DATA_FORMAT_ELF && IDF_TARGET_ESP32 && <choice ESP_COREDUMP_CHECKSUM>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_CHECKSUM_SHA256\",\n                                \"name\": \"ESP_COREDUMP_CHECKSUM_SHA256\",\n                                \"range\": null,\n                                \"title\": \"Use SHA256 for integrity verification\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!ESP_COREDUMP_ENABLE_TO_NONE\",\n                        \"help\": \"Select the integrity check for the core dump.\",\n                        \"id\": \"component-config-core-dump-core-dump-data-integrity-check\",\n                        \"name\": \"ESP_COREDUMP_CHECKSUM\",\n                        \"title\": \"Core dump data integrity check\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE_TO_FLASH\",\n                        \"help\": \"When enabled, if any data are found on the flash core dump partition,\\nthey will be checked by calculating their checksum.\",\n                        \"id\": \"ESP_COREDUMP_CHECK_BOOT\",\n                        \"name\": \"ESP_COREDUMP_CHECK_BOOT\",\n                        \"range\": null,\n                        \"title\": \"Check core dump data integrity on boot\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables/disable core dump module.\",\n                        \"id\": \"ESP_COREDUMP_ENABLE\",\n                        \"name\": \"ESP_COREDUMP_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE\",\n                        \"help\": \"Enable/disable coredump logs. Logs strings from espcoredump component are\\nplaced in DRAM. Disabling these helps to save ~5KB of internal memory.\",\n                        \"id\": \"ESP_COREDUMP_LOGS\",\n                        \"name\": \"ESP_COREDUMP_LOGS\",\n                        \"range\": null,\n                        \"title\": \"Enable coredump logs for debugging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE\",\n                        \"help\": \"Maximum number of tasks snapshots in core dump.\",\n                        \"id\": \"ESP_COREDUMP_MAX_TASKS_NUM\",\n                        \"name\": \"ESP_COREDUMP_MAX_TASKS_NUM\",\n                        \"range\": null,\n                        \"title\": \"Maximum number of tasks\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE_TO_UART\",\n                        \"help\": \"Config delay (in ms) before printing core dump to UART.\\nDelay can be interrupted by pressing Enter key.\",\n                        \"id\": \"ESP_COREDUMP_UART_DELAY\",\n                        \"name\": \"ESP_COREDUMP_UART_DELAY\",\n                        \"range\": null,\n                        \"title\": \"Delay before print to UART\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Force the use of a custom DRAM stack for coredump when Task stacks can be in PSRAM.\",\n                        \"id\": \"ESP_COREDUMP_USE_STACK_SIZE\",\n                        \"name\": \"ESP_COREDUMP_USE_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE\",\n                        \"help\": \"Size of the memory to be reserved for core dump stack. If 0 core dump process will run on\\nthe stack of crashed task/ISR, otherwise special stack will be allocated.\\nTo ensure that core dump itself will not overflow task/ISR stack set this to the value above 800.\\nNOTE: It eats DRAM.\",\n                        \"id\": \"ESP_COREDUMP_STACK_SIZE\",\n                        \"name\": \"ESP_COREDUMP_STACK_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Reserved stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_COREDUMP_DATA_FORMAT_ELF && ESP_COREDUMP_ENABLE_TO_FLASH && IDF_TARGET_ARCH_RISCV\",\n                        \"help\": \"Size of the buffer that would be reserved for extracting backtrace info summary.\\nThis buffer will contain the stack dump of the crashed task. This dump is useful in generating backtrace\",\n                        \"id\": \"ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE\",\n                        \"name\": \"ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Size of the stack dump buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_DECODE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_DECODE_INFO\",\n                                \"name\": \"ESP_COREDUMP_DECODE_INFO\",\n                                \"range\": null,\n                                \"title\": \"Decode and show summary (info_corefile)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice ESP_COREDUMP_DECODE>\",\n                                \"help\": null,\n                                \"id\": \"ESP_COREDUMP_DECODE_DISABLE\",\n                                \"name\": \"ESP_COREDUMP_DECODE_DISABLE\",\n                                \"range\": null,\n                                \"title\": \"Don't decode\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"ESP_COREDUMP_ENABLE_TO_UART\",\n                        \"help\": null,\n                        \"id\": \"component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor\",\n                        \"name\": \"ESP_COREDUMP_DECODE\",\n                        \"title\": \"Handling of UART core dumps in IDF Monitor\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"ESP_COREDUMP_DECODE\",\n                        \"name\": \"ESP_COREDUMP_DECODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-core-dump\",\n                \"title\": \"Core dump\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Number of volumes (logical drives) to use.\",\n                        \"id\": \"FATFS_VOLUME_COUNT\",\n                        \"name\": \"FATFS_VOLUME_COUNT\",\n                        \"range\": [\n                            1,\n                            10\n                        ],\n                        \"title\": \"Number of volumes\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_LONG_FILENAMES>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_LFN_NONE\",\n                                \"name\": \"FATFS_LFN_NONE\",\n                                \"range\": null,\n                                \"title\": \"No long filenames\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_LONG_FILENAMES>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_LFN_HEAP\",\n                                \"name\": \"FATFS_LFN_HEAP\",\n                                \"range\": null,\n                                \"title\": \"Long filename buffer in heap\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_LONG_FILENAMES>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_LFN_STACK\",\n                                \"name\": \"FATFS_LFN_STACK\",\n                                \"range\": null,\n                                \"title\": \"Long filename buffer on stack\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Support long filenames in FAT. Long filename data increases\\nmemory usage. FATFS can be configured to store the buffer for\\nlong filename data in stack or heap.\",\n                        \"id\": \"component-config-fat-filesystem-support-long-filename-support\",\n                        \"name\": \"FATFS_LONG_FILENAMES\",\n                        \"title\": \"Long filename support\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_SECTOR_SIZE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_SECTOR_512\",\n                                \"name\": \"FATFS_SECTOR_512\",\n                                \"range\": null,\n                                \"title\": \"512\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_SECTOR_SIZE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_SECTOR_4096\",\n                                \"name\": \"FATFS_SECTOR_4096\",\n                                \"range\": null,\n                                \"title\": \"4096\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Specify the size of the sector in bytes for FATFS partition generator.\",\n                        \"id\": \"component-config-fat-filesystem-support-sector-size\",\n                        \"name\": \"FATFS_SECTOR_SIZE\",\n                        \"title\": \"Sector size\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_DYNAMIC\",\n                                \"name\": \"FATFS_CODEPAGE_DYNAMIC\",\n                                \"range\": null,\n                                \"title\": \"Dynamic (all code pages supported)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_437\",\n                                \"name\": \"FATFS_CODEPAGE_437\",\n                                \"range\": null,\n                                \"title\": \"US (CP437)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_720\",\n                                \"name\": \"FATFS_CODEPAGE_720\",\n                                \"range\": null,\n                                \"title\": \"Arabic (CP720)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_737\",\n                                \"name\": \"FATFS_CODEPAGE_737\",\n                                \"range\": null,\n                                \"title\": \"Greek (CP737)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_771\",\n                                \"name\": \"FATFS_CODEPAGE_771\",\n                                \"range\": null,\n                                \"title\": \"KBL (CP771)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_775\",\n                                \"name\": \"FATFS_CODEPAGE_775\",\n                                \"range\": null,\n                                \"title\": \"Baltic (CP775)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_850\",\n                                \"name\": \"FATFS_CODEPAGE_850\",\n                                \"range\": null,\n                                \"title\": \"Latin 1 (CP850)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_852\",\n                                \"name\": \"FATFS_CODEPAGE_852\",\n                                \"range\": null,\n                                \"title\": \"Latin 2 (CP852)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_855\",\n                                \"name\": \"FATFS_CODEPAGE_855\",\n                                \"range\": null,\n                                \"title\": \"Cyrillic (CP855)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_857\",\n                                \"name\": \"FATFS_CODEPAGE_857\",\n                                \"range\": null,\n                                \"title\": \"Turkish (CP857)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_860\",\n                                \"name\": \"FATFS_CODEPAGE_860\",\n                                \"range\": null,\n                                \"title\": \"Portugese (CP860)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_861\",\n                                \"name\": \"FATFS_CODEPAGE_861\",\n                                \"range\": null,\n                                \"title\": \"Icelandic (CP861)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_862\",\n                                \"name\": \"FATFS_CODEPAGE_862\",\n                                \"range\": null,\n                                \"title\": \"Hebrew (CP862)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_863\",\n                                \"name\": \"FATFS_CODEPAGE_863\",\n                                \"range\": null,\n                                \"title\": \"Canadian French (CP863)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_864\",\n                                \"name\": \"FATFS_CODEPAGE_864\",\n                                \"range\": null,\n                                \"title\": \"Arabic (CP864)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_865\",\n                                \"name\": \"FATFS_CODEPAGE_865\",\n                                \"range\": null,\n                                \"title\": \"Nordic (CP865)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_866\",\n                                \"name\": \"FATFS_CODEPAGE_866\",\n                                \"range\": null,\n                                \"title\": \"Russian (CP866)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_869\",\n                                \"name\": \"FATFS_CODEPAGE_869\",\n                                \"range\": null,\n                                \"title\": \"Greek 2 (CP869)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_932\",\n                                \"name\": \"FATFS_CODEPAGE_932\",\n                                \"range\": null,\n                                \"title\": \"Japanese (DBCS) (CP932)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_936\",\n                                \"name\": \"FATFS_CODEPAGE_936\",\n                                \"range\": null,\n                                \"title\": \"Simplified Chinese (DBCS) (CP936)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_949\",\n                                \"name\": \"FATFS_CODEPAGE_949\",\n                                \"range\": null,\n                                \"title\": \"Korean (DBCS) (CP949)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_CHOOSE_CODEPAGE>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_CODEPAGE_950\",\n                                \"name\": \"FATFS_CODEPAGE_950\",\n                                \"range\": null,\n                                \"title\": \"Traditional Chinese (DBCS) (CP950)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"OEM code page used for file name encodings.\\n\\nIf \\\"Dynamic\\\" is selected, code page can be chosen at runtime using\\nf_setcp function. Note that choosing this option will increase\\napplication size by ~480kB.\",\n                        \"id\": \"component-config-fat-filesystem-support-oem-code-page\",\n                        \"name\": \"FATFS_CHOOSE_CODEPAGE\",\n                        \"title\": \"OEM Code Page\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"FATFS_CODEPAGE\",\n                        \"name\": \"FATFS_CODEPAGE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!FATFS_LFN_NONE\",\n                        \"help\": \"Maximum long filename length. Can be reduced to save RAM.\",\n                        \"id\": \"FATFS_MAX_LFN\",\n                        \"name\": \"FATFS_MAX_LFN\",\n                        \"range\": null,\n                        \"title\": \"Max long filename length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_API_ENCODING>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_API_ENCODING_ANSI_OEM\",\n                                \"name\": \"FATFS_API_ENCODING_ANSI_OEM\",\n                                \"range\": null,\n                                \"title\": \"API uses ANSI/OEM encoding\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice FATFS_API_ENCODING>\",\n                                \"help\": null,\n                                \"id\": \"FATFS_API_ENCODING_UTF_8\",\n                                \"name\": \"FATFS_API_ENCODING_UTF_8\",\n                                \"range\": null,\n                                \"title\": \"API uses UTF-8 encoding\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!FATFS_LFN_NONE\",\n                        \"help\": \"Choose encoding for character and string arguments/returns when using\\nFATFS APIs. The encoding of arguments will usually depend on text\\neditor settings.\",\n                        \"id\": \"component-config-fat-filesystem-support-api-character-encoding\",\n                        \"name\": \"FATFS_API_ENCODING\",\n                        \"title\": \"API character encoding\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option sets the FATFS configuration value _FS_LOCK.\\nThe option _FS_LOCK switches file lock function to control duplicated file open\\nand illegal operation to open objects.\\n\\n* 0: Disable file lock function. To avoid volume corruption, application\\nshould avoid illegal open, remove and rename to the open objects.\\n\\n* >0: Enable file lock function. The value defines how many files/sub-directories\\ncan be opened simultaneously under file lock control.\\n\\nNote that the file lock control is independent of re-entrancy.\",\n                        \"id\": \"FATFS_FS_LOCK\",\n                        \"name\": \"FATFS_FS_LOCK\",\n                        \"range\": [\n                            0,\n                            65535\n                        ],\n                        \"title\": \"Number of simultaneously open files protected by lock function\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option sets FATFS configuration value _FS_TIMEOUT, scaled to milliseconds.\\nSets the number of milliseconds FATFS will wait to acquire a mutex when\\noperating on an open file. For example, if one task is performing a lenghty\\noperation, another task will wait for the first task to release the lock,\\nand time out after amount of time set by this option.\",\n                        \"id\": \"FATFS_TIMEOUT_MS\",\n                        \"name\": \"FATFS_TIMEOUT_MS\",\n                        \"range\": null,\n                        \"title\": \"Timeout for acquiring a file lock, ms\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option affects FATFS configuration value _FS_TINY.\\n\\nIf this option is set, _FS_TINY is 0, and each open file has its own cache,\\nsize of the cache is equal to the _MAX_SS variable (512 or 4096 bytes).\\nThis option uses more RAM if more than 1 file is open, but needs less reads\\nand writes to the storage for some operations.\\n\\nIf this option is not set, _FS_TINY is 1, and single cache is used for\\nall open files, size is also equal to _MAX_SS variable. This reduces the\\namount of heap used when multiple files are open, but increases the number\\nof read and write operations which FATFS needs to make.\",\n                        \"id\": \"FATFS_PER_FILE_CACHE\",\n                        \"name\": \"FATFS_PER_FILE_CACHE\",\n                        \"range\": null,\n                        \"title\": \"Use separate cache for each file\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC\",\n                        \"help\": \"When the option is enabled, internal buffers used by FATFS will be allocated\\nfrom external RAM. If the allocation from external RAM fails, the buffer will\\nbe allocated from the internal RAM.\\nDisable this option if optimizing for performance. Enable this option if\\noptimizing for internal memory size.\",\n                        \"id\": \"FATFS_ALLOC_PREFER_EXTRAM\",\n                        \"name\": \"FATFS_ALLOC_PREFER_EXTRAM\",\n                        \"range\": null,\n                        \"title\": \"Perfer external RAM when allocating FATFS buffers\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FATFS_USE_FASTSEEK\",\n                                \"help\": \"If fast seek algorithm is enabled, this defines the size of\\nCLMT buffer used by this algorithm in 32-bit word units.\\nThis value should be chosen based on prior knowledge of\\nmaximum elements of each file entry would store.\",\n                                \"id\": \"FATFS_FAST_SEEK_BUFFER_SIZE\",\n                                \"name\": \"FATFS_FAST_SEEK_BUFFER_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Fast seek CLMT buffer size\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"The fast seek feature enables fast backward/long seek operations without\\nFAT access by using an in-memory CLMT (cluster link map table).\\nPlease note, fast-seek is only allowed for read-mode files, if a\\nfile is opened in write-mode, the seek mechanism will automatically fallback\\nto the default implementation.\",\n                        \"id\": \"FATFS_USE_FASTSEEK\",\n                        \"name\": \"FATFS_USE_FASTSEEK\",\n                        \"range\": null,\n                        \"title\": \"Enable fast seek algorithm when using lseek function through VFS FAT\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If set to 0, the 'newlib' library's default size (BLKSIZ) is used (128 B).\\nIf set to a non-zero value, the value is used as the block size.\\nDefault file buffer size is set to this value\\nand the buffer is allocated when first attempt of reading/writing to a file is made.\\nIncreasing this value improves fread() speed, however the heap usage is increased as well.\\n\\nNOTE: The block size value is shared by all the filesystem functions\\naccessing target media for given file descriptor!\\nSee 'Improving I/O performance' section of 'Maximizing Execution Speed' documentation page\\nfor more details.\",\n                        \"id\": \"FATFS_VFS_FSTAT_BLKSIZE\",\n                        \"name\": \"FATFS_VFS_FSTAT_BLKSIZE\",\n                        \"range\": null,\n                        \"title\": \"Default block size\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-fat-filesystem-support\",\n                \"title\": \"FAT Filesystem support\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\\n\\nIDF has added an experimental port of this SMP kernel located in\\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\\n\\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\\ntheir implementation and features.\",\n                                \"id\": \"FREERTOS_SMP\",\n                                \"name\": \"FREERTOS_SMP\",\n                                \"range\": null,\n                                \"title\": \"Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\\nto start it on the first core. This is needed when e.g. another process needs complete control over the\\nsecond core.\",\n                                \"id\": \"FREERTOS_UNICORE\",\n                                \"name\": \"FREERTOS_UNICORE\",\n                                \"range\": null,\n                                \"title\": \"Run FreeRTOS only on first core\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\\ndetails).\",\n                                \"id\": \"FREERTOS_HZ\",\n                                \"name\": \"FREERTOS_HZ\",\n                                \"range\": [\n                                    1,\n                                    1000\n                                ],\n                                \"title\": \"configTICK_RATE_HZ\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_UNICORE && !FREERTOS_SMP\",\n                                \"help\": \"Enables port specific task selection method. This option can speed up the search of ready tasks\\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).\",\n                                \"id\": \"FREERTOS_OPTIMIZED_SCHEDULER\",\n                                \"name\": \"FREERTOS_OPTIMIZED_SCHEDULER\",\n                                \"range\": null,\n                                \"title\": \"configUSE_PORT_OPTIMISED_TASK_SELECTION\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_NONE\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No checking\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Check for stack overflows on each context switch by checking if the stack pointer is in a valid\\nrange. Quick but does not detect stack overflows that happened between context switches\\n(configCHECK_FOR_STACK_OVERFLOW = 1)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\",\n                                        \"range\": null,\n                                        \"title\": \"Check by stack pointer value (Method 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_CHECK_STACKOVERFLOW>\",\n                                        \"help\": \"Places some magic bytes at the end of the stack area and on each context switch, check if these\\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\\n(configCHECK_FOR_STACK_OVERFLOW = 2)\",\n                                        \"id\": \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\",\n                                        \"name\": \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\",\n                                        \"range\": null,\n                                        \"title\": \"Check using canary bytes (Method 2)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\\nmore details).\\n\\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\\nfunction will be provided by ESP-IDF.\",\n                                \"id\": \"component-config-freertos-kernel-configcheck_for_stack_overflow\",\n                                \"name\": \"FREERTOS_CHECK_STACKOVERFLOW\",\n                                \"title\": \"configCHECK_FOR_STACK_OVERFLOW\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the number of thread local storage pointers in each task (see\\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\\n\\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\\nthread-local-storage. Other indexes can be used for any desired purpose.\",\n                                \"id\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"name\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"range\": [\n                                    1,\n                                    256\n                                ],\n                                \"title\": \"configNUM_THREAD_LOCAL_STORAGE_POINTERS\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\\n\\nNote:\\n\\n- ESP-IDF specifies stack sizes in bytes instead of words.\\n- The default size is enough for most use cases.\\n- The stack size may need to be increased above the default if the app installs idle or thread local\\n  storage cleanup hooks that use a lot of stack memory.\\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.\",\n                                \"id\": \"FREERTOS_IDLE_TASK_STACKSIZE\",\n                                \"name\": \"FREERTOS_IDLE_TASK_STACKSIZE\",\n                                \"range\": [\n                                    768,\n                                    32768\n                                ],\n                                \"title\": \"configMINIMAL_STACK_SIZE (Idle task stack size)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\\n  simultaneously.\",\n                                \"id\": \"FREERTOS_USE_IDLE_HOOK\",\n                                \"name\": \"FREERTOS_USE_IDLE_HOOK\",\n                                \"range\": null,\n                                \"title\": \"configUSE_IDLE_HOOK\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_SMP\",\n                                \"help\": \"Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\\ndetails).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationMinimalIdleHook( void );``\\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)\",\n                                \"id\": \"FREERTOS_USE_MINIMAL_IDLE_HOOK\",\n                                \"name\": \"FREERTOS_USE_MINIMAL_IDLE_HOOK\",\n                                \"range\": null,\n                                \"title\": \"Use FreeRTOS minimal idle hook\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\\n\\nNote:\\n\\n- The application must provide the hook function ``void vApplicationTickHook( void );``\\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\\n  simultaneously.\",\n                                \"id\": \"FREERTOS_USE_TICK_HOOK\",\n                                \"name\": \"FREERTOS_USE_TICK_HOOK\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TICK_HOOK\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\\nmore details).\\n\\nNote: For most uses, the default of 16 characters is sufficient.\",\n                                \"id\": \"FREERTOS_MAX_TASK_NAME_LEN\",\n                                \"name\": \"FREERTOS_MAX_TASK_NAME_LEN\",\n                                \"range\": [\n                                    1,\n                                    256\n                                ],\n                                \"title\": \"configMAX_TASK_NAME_LEN\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).\",\n                                \"id\": \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\",\n                                \"name\": \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\",\n                                \"range\": null,\n                                \"title\": \"configENABLE_BACKWARD_COMPATIBILITY\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).\",\n                                \"id\": \"FREERTOS_TIMER_TASK_PRIORITY\",\n                                \"name\": \"FREERTOS_TIMER_TASK_PRIORITY\",\n                                \"range\": [\n                                    1,\n                                    25\n                                ],\n                                \"title\": \"configTIMER_TASK_PRIORITY\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).\",\n                                \"id\": \"FREERTOS_TIMER_TASK_STACK_DEPTH\",\n                                \"name\": \"FREERTOS_TIMER_TASK_STACK_DEPTH\",\n                                \"range\": [\n                                    1536,\n                                    32768\n                                ],\n                                \"title\": \"configTIMER_TASK_STACK_DEPTH\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\\ndetails).\",\n                                \"id\": \"FREERTOS_TIMER_QUEUE_LENGTH\",\n                                \"name\": \"FREERTOS_TIMER_QUEUE_LENGTH\",\n                                \"range\": [\n                                    5,\n                                    20\n                                ],\n                                \"title\": \"configTIMER_QUEUE_LENGTH\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\\n\\nNote: A value of 0 will disable queue registry functionality\",\n                                \"id\": \"FREERTOS_QUEUE_REGISTRY_SIZE\",\n                                \"name\": \"FREERTOS_QUEUE_REGISTRY_SIZE\",\n                                \"range\": [\n                                    0,\n                                    20\n                                ],\n                                \"title\": \"configQUEUE_REGISTRY_SIZE\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set the size of the task notification array of each task. When increasing this value, keep in\\nmind that this means additional memory for each and every task on the system.\\nHowever, task notifications in general are more light weight compared to alternatives\\nsuch as semaphores.\",\n                                \"id\": \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"name\": \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"range\": [\n                                    1,\n                                    32\n                                ],\n                                \"title\": \"configTASK_NOTIFICATION_ARRAY_ENTRIES\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                                \"help\": \"If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\\nis pinned to (0,1) or -1 if not pinned.\",\n                                                \"id\": \"FREERTOS_VTASKLIST_INCLUDE_COREID\",\n                                                \"name\": \"FREERTOS_VTASKLIST_INCLUDE_COREID\",\n                                                \"range\": null,\n                                                \"title\": \"Enable display of xCoreID in vTaskList\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                        \"help\": \"Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).\",\n                                        \"id\": \"FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"name\": \"FREERTOS_USE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"range\": null,\n                                        \"title\": \"configUSE_STATS_FORMATTING_FUNCTIONS\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables additional structure members and functions to assist with execution visualization and tracing\\n(see configUSE_TRACE_FACILITY documentation for more details).\",\n                                \"id\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                \"name\": \"FREERTOS_USE_TRACE_FACILITY\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TRACE_FACILITY\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\\ndocumentation for more details).\\n\\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.\",\n                                \"id\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"name\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"range\": null,\n                                \"title\": \"configGENERATE_RUN_TIME_STATS\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                        \"help\": \"FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\\nthis value to improve scheduling efficiency\",\n                                        \"id\": \"FREERTOS_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"name\": \"FREERTOS_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"range\": null,\n                                        \"title\": \"configEXPECTED_IDLE_TIME_BEFORE_SLEEP\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"PM_ENABLE\",\n                                \"help\": \"If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\\nwhen no tasks need to run for a number of ticks. This number can be set using\\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \\\"automatic light sleep\\\".\\n\\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\\n\\\"skip_unhandled_events\\\" option as true.\\n\\nIf disabled, automatic light sleep support will be disabled.\",\n                                \"id\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                \"name\": \"FREERTOS_USE_TICKLESS_IDLE\",\n                                \"range\": null,\n                                \"title\": \"configUSE_TICKLESS_IDLE\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-freertos-kernel\",\n                        \"title\": \"Kernel\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_DEFAULT || ESP_COREDUMP_ENABLE || ESP_GDBSTUB_ENABLED\",\n                                \"help\": \"If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\\nwrapper function will then log an error and abort the application. This option is also required for GDB\\nbacktraces and C++ exceptions to work correctly inside top-level task functions.\",\n                                \"id\": \"FREERTOS_TASK_FUNCTION_WRAPPER\",\n                                \"name\": \"FREERTOS_TASK_FUNCTION_WRAPPER\",\n                                \"range\": null,\n                                \"title\": \"Wrap task functions\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\\nless because the last one is overwritten as soon as a task switch happens.\\n\\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\\nthe size for the stack watchpoint in IDF is 32 bytes.\\n\\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\\ncheck methods.\\n\\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\\nesp-idf will panic on an unhandled debug exception.\",\n                                \"id\": \"FREERTOS_WATCHPOINT_END_OF_STACK\",\n                                \"name\": \"FREERTOS_WATCHPOINT_END_OF_STACK\",\n                                \"range\": null,\n                                \"title\": \"Enable stack overflow debug watchpoint\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0\",\n                                \"help\": \"ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\\noff to save space in the TCB memory.\",\n                                \"id\": \"FREERTOS_TLSP_DELETION_CALLBACKS\",\n                                \"name\": \"FREERTOS_TLSP_DELETION_CALLBACKS\",\n                                \"range\": null,\n                                \"title\": \"Enable thread local storage pointers deletion callbacks\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\\n\\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback\",\n                                \"id\": \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\",\n                                \"name\": \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\",\n                                \"range\": null,\n                                \"title\": \"Enable static task clean up hook\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_SMP\",\n                                \"help\": \"If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\\nwhich is currently holding the mutex.\",\n                                \"id\": \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\",\n                                \"name\": \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\",\n                                \"range\": null,\n                                \"title\": \"Check that mutex semaphore is given by owner task\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\\nhas its own stack, so the total size occupied will be twice this.\",\n                                \"id\": \"FREERTOS_ISR_STACKSIZE\",\n                                \"name\": \"FREERTOS_ISR_STACKSIZE\",\n                                \"range\": [\n                                    1536,\n                                    32768\n                                ],\n                                \"title\": \"ISR stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"If this option is enabled, interrupt stack frame will be modified to point to the code of the\\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\\nto the interrupt dispatching code.\",\n                                \"id\": \"FREERTOS_INTERRUPT_BACKTRACE\",\n                                \"name\": \"FREERTOS_INTERRUPT_BACKTRACE\",\n                                \"range\": null,\n                                \"title\": \"Enable backtrace from interrupt to task context\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32\",\n                                \"help\": \"When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\\nhigher level interrupts is still not permitted.\",\n                                \"id\": \"FREERTOS_FPU_IN_ISR\",\n                                \"name\": \"FREERTOS_FPU_IN_ISR\",\n                                \"range\": null,\n                                \"title\": \"Use float in Level 1 ISR\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_TICK_SUPPORT_CORETIMER\",\n                                \"name\": \"FREERTOS_TICK_SUPPORT_CORETIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_TICK_SUPPORT_SYSTIMER\",\n                                \"name\": \"FREERTOS_TICK_SUPPORT_SYSTIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_CORETIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use timer 0\",\n                                        \"id\": \"FREERTOS_CORETIMER_0\",\n                                        \"name\": \"FREERTOS_CORETIMER_0\",\n                                        \"range\": null,\n                                        \"title\": \"Timer 0 (int 6, level 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_CORETIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use timer 1\",\n                                        \"id\": \"FREERTOS_CORETIMER_1\",\n                                        \"name\": \"FREERTOS_CORETIMER_1\",\n                                        \"range\": null,\n                                        \"title\": \"Timer 1 (int 15, level 3)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_SYSTIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use systimer with the 1 interrupt priority.\",\n                                        \"id\": \"FREERTOS_CORETIMER_SYSTIMER_LVL1\",\n                                        \"name\": \"FREERTOS_CORETIMER_SYSTIMER_LVL1\",\n                                        \"range\": null,\n                                        \"title\": \"SYSTIMER 0 (level 1)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_TICK_SUPPORT_SYSTIMER && <choice FREERTOS_CORETIMER>\",\n                                        \"help\": \"Select this to use systimer with the 3 interrupt priority.\",\n                                        \"id\": \"FREERTOS_CORETIMER_SYSTIMER_LVL3\",\n                                        \"name\": \"FREERTOS_CORETIMER_SYSTIMER_LVL3\",\n                                        \"range\": null,\n                                        \"title\": \"SYSTIMER 0 (level 3)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\\nthis, with different interrupt priorities.\",\n                                \"id\": \"component-config-freertos-port-tick-timer-source-xtensa-only-\",\n                                \"name\": \"FREERTOS_CORETIMER\",\n                                \"title\": \"Tick timer source (Xtensa Only)\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_SYSTICK_USES_SYSTIMER\",\n                                \"name\": \"FREERTOS_SYSTICK_USES_SYSTIMER\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"FREERTOS_SYSTICK_USES_CCOUNT\",\n                                \"name\": \"FREERTOS_SYSTICK_USES_CCOUNT\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice FREERTOS_RUN_TIME_STATS_CLK>\",\n                                        \"help\": \"ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\\napproximately 4290 seconds.\",\n                                        \"id\": \"FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER\",\n                                        \"name\": \"FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER\",\n                                        \"range\": null,\n                                        \"title\": \"Use ESP TIMER for run time stats\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"FREERTOS_SYSTICK_USES_CCOUNT && <choice FREERTOS_RUN_TIME_STATS_CLK>\",\n                                        \"help\": \"CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.\",\n                                        \"id\": \"FREERTOS_RUN_TIME_STATS_USING_CPU_CLK\",\n                                        \"name\": \"FREERTOS_RUN_TIME_STATS_USING_CPU_CLK\",\n                                        \"range\": null,\n                                        \"title\": \"Use CPU Clock for run time stats\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"FREERTOS_GENERATE_RUN_TIME_STATS\",\n                                \"help\": \"Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\\nsource overflows.\",\n                                \"id\": \"component-config-freertos-port-choose-the-clock-source-for-run-time-stats\",\n                                \"name\": \"FREERTOS_RUN_TIME_STATS_CLK\",\n                                \"title\": \"Choose the clock source for run time stats\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\\nThis saves up to 8KB of IRAM depending on which functions are used.\",\n                                \"id\": \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"name\": \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Place FreeRTOS functions into Flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"FREERTOS_ENABLE_TASK_SNAPSHOT && !ESP_PANIC_HANDLER_IRAM\",\n                                \"help\": \"When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll,\\nwill be placed in flash. Note that if enabled, these functions cannot be called when cache is disabled.\",\n                                \"id\": \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\",\n                                \"name\": \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\",\n                                \"range\": null,\n                                \"title\": \"Place task snapshot functions into flash\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure\",\n                                \"id\": \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\",\n                                \"name\": \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\",\n                                \"range\": null,\n                                \"title\": \"Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll, are\\ncompiled and linked. Task snapshots are used by Task Watchdog (TWDT), GDB Stub and Core dump.\",\n                                \"id\": \"FREERTOS_ENABLE_TASK_SNAPSHOT\",\n                                \"name\": \"FREERTOS_ENABLE_TASK_SNAPSHOT\",\n                                \"range\": null,\n                                \"title\": \"Enable task snapshot functions\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-freertos-port\",\n                        \"title\": \"Port\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"FREERTOS_NO_AFFINITY\",\n                        \"name\": \"FREERTOS_NO_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"FREERTOS_SUPPORT_STATIC_ALLOCATION\",\n                        \"name\": \"FREERTOS_SUPPORT_STATIC_ALLOCATION\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE\",\n                        \"id\": \"FREERTOS_DEBUG_OCDAWARE\",\n                        \"name\": \"FREERTOS_DEBUG_OCDAWARE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-freertos\",\n                \"title\": \"FreeRTOS\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_EQUALS_SYSTEM\",\n                                \"name\": \"HAL_ASSERTION_EQUALS_SYSTEM\",\n                                \"range\": null,\n                                \"title\": \"Same as system assertion level\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_DISABLE\",\n                                \"name\": \"HAL_ASSERTION_DISABLE\",\n                                \"range\": null,\n                                \"title\": \"Disabled\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_SILENT\",\n                                \"name\": \"HAL_ASSERTION_SILENT\",\n                                \"range\": null,\n                                \"title\": \"Silent\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && <choice HAL_DEFAULT_ASSERTION_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_ASSERTION_ENABLE\",\n                                \"name\": \"HAL_ASSERTION_ENABLE\",\n                                \"range\": null,\n                                \"title\": \"Enabled\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Set the assert behavior / level for HAL component.\\nHAL component assert level can be set separately,\\nbut the level can't exceed the system assertion level.\\ne.g. If the system assertion is disabled, then the HAL\\nassertion can't be enabled either. If the system assertion\\nis enable, then the HAL assertion can still be disabled\\nby this Kconfig option.\",\n                        \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level\",\n                        \"name\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"title\": \"Default HAL assertion level\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"name\": \"HAL_DEFAULT_ASSERTION_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_NONE\",\n                                \"name\": \"HAL_LOG_LEVEL_NONE\",\n                                \"range\": null,\n                                \"title\": \"No output\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_ERROR\",\n                                \"name\": \"HAL_LOG_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_WARN\",\n                                \"name\": \"HAL_LOG_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_INFO\",\n                                \"name\": \"HAL_LOG_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_DEBUG\",\n                                \"name\": \"HAL_LOG_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HAL_LOG_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"HAL_LOG_LEVEL_VERBOSE\",\n                                \"name\": \"HAL_LOG_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE\",\n                        \"help\": \"Specify how much output to see in HAL logs.\",\n                        \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity\",\n                        \"name\": \"HAL_LOG_LEVEL\",\n                        \"title\": \"HAL layer log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"HAL_LOG_LEVEL\",\n                        \"name\": \"HAL_LOG_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_HAL_SYSTIMER\",\n                        \"help\": \"Enable this flag to use HAL functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM,\\nbut you will lose the possibility to debug this module, and some new\\nfeatures will be added and bugs will be fixed in the IDF source\\nbut cannot be synced to ROM.\",\n                        \"id\": \"HAL_SYSTIMER_USE_ROM_IMPL\",\n                        \"name\": \"HAL_SYSTIMER_USE_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use ROM implementation of SysTimer HAL driver\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_HAL_WDT\",\n                        \"help\": \"Enable this flag to use HAL functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM,\\nbut you will lose the possibility to debug this module, and some new\\nfeatures will be added and bugs will be fixed in the IDF source\\nbut cannot be synced to ROM.\",\n                        \"id\": \"HAL_WDT_USE_ROM_IMPL\",\n                        \"name\": \"HAL_WDT_USE_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use ROM implementation of WDT HAL driver\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPI_MASTER_ISR_IN_IRAM\",\n                        \"help\": \"Enable this option to place SPI master hal layer functions into IRAM.\",\n                        \"id\": \"HAL_SPI_MASTER_FUNC_IN_IRAM\",\n                        \"name\": \"HAL_SPI_MASTER_FUNC_IN_IRAM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPI_SLAVE_ISR_IN_IRAM\",\n                        \"help\": \"Enable this option to place SPI slave hal layer functions into IRAM.\",\n                        \"id\": \"HAL_SPI_SLAVE_FUNC_IN_IRAM\",\n                        \"name\": \"HAL_SPI_SLAVE_FUNC_IN_IRAM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-hardware-abstraction-layer-hal-and-low-level-ll-\",\n                \"title\": \"Hardware Abstraction Layer (HAL) and Low Level (LL)\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_CORRUPTION_DETECTION>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_POISONING_DISABLED\",\n                                \"name\": \"HEAP_POISONING_DISABLED\",\n                                \"range\": null,\n                                \"title\": \"Basic (no poisoning)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_CORRUPTION_DETECTION>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_POISONING_LIGHT\",\n                                \"name\": \"HEAP_POISONING_LIGHT\",\n                                \"range\": null,\n                                \"title\": \"Light impact\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_CORRUPTION_DETECTION>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_POISONING_COMPREHENSIVE\",\n                                \"name\": \"HEAP_POISONING_COMPREHENSIVE\",\n                                \"range\": null,\n                                \"title\": \"Comprehensive\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\\n\\nSee the \\\"Heap Memory Debugging\\\" page of the IDF documentation\\nfor a description of each level of heap corruption detection.\",\n                        \"id\": \"component-config-heap-memory-debugging-heap-corruption-detection\",\n                        \"name\": \"HEAP_CORRUPTION_DETECTION\",\n                        \"title\": \"Heap corruption detection\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_TRACING_DEST>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_TRACING_OFF\",\n                                \"name\": \"HEAP_TRACING_OFF\",\n                                \"range\": null,\n                                \"title\": \"Disabled\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_TRACING_DEST>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_TRACING_STANDALONE\",\n                                \"name\": \"HEAP_TRACING_STANDALONE\",\n                                \"range\": null,\n                                \"title\": \"Standalone\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice HEAP_TRACING_DEST>\",\n                                \"help\": null,\n                                \"id\": \"HEAP_TRACING_TOHOST\",\n                                \"name\": \"HEAP_TRACING_TOHOST\",\n                                \"range\": null,\n                                \"title\": \"Host-based\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enables the heap tracing API defined in esp_heap_trace.h.\\n\\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\\nSo it's best to keep it disabled unless tracing is being used.\",\n                        \"id\": \"component-config-heap-memory-debugging-heap-tracing\",\n                        \"name\": \"HEAP_TRACING_DEST\",\n                        \"title\": \"Heap tracing\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enables/disables heap tracing API.\",\n                        \"id\": \"HEAP_TRACING\",\n                        \"name\": \"HEAP_TRACING\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"HEAP_TRACING\",\n                        \"help\": \"Number of stack frames to save when tracing heap operation callers.\\n\\nMore stack frames uses more memory in the heap trace buffer (and slows down allocation), but\\ncan provide useful information.\",\n                        \"id\": \"HEAP_TRACING_STACK_DEPTH\",\n                        \"name\": \"HEAP_TRACING_STACK_DEPTH\",\n                        \"range\": null,\n                        \"title\": \"Heap tracing stack depth\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable the user to implement function hooks triggered for each successful allocation and free.\",\n                        \"id\": \"HEAP_USE_HOOKS\",\n                        \"name\": \"HEAP_USE_HOOKS\",\n                        \"range\": null,\n                        \"title\": \"Use allocation and free hooks\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!HEAP_POISONING_DISABLED\",\n                        \"help\": \"Enables tracking the task responsible for each heap allocation.\\n\\nThis function depends on heap poisoning being enabled and adds four more bytes of overhead for each block\\nallocated.\",\n                        \"id\": \"HEAP_TASK_TRACKING\",\n                        \"name\": \"HEAP_TASK_TRACKING\",\n                        \"range\": null,\n                        \"title\": \"Enable heap task tracking\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"HEAP_TRACE_HASH_MAP\",\n                                \"help\": \"Defines the number of entries in the heap trace hashmap. The bigger this number is,\\nthe bigger the hash map will be in the memory. In case the tracing mode is set to\\nHEAP_TRACE_ALL, the bigger the hashmap is, the better the performances are.\",\n                                \"id\": \"HEAP_TRACE_HASH_MAP_SIZE\",\n                                \"name\": \"HEAP_TRACE_HASH_MAP_SIZE\",\n                                \"range\": null,\n                                \"title\": \"The number of entries in the hash map\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"HEAP_TRACING_STANDALONE\",\n                        \"help\": \"Enable this flag to use a hash map to increase performance in handling\\nheap trace records.\\n\\nKeeping this as \\\"n\\\" in your project will save RAM and heap memory but will lower\\nthe performance of the heap trace in adding, retrieving and removing trace records.\\nMaking this as \\\"y\\\" in your project, you will decrease free RAM and heap memory but,\\nthe heap trace performances in adding retrieving and removing trace records will be\\nenhanced.\",\n                        \"id\": \"HEAP_TRACE_HASH_MAP\",\n                        \"name\": \"HEAP_TRACE_HASH_MAP\",\n                        \"range\": null,\n                        \"title\": \"Use hash map mechanism to access heap trace records\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"When enabled, if a memory allocation operation fails it will cause a system abort.\",\n                        \"id\": \"HEAP_ABORT_WHEN_ALLOCATION_FAILS\",\n                        \"name\": \"HEAP_ABORT_WHEN_ALLOCATION_FAILS\",\n                        \"range\": null,\n                        \"title\": \"Abort if memory allocation fails\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_HEAP_TLSF\",\n                        \"help\": \"Enable this flag to use heap functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM,\\nbut you will lose the possibility to debug this module, and some new\\nfeatures will be added and bugs will be fixed in the IDF source\\nbut cannot be synced to ROM.\",\n                        \"id\": \"HEAP_TLSF_USE_ROM_IMPL\",\n                        \"name\": \"HEAP_TLSF_USE_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use ROM implementation of heap tlsf library\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!HEAP_TLSF_USE_ROM_IMPL\",\n                        \"help\": \"Enable this flag to save up RAM space by placing the heap component in the flash memory\\n\\nNote that it is only safe to enable this configuration if no functions from esp_heap_caps.h\\nor esp_heap_trace.h are called from ISR.\",\n                        \"id\": \"HEAP_PLACE_FUNCTION_INTO_FLASH\",\n                        \"name\": \"HEAP_PLACE_FUNCTION_INTO_FLASH\",\n                        \"range\": null,\n                        \"title\": \"Force the entire heap component to be placed in flash memory\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-heap-memory-debugging\",\n                \"title\": \"Heap memory debugging\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"IEEE802154_ENABLED\",\n                        \"name\": \"IEEE802154_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IEEE802154_ENABLED\",\n                        \"help\": \"The number of 802.15.4 receive buffers\",\n                        \"id\": \"IEEE802154_RX_BUFFER_SIZE\",\n                        \"name\": \"IEEE802154_RX_BUFFER_SIZE\",\n                        \"range\": null,\n                        \"title\": \"The number of 802.15.4 receive buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice IEEE802154_CCA_MODE>\",\n                                \"help\": \"configure the CCA mode to Energy above threshold\",\n                                \"id\": \"IEEE802154_CCA_CARRIER\",\n                                \"name\": \"IEEE802154_CCA_CARRIER\",\n                                \"range\": null,\n                                \"title\": \"Carrier sense only\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice IEEE802154_CCA_MODE>\",\n                                \"help\": \"configure the CCA mode to Energy above threshold\",\n                                \"id\": \"IEEE802154_CCA_ED\",\n                                \"name\": \"IEEE802154_CCA_ED\",\n                                \"range\": null,\n                                \"title\": \"Energy above threshold\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice IEEE802154_CCA_MODE>\",\n                                \"help\": \"configure the CCA mode to Carrier sense OR energy above threshold\",\n                                \"id\": \"IEEE802154_CCA_CARRIER_OR_ED\",\n                                \"name\": \"IEEE802154_CCA_CARRIER_OR_ED\",\n                                \"range\": null,\n                                \"title\": \"Carrier sense OR energy above threshold\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice IEEE802154_CCA_MODE>\",\n                                \"help\": \"configure the CCA mode to Carrier sense AND energy above threshold\",\n                                \"id\": \"IEEE802154_CCA_CARRIER_AND_ED\",\n                                \"name\": \"IEEE802154_CCA_CARRIER_AND_ED\",\n                                \"range\": null,\n                                \"title\": \"Carrier sense AND energy above threshold\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"configure the CCA mode\",\n                        \"id\": \"component-config-ieee-802-15-4-clear-channel-assessment-cca-mode\",\n                        \"name\": \"IEEE802154_CCA_MODE\",\n                        \"title\": \"Clear Channel Assessment (CCA) mode\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"IEEE802154_CCA_MODE\",\n                        \"name\": \"IEEE802154_CCA_MODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"set the CCA threshold, in dB\",\n                        \"id\": \"IEEE802154_CCA_THRESHOLD\",\n                        \"name\": \"IEEE802154_CCA_THRESHOLD\",\n                        \"range\": [\n                            -120,\n                            0\n                        ],\n                        \"title\": \"CCA detection threshold\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"set the pending table size\",\n                        \"id\": \"IEEE802154_PENDING_TABLE_SIZE\",\n                        \"name\": \"IEEE802154_PENDING_TABLE_SIZE\",\n                        \"range\": [\n                            1,\n                            100\n                        ],\n                        \"title\": \"Pending table size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable IEEE802154 multi-pan\",\n                        \"id\": \"IEEE802154_MULTI_PAN_ENABLE\",\n                        \"name\": \"IEEE802154_MULTI_PAN_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable multi-pan feature for frame filter\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option increases throughput by ~5% at the expense of ~2.1k\\nIRAM code size increase.\",\n                        \"id\": \"IEEE802154_TIMING_OPTIMIZATION\",\n                        \"name\": \"IEEE802154_TIMING_OPTIMIZATION\",\n                        \"range\": null,\n                        \"title\": \"Enable throughput optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"PM_ENABLE && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP\",\n                        \"help\": \"Enabling this option allows the IEEE802.15.4 module to be powered down during automatic light sleep,\\nwhich reduces current consumption.\",\n                        \"id\": \"IEEE802154_SLEEP_ENABLE\",\n                        \"name\": \"IEEE802154_SLEEP_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable IEEE802154 light sleep\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IEEE802154_DEBUG\",\n                                \"help\": \"Enabling this option to add some probe codes in the driver, and these informations\\nwill be printed when assert.\",\n                                \"id\": \"IEEE802154_ASSERT\",\n                                \"name\": \"IEEE802154_ASSERT\",\n                                \"range\": null,\n                                \"title\": \"Enrich the assert information with IEEE802154 state and event\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IEEE802154_RECORD_EVENT\",\n                                        \"help\": \"set the record event table size\",\n                                        \"id\": \"IEEE802154_RECORD_EVENT_SIZE\",\n                                        \"name\": \"IEEE802154_RECORD_EVENT_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Record event table size\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"IEEE802154_DEBUG\",\n                                \"help\": \"Enabling this option to record event, when assert, the recorded event will be printed.\",\n                                \"id\": \"IEEE802154_RECORD_EVENT\",\n                                \"name\": \"IEEE802154_RECORD_EVENT\",\n                                \"range\": null,\n                                \"title\": \"Enable record event information for debugging\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IEEE802154_RECORD_STATE\",\n                                        \"help\": \"set the record state table size\",\n                                        \"id\": \"IEEE802154_RECORD_STATE_SIZE\",\n                                        \"name\": \"IEEE802154_RECORD_STATE_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Record state table size\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"IEEE802154_DEBUG\",\n                                \"help\": \"Enabling this option to record state, when assert, the recorded state will be printed.\",\n                                \"id\": \"IEEE802154_RECORD_STATE\",\n                                \"name\": \"IEEE802154_RECORD_STATE\",\n                                \"range\": null,\n                                \"title\": \"Enable record state information for debugging\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IEEE802154_RECORD_CMD\",\n                                        \"help\": \"set the record command table size\",\n                                        \"id\": \"IEEE802154_RECORD_CMD_SIZE\",\n                                        \"name\": \"IEEE802154_RECORD_CMD_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Record command table size\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"IEEE802154_DEBUG\",\n                                \"help\": \"Enabling this option to record the command, when assert, the recorded\\ncommand will be printed.\",\n                                \"id\": \"IEEE802154_RECORD_CMD\",\n                                \"name\": \"IEEE802154_RECORD_CMD\",\n                                \"range\": null,\n                                \"title\": \"Enable record command information for debugging\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"IEEE802154_RECORD_ABORT\",\n                                        \"help\": \"set the record abort table size\",\n                                        \"id\": \"IEEE802154_RECORD_ABORT_SIZE\",\n                                        \"name\": \"IEEE802154_RECORD_ABORT_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Record abort table size\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"IEEE802154_DEBUG\",\n                                \"help\": \"Enabling this option to record the abort, when assert, the recorded\\nabort will be printed.\",\n                                \"id\": \"IEEE802154_RECORD_ABORT\",\n                                \"name\": \"IEEE802154_RECORD_ABORT\",\n                                \"range\": null,\n                                \"title\": \"Enable record abort information for debugging\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows different kinds of IEEE802154 debug output.\\nAll IEEE802154 debug features increase the size of the final binary.\",\n                        \"id\": \"IEEE802154_DEBUG\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"IEEE802154_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Enable IEEE802154 Debug\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-ieee-802-15-4\",\n                \"title\": \"IEEE 802.15.4\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_NONE\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_NONE\",\n                                \"range\": null,\n                                \"title\": \"No output\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_ERROR\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_WARN\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_INFO\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_DEBUG\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_DEFAULT_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_DEFAULT_LEVEL_VERBOSE\",\n                                \"name\": \"LOG_DEFAULT_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Specify how much output to see in logs by default.\\nYou can set lower verbosity level at runtime using\\nesp_log_level_set function.\\n\\nBy default, this setting limits which log statements\\nare compiled into the program. For example, selecting\\n\\\"Warning\\\" would mean that changing log level to \\\"Debug\\\"\\nat runtime will not be possible. To allow increasing log\\nlevel above the default at runtime, see the next option.\",\n                        \"id\": \"component-config-log-output-default-log-verbosity\",\n                        \"name\": \"LOG_DEFAULT_LEVEL\",\n                        \"title\": \"Default log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"LOG_DEFAULT_LEVEL\",\n                        \"name\": \"LOG_DEFAULT_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_EQUALS_DEFAULT\",\n                                \"name\": \"LOG_MAXIMUM_EQUALS_DEFAULT\",\n                                \"range\": null,\n                                \"title\": \"Same as default\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 1 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_ERROR\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_ERROR\",\n                                \"range\": null,\n                                \"title\": \"Error\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 2 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_WARN\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_WARN\",\n                                \"range\": null,\n                                \"title\": \"Warning\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 3 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_INFO\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_INFO\",\n                                \"range\": null,\n                                \"title\": \"Info\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 4 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_DEBUG\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LOG_DEFAULT_LEVEL < 5 && <choice LOG_MAXIMUM_LEVEL>\",\n                                \"help\": null,\n                                \"id\": \"LOG_MAXIMUM_LEVEL_VERBOSE\",\n                                \"name\": \"LOG_MAXIMUM_LEVEL_VERBOSE\",\n                                \"range\": null,\n                                \"title\": \"Verbose\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This config option sets the highest log verbosity that it's possible to select\\nat runtime by calling esp_log_level_set(). This level may be higher than\\nthe default verbosity level which is set when the app starts up.\\n\\nThis can be used enable debugging output only at a critical point, for a particular\\ntag, or to minimize startup time but then enable more logs once the firmware has\\nloaded.\\n\\nNote that increasing the maximum available log level will increase the firmware\\nbinary size.\\n\\nThis option only applies to logging from the app, the bootloader log level is\\nfixed at compile time to the separate \\\"Bootloader log verbosity\\\" setting.\",\n                        \"id\": \"component-config-log-output-maximum-log-verbosity\",\n                        \"name\": \"LOG_MAXIMUM_LEVEL\",\n                        \"title\": \"Maximum log verbosity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"LOG_MAXIMUM_LEVEL\",\n                        \"name\": \"LOG_MAXIMUM_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable ANSI terminal color codes in bootloader output.\\n\\nIn order to view these, your terminal program must support ANSI color codes.\",\n                        \"id\": \"LOG_COLORS\",\n                        \"name\": \"LOG_COLORS\",\n                        \"range\": null,\n                        \"title\": \"Use ANSI terminal colors in log output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_TIMESTAMP_SOURCE>\",\n                                \"help\": null,\n                                \"id\": \"LOG_TIMESTAMP_SOURCE_RTOS\",\n                                \"name\": \"LOG_TIMESTAMP_SOURCE_RTOS\",\n                                \"range\": null,\n                                \"title\": \"Milliseconds Since Boot\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LOG_TIMESTAMP_SOURCE>\",\n                                \"help\": null,\n                                \"id\": \"LOG_TIMESTAMP_SOURCE_SYSTEM\",\n                                \"name\": \"LOG_TIMESTAMP_SOURCE_SYSTEM\",\n                                \"range\": null,\n                                \"title\": \"System Time\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Choose what sort of timestamp is displayed in the log output:\\n\\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\\n  by the tick period. This time will reset after a software reboot.\\n  e.g. (90000)\\n\\n- System time is taken from POSIX time functions which use the chip's\\n  RTC and high resoultion timers to maintain an accurate time. The system time is\\n  initialized to 0 on startup, it can be set with an SNTP sync, or with\\n  POSIX time functions. This time will not reset after a software reboot.\\n  e.g. (00:01:30.000)\\n\\n- NOTE: Currently this will not get used in logging from binary blobs\\n  (i.e WiFi & Bluetooth libraries), these will always print\\n  milliseconds since boot.\",\n                        \"id\": \"component-config-log-output-log-timestamps\",\n                        \"name\": \"LOG_TIMESTAMP_SOURCE\",\n                        \"title\": \"Log Timestamps\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-log-output\",\n                \"title\": \"Log output\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The default name this device will report to other devices on the network.\\nCould be updated at runtime with esp_netif_set_hostname()\",\n                        \"id\": \"LWIP_LOCAL_HOSTNAME\",\n                        \"name\": \"LWIP_LOCAL_HOSTNAME\",\n                        \"range\": null,\n                        \"title\": \"Local netif hostname\",\n                        \"type\": \"string\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, standard POSIX APIs: if_indextoname(), if_nametoindex()\\ncould be used to convert network interface index to name\\ninstead of IDF specific esp-netif APIs (such as esp_netif_get_netif_impl_name())\",\n                        \"id\": \"LWIP_NETIF_API\",\n                        \"name\": \"LWIP_NETIF_API\",\n                        \"range\": null,\n                        \"title\": \"Enable usage of standard POSIX APIs in LWIP\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"LWIP tcpip task priority. In case of high throughput, this parameter\\ncould be changed up to (configMAX_PRIORITIES-1).\",\n                        \"id\": \"LWIP_TCPIP_TASK_PRIO\",\n                        \"name\": \"LWIP_TCPIP_TASK_PRIO\",\n                        \"range\": [\n                            1,\n                            24\n                        ],\n                        \"title\": \"LWIP TCP/IP Task Priority\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_TCPIP_CORE_LOCKING\",\n                                \"help\": \"when LWIP_TCPIP_CORE_LOCKING is enabled, this lets tcpip_input() grab the\\nmutex for input packets as well, instead of allocating a message and passing\\nit to tcpip_thread.\",\n                                \"id\": \"LWIP_TCPIP_CORE_LOCKING_INPUT\",\n                                \"name\": \"LWIP_TCPIP_CORE_LOCKING_INPUT\",\n                                \"range\": null,\n                                \"title\": \"Enable tcpip core locking input\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If Enable tcpip core locking,Creates a global mutex that is held\\nduring TCPIP thread operations.Can be locked by client code to perform\\nlwIP operations without changing into TCPIP thread using callbacks.\\nSee LOCK_TCPIP_CORE() and UNLOCK_TCPIP_CORE().\\n\\nIf disable tcpip core locking,TCP IP will perform tasks through context switching\",\n                        \"id\": \"LWIP_TCPIP_CORE_LOCKING\",\n                        \"name\": \"LWIP_TCPIP_CORE_LOCKING\",\n                        \"range\": null,\n                        \"title\": \"Enable tcpip core locking\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable to check that the project does not violate lwip thread safety.\\nIf enabled, all lwip functions that require thread awareness run an assertion\\nto verify that the TCP/IP core functionality is either locked or accessed\\nfrom the correct thread.\",\n                        \"id\": \"LWIP_CHECK_THREAD_SAFETY\",\n                        \"name\": \"LWIP_CHECK_THREAD_SAFETY\",\n                        \"range\": null,\n                        \"title\": \"Checks that lwip API runs in expected context\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, standard API such as gethostbyname\\nsupport .local addresses by sending one shot multicast mDNS\\nquery\",\n                        \"id\": \"LWIP_DNS_SUPPORT_MDNS_QUERIES\",\n                        \"name\": \"LWIP_DNS_SUPPORT_MDNS_QUERIES\",\n                        \"range\": null,\n                        \"title\": \"Enable mDNS queries in resolving host name\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, all traffic from layer2(WIFI Driver) will be\\ncopied to a new buffer before sending it to layer3(LWIP stack), freeing\\nthe layer2 buffer.\\nPlease be notified that the total layer2 receiving buffer is fixed and\\nESP32 currently supports 25 layer2 receiving buffer, when layer2 buffer\\nruns out of memory, then the incoming packets will be dropped in hardware.\\nThe layer3 buffer is allocated from the heap, so the total layer3 receiving\\nbuffer depends on the available heap size, when heap runs out of memory,\\nno copy will be sent to layer3 and packet will be dropped in layer2.\\nPlease make sure you fully understand the impact of this feature before\\nenabling it.\",\n                        \"id\": \"LWIP_L2_TO_L3_COPY\",\n                        \"name\": \"LWIP_L2_TO_L3_COPY\",\n                        \"range\": null,\n                        \"title\": \"Enable copy between Layer2 and Layer3 packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, some functions relating to RX/TX in LWIP will be\\nput into IRAM, it can improve UDP/TCP throughput by >10% for single core mode,\\nit doesn't help too much for dual core mode. On the other hand, it needs about\\n10KB IRAM for these optimizations.\\n\\nIf this feature is disabled, all lwip functions will be put into FLASH.\",\n                        \"id\": \"LWIP_IRAM_OPTIMIZATION\",\n                        \"name\": \"LWIP_IRAM_OPTIMIZATION\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP IRAM optimization\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, some tcp part functions relating to RX/TX in LWIP will be\\nput into IRAM, it can improve TCP throughput. On the other hand, it needs about 17KB\\nIRAM for these optimizations.\",\n                        \"id\": \"LWIP_EXTRA_IRAM_OPTIMIZATION\",\n                        \"name\": \"LWIP_EXTRA_IRAM_OPTIMIZATION\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP IRAM optimization for TCP part\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this feature is enabled, IGMP and MLD6 timers will be activated only\\nwhen joining groups or receiving QUERY packets.\\n\\nThis feature will reduce the power consumption for applications which do not\\nuse IGMP and MLD6.\",\n                        \"id\": \"LWIP_TIMERS_ONDEMAND\",\n                        \"name\": \"LWIP_TIMERS_ONDEMAND\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP Timers on demand\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"This option is used to disable the Network Discovery Protocol (NDP) if it is not required.\\nPlease use this option with caution, as the NDP is essential for IPv6 functionality within a local network.\",\n                        \"id\": \"LWIP_ND6\",\n                        \"name\": \"LWIP_ND6\",\n                        \"range\": null,\n                        \"title\": \"LWIP NDP6 Enable/Disable\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Sockets take up a certain amount of memory, and allowing fewer\\nsockets to be open at the same time conserves memory. Specify\\nthe maximum amount of sockets here. The valid value is from 1\\nto 16.\",\n                        \"id\": \"LWIP_MAX_SOCKETS\",\n                        \"name\": \"LWIP_MAX_SOCKETS\",\n                        \"range\": [\n                            1,\n                            16\n                        ],\n                        \"title\": \"Max number of open sockets\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option is deprecated. Do not use this option, use VFS_SUPPORT_SELECT instead.\",\n                        \"id\": \"LWIP_USE_ONLY_LWIP_SELECT\",\n                        \"name\": \"LWIP_USE_ONLY_LWIP_SELECT\",\n                        \"range\": null,\n                        \"title\": \"Support LWIP socket select() only (DEPRECATED)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows SO_LINGER processing.\\nl_onoff = 1,l_linger can set the timeout.\\n\\nIf l_linger=0, When a connection is closed, TCP will terminate the connection.\\nThis means that TCP will discard any data packets stored in the socket send buffer\\nand send an RST to the peer.\\n\\nIf l_linger!=0,Then closesocket() calls to block the process until\\nthe remaining data packets has been sent or timed out.\",\n                        \"id\": \"LWIP_SO_LINGER\",\n                        \"name\": \"LWIP_SO_LINGER\",\n                        \"range\": null,\n                        \"title\": \"Enable SO_LINGER processing\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_SO_REUSE\",\n                                \"help\": \"Enabling this option means that any incoming broadcast or multicast\\npacket will be copied to all of the local sockets that it matches\\n(may be more than one if SO_REUSEADDR is set on the socket.)\\n\\nThis increases memory overhead as the packets need to be copied,\\nhowever they are only copied per matching socket. You can safely\\ndisable it if you don't plan to receive broadcast or multicast\\ntraffic on more than one socket at a time.\",\n                                \"id\": \"LWIP_SO_REUSE_RXTOALL\",\n                                \"name\": \"LWIP_SO_REUSE_RXTOALL\",\n                                \"range\": null,\n                                \"title\": \"SO_REUSEADDR copies broadcast/multicast to all matches\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows binding to a port which remains in\\nTIME_WAIT.\",\n                        \"id\": \"LWIP_SO_REUSE\",\n                        \"name\": \"LWIP_SO_REUSE\",\n                        \"range\": null,\n                        \"title\": \"Enable SO_REUSEADDR option\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows checking for available data on a netconn.\",\n                        \"id\": \"LWIP_SO_RCVBUF\",\n                        \"name\": \"LWIP_SO_RCVBUF\",\n                        \"range\": null,\n                        \"title\": \"Enable SO_RCVBUF option\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows checking for the destination address\\nof a received IPv4 Packet.\",\n                        \"id\": \"LWIP_NETBUF_RECVINFO\",\n                        \"name\": \"LWIP_NETBUF_RECVINFO\",\n                        \"range\": null,\n                        \"title\": \"Enable IP_PKTINFO option\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Enabling this option allows fragmenting outgoing IP4 packets if their size\\nexceeds MTU.\",\n                        \"id\": \"LWIP_IP4_FRAG\",\n                        \"name\": \"LWIP_IP4_FRAG\",\n                        \"range\": null,\n                        \"title\": \"Enable fragment outgoing IP4 packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"Enabling this option allows fragmenting outgoing IP6 packets if their size\\nexceeds MTU.\",\n                        \"id\": \"LWIP_IP6_FRAG\",\n                        \"name\": \"LWIP_IP6_FRAG\",\n                        \"range\": null,\n                        \"title\": \"Enable fragment outgoing IP6 packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Enabling this option allows reassemblying incoming fragmented IP4 packets.\",\n                        \"id\": \"LWIP_IP4_REASSEMBLY\",\n                        \"name\": \"LWIP_IP4_REASSEMBLY\",\n                        \"range\": null,\n                        \"title\": \"Enable reassembly incoming fragmented IP4 packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"Enabling this option allows reassemblying incoming fragmented IP6 packets.\",\n                        \"id\": \"LWIP_IP6_REASSEMBLY\",\n                        \"name\": \"LWIP_IP6_REASSEMBLY\",\n                        \"range\": null,\n                        \"title\": \"Enable reassembly incoming fragmented IP6 packets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set the maximum amount of pbufs waiting to be reassembled.\",\n                        \"id\": \"LWIP_IP_REASS_MAX_PBUFS\",\n                        \"name\": \"LWIP_IP_REASS_MAX_PBUFS\",\n                        \"range\": [\n                            10,\n                            100\n                        ],\n                        \"title\": \"The maximum amount of pbufs waiting to be reassembled\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_IP_FORWARD\",\n                                \"help\": \"Enabling this option allows Network Address and Port Translation.\",\n                                \"id\": \"LWIP_IPV4_NAPT\",\n                                \"name\": \"LWIP_IPV4_NAPT\",\n                                \"range\": null,\n                                \"title\": \"Enable NAT (new/experimental)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows packets forwarding across multiple interfaces.\",\n                        \"id\": \"LWIP_IP_FORWARD\",\n                        \"name\": \"LWIP_IP_FORWARD\",\n                        \"range\": null,\n                        \"title\": \"Enable IP forwarding\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows LWIP statistics\",\n                        \"id\": \"LWIP_STATS\",\n                        \"name\": \"LWIP_STATS\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP statistics\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ESP_GRATUITOUS_ARP\",\n                                \"help\": \"Set the timer interval for gratuitous ARP. The default value is 60s\",\n                                \"id\": \"LWIP_GARP_TMR_INTERVAL\",\n                                \"name\": \"LWIP_GARP_TMR_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"GARP timer interval(seconds)\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Enable this option allows to send gratuitous ARP periodically.\\n\\nThis option solve the compatibility issues.If the ARP table of the AP is old, and the AP\\ndoesn't send ARP request to update it's ARP table, this will lead to the STA sending IP packet fail.\\nThus we send gratuitous ARP periodically to let AP update it's ARP table.\",\n                        \"id\": \"LWIP_ESP_GRATUITOUS_ARP\",\n                        \"name\": \"LWIP_ESP_GRATUITOUS_ARP\",\n                        \"range\": null,\n                        \"title\": \"Send gratuitous ARP periodically\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ESP_MLDV6_REPORT\",\n                                \"help\": \"Set the timer interval for mldv6 report. The default value is 30s\",\n                                \"id\": \"LWIP_MLDV6_TMR_INTERVAL\",\n                                \"name\": \"LWIP_MLDV6_TMR_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"mldv6 report timer interval(seconds)\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"Enable this option allows to send mldv6 report periodically.\\n\\nThis option solve the issue that failed to receive multicast data.\\nSome routers fail to forward multicast packets.\\nTo solve this problem, send multicast mdlv6 report to routers regularly.\",\n                        \"id\": \"LWIP_ESP_MLDV6_REPORT\",\n                        \"name\": \"LWIP_ESP_MLDV6_REPORT\",\n                        \"range\": null,\n                        \"title\": \"Send mldv6 report periodically\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set TCPIP task receive mail box size. Generally bigger value means higher throughput\\nbut more memory. The value should be bigger than UDP/TCP mail box size.\",\n                        \"id\": \"LWIP_TCPIP_RECVMBOX_SIZE\",\n                        \"name\": \"LWIP_TCPIP_RECVMBOX_SIZE\",\n                        \"range\": [\n                            6,\n                            64\n                        ],\n                        \"title\": \"TCPIP task receive mail box size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Enabling this option performs a check (via ARP request) if the offered IP address\\nis not already in use by another host on the network.\",\n                        \"id\": \"LWIP_DHCP_DOES_ARP_CHECK\",\n                        \"name\": \"LWIP_DHCP_DOES_ARP_CHECK\",\n                        \"range\": null,\n                        \"title\": \"DHCP: Perform ARP check on any offered address\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"This option could be used to disable DHCP client identification with its MAC address.\\n(Client id is used by DHCP servers to uniquely identify clients and are included\\nin the DHCP packets as an option 61)\\nSet this option to \\\"y\\\" in order to exclude option 61 from DHCP packets.\",\n                        \"id\": \"LWIP_DHCP_DISABLE_CLIENT_ID\",\n                        \"name\": \"LWIP_DHCP_DISABLE_CLIENT_ID\",\n                        \"range\": null,\n                        \"title\": \"DHCP: Disable Use of HW address as client identification\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"This option could be used to disable DHCP client vendor class identification.\\nSet this option to \\\"y\\\" in order to exclude option 60 from DHCP packets.\",\n                        \"id\": \"LWIP_DHCP_DISABLE_VENDOR_CLASS_ID\",\n                        \"name\": \"LWIP_DHCP_DISABLE_VENDOR_CLASS_ID\",\n                        \"range\": null,\n                        \"title\": \"DHCP: Disable Use of vendor class identification\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"When this option is enabled, DHCP client tries to re-obtain last valid IP address obtained from DHCP\\nserver. Last valid DHCP configuration is stored in nvs and restored after reset/power-up. If IP is still\\navailable, there is no need for sending discovery message to DHCP server and save some time.\",\n                        \"id\": \"LWIP_DHCP_RESTORE_LAST_IP\",\n                        \"name\": \"LWIP_DHCP_RESTORE_LAST_IP\",\n                        \"range\": null,\n                        \"title\": \"DHCP: Restore last IP obtained from DHCP server\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Set total length of outgoing DHCP option msg. Generally bigger value means it can carry more\\noptions and values. If your code meets LWIP_ASSERT due to option value is too long.\\nPlease increase the LWIP_DHCP_OPTIONS_LEN value.\",\n                        \"id\": \"LWIP_DHCP_OPTIONS_LEN\",\n                        \"name\": \"LWIP_DHCP_OPTIONS_LEN\",\n                        \"range\": [\n                            68,\n                            255\n                        ],\n                        \"title\": \"DHCP total option length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Number of clients that may store data in client_data member array of struct netif.\",\n                        \"id\": \"LWIP_NUM_NETIF_CLIENT_DATA\",\n                        \"name\": \"LWIP_NUM_NETIF_CLIENT_DATA\",\n                        \"range\": [\n                            0,\n                            256\n                        ],\n                        \"title\": \"Number of clients store data in netif\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set DHCP coarse interval in seconds.\\nA higher value will be less precise but cost less power consumption.\",\n                        \"id\": \"LWIP_DHCP_COARSE_TIMER_SECS\",\n                        \"name\": \"LWIP_DHCP_COARSE_TIMER_SECS\",\n                        \"range\": [\n                            1,\n                            10\n                        ],\n                        \"title\": \"DHCP coarse timer interval(s)\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"LWIP_DHCPS\",\n                                        \"help\": \"The DHCP server is calculating lease time multiplying the sent\\nand received times by this number of seconds per unit.\\nThe default is 60, that equals one minute.\",\n                                        \"id\": \"LWIP_DHCPS_LEASE_UNIT\",\n                                        \"name\": \"LWIP_DHCPS_LEASE_UNIT\",\n                                        \"range\": [\n                                            1,\n                                            3600\n                                        ],\n                                        \"title\": \"Multiplier for lease time, in seconds\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"LWIP_DHCPS\",\n                                        \"help\": \"The maximum number of DHCP clients that are connected to the server.\\nAfter this number is exceeded, DHCP server removes of the oldest device\\nfrom it's address pool, without notification.\",\n                                        \"id\": \"LWIP_DHCPS_MAX_STATION_NUM\",\n                                        \"name\": \"LWIP_DHCPS_MAX_STATION_NUM\",\n                                        \"range\": [\n                                            1,\n                                            64\n                                        ],\n                                        \"title\": \"Maximum number of stations\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"LWIP_IPV4\",\n                                \"help\": \"Enabling this option allows the device to run the DHCP server\\n(to dynamically assign IPv4 addresses to clients).\",\n                                \"id\": \"LWIP_DHCPS\",\n                                \"name\": \"LWIP_DHCPS\",\n                                \"range\": null,\n                                \"title\": \"DHCPS: Enable IPv4 Dynamic Host Configuration Protocol Server (DHCPS)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-dhcp-server\",\n                        \"title\": \"DHCP server\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_AUTOIP\",\n                                \"help\": \"DHCP client will send this many probes before self-assigning a\\nlink local address.\\n\\nFrom LWIP help: \\\"This can be set as low as 1 to get an AutoIP\\naddress very quickly, but you should be prepared to handle a\\nchanging IP address when DHCP overrides AutoIP.\\\" (In the case of\\nESP-IDF, this means multiple SYSTEM_EVENT_STA_GOT_IP events.)\",\n                                \"id\": \"LWIP_AUTOIP_TRIES\",\n                                \"name\": \"LWIP_AUTOIP_TRIES\",\n                                \"range\": null,\n                                \"title\": \"DHCP Probes before self-assigning IPv4 LL address\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_AUTOIP\",\n                                \"help\": \"If the AUTOIP functionality detects this many IP conflicts while\\nself-assigning an address, it will go into a rate limited mode.\",\n                                \"id\": \"LWIP_AUTOIP_MAX_CONFLICTS\",\n                                \"name\": \"LWIP_AUTOIP_MAX_CONFLICTS\",\n                                \"range\": null,\n                                \"title\": \"Max IP conflicts before rate limiting\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_AUTOIP\",\n                                \"help\": \"If rate limiting self-assignment requests, wait this long between\\neach request.\",\n                                \"id\": \"LWIP_AUTOIP_RATE_LIMIT_INTERVAL\",\n                                \"name\": \"LWIP_AUTOIP_RATE_LIMIT_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"Rate limited interval (seconds)\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"LWIP_IPV4\",\n                        \"help\": \"Enabling this option allows the device to self-assign an address\\nin the 169.256/16 range if none is assigned statically or via DHCP.\\n\\nSee RFC 3927.\",\n                        \"id\": \"LWIP_AUTOIP\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"LWIP_AUTOIP\",\n                        \"range\": null,\n                        \"title\": \"Enable IPV4 Link-Local Addressing (AUTOIP)\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable IPv4 stack. If you want to use IPv6 only TCP/IP stack, disable this.\",\n                        \"id\": \"LWIP_IPV4\",\n                        \"name\": \"LWIP_IPV4\",\n                        \"range\": null,\n                        \"title\": \"Enable IPv4\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Enabling this option allows the devices to IPV6 stateless address autoconfiguration (SLAAC).\\n\\nSee RFC 4862.\",\n                                \"id\": \"LWIP_IPV6_AUTOCONFIG\",\n                                \"name\": \"LWIP_IPV6_AUTOCONFIG\",\n                                \"range\": null,\n                                \"title\": \"Enable IPV6 stateless address autoconfiguration (SLAAC)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"The maximum number of IPv6 addresses on each interface. Any additional\\naddresses will be discarded.\",\n                                \"id\": \"LWIP_IPV6_NUM_ADDRESSES\",\n                                \"name\": \"LWIP_IPV6_NUM_ADDRESSES\",\n                                \"range\": null,\n                                \"title\": \"Number of IPv6 addresses on each network interface\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Forwarding IPv6 packets between interfaces is only required when acting as\\na router.\",\n                                \"id\": \"LWIP_IPV6_FORWARD\",\n                                \"name\": \"LWIP_IPV6_FORWARD\",\n                                \"range\": null,\n                                \"title\": \"Enable IPv6 forwarding between interfaces\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable IPv6 function. If not use IPv6 function, set this option to n.\\nIf disabling LWIP_IPV6 then some other components (coap and asio) will\\nno longer be available.\",\n                        \"id\": \"LWIP_IPV6\",\n                        \"name\": \"LWIP_IPV6\",\n                        \"range\": null,\n                        \"title\": \"Enable IPv6\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6_AUTOCONFIG\",\n                        \"help\": \"Use IPv6 Router Advertisement Recursive DNS Server Option (as per RFC 6106) to\\ncopy a defined maximum number of DNS servers to the DNS module.\\nSet this option to a number of desired DNS servers advertised in the RA protocol.\\nThis feature is disabled when set to 0.\",\n                        \"id\": \"LWIP_IPV6_RDNSS_MAX_DNS_SERVERS\",\n                        \"name\": \"LWIP_IPV6_RDNSS_MAX_DNS_SERVERS\",\n                        \"range\": null,\n                        \"title\": \"Use IPv6 Router Advertisement Recursive DNS Server Option\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6_AUTOCONFIG\",\n                        \"help\": \"Enable DHCPv6 for IPv6 stateless address autoconfiguration.\\nNote that the dhcpv6 client has to be started using dhcp6_enable_stateless(netif);\\nNote that the stateful address autoconfiguration is not supported.\",\n                        \"id\": \"LWIP_IPV6_DHCP6\",\n                        \"name\": \"LWIP_IPV6_DHCP6\",\n                        \"range\": null,\n                        \"title\": \"Enable DHCPv6 stateless address autoconfiguration\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable callbacks when the network interface is up/down and addresses are changed.\",\n                        \"id\": \"LWIP_NETIF_STATUS_CALLBACK\",\n                        \"name\": \"LWIP_NETIF_STATUS_CALLBACK\",\n                        \"range\": null,\n                        \"title\": \"Enable status callback for network interfaces\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_NETIF_LOOPBACK\",\n                                \"help\": \"Configure the maximum number of packets which can be queued for\\nloopback on a given interface. Reducing this number may cause packets\\nto be dropped, but will avoid filling memory with queued packet data.\",\n                                \"id\": \"LWIP_LOOPBACK_MAX_PBUFS\",\n                                \"name\": \"LWIP_LOOPBACK_MAX_PBUFS\",\n                                \"range\": [\n                                    0,\n                                    16\n                                ],\n                                \"title\": \"Max queued loopback packets per interface\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option means that if a packet is sent with a destination\\naddress equal to the interface's own IP address, it will \\\"loop back\\\" and\\nbe received by this interface.\\nDisabling this option disables support of loopback interface in lwIP\",\n                        \"id\": \"LWIP_NETIF_LOOPBACK\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"LWIP_NETIF_LOOPBACK\",\n                        \"range\": null,\n                        \"title\": \"Support per-interface loopback\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The maximum number of simultaneously active TCP\\nconnections. The practical maximum limit is\\ndetermined by available heap memory at runtime.\\n\\nChanging this value by itself does not substantially\\nchange the memory usage of LWIP, except for preventing\\nnew TCP connections after the limit is reached.\",\n                                \"id\": \"LWIP_MAX_ACTIVE_TCP\",\n                                \"name\": \"LWIP_MAX_ACTIVE_TCP\",\n                                \"range\": [\n                                    1,\n                                    1024\n                                ],\n                                \"title\": \"Maximum active TCP Connections\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The maximum number of simultaneously listening TCP\\nconnections. The practical maximum limit is\\ndetermined by available heap memory at runtime.\\n\\nChanging this value by itself does not substantially\\nchange the memory usage of LWIP, except for preventing\\nnew listening TCP connections after the limit is reached.\",\n                                \"id\": \"LWIP_MAX_LISTENING_TCP\",\n                                \"name\": \"LWIP_MAX_LISTENING_TCP\",\n                                \"range\": [\n                                    1,\n                                    1024\n                                ],\n                                \"title\": \"Maximum listening TCP Connections\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Speed up the TCP retransmission interval. If disabled,\\nit is recommended to change the number of SYN retransmissions to 6,\\nand TCP initial rto time to 3000.\",\n                                \"id\": \"LWIP_TCP_HIGH_SPEED_RETRANSMISSION\",\n                                \"name\": \"LWIP_TCP_HIGH_SPEED_RETRANSMISSION\",\n                                \"range\": null,\n                                \"title\": \"TCP high speed retransmissions\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum number of retransmissions of data segments.\",\n                                \"id\": \"LWIP_TCP_MAXRTX\",\n                                \"name\": \"LWIP_TCP_MAXRTX\",\n                                \"range\": [\n                                    3,\n                                    12\n                                ],\n                                \"title\": \"Maximum number of retransmissions of data segments\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum number of retransmissions of SYN segments.\",\n                                \"id\": \"LWIP_TCP_SYNMAXRTX\",\n                                \"name\": \"LWIP_TCP_SYNMAXRTX\",\n                                \"range\": [\n                                    3,\n                                    12\n                                ],\n                                \"title\": \"Maximum number of retransmissions of SYN segments\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum segment size for TCP transmission.\\n\\nCan be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.\\nIPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460\\nIPv6 TCP_MSS Range: 1220<= TCP_mSS <= 1440\",\n                                \"id\": \"LWIP_TCP_MSS\",\n                                \"name\": \"LWIP_TCP_MSS\",\n                                \"range\": [\n                                    536,\n                                    1460\n                                ],\n                                \"title\": \"Maximum Segment Size (MSS)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set TCP timer interval in milliseconds.\\n\\nCan be used to speed connections on bad networks.\\nA lower value will redeliver unacked packets faster.\",\n                                \"id\": \"LWIP_TCP_TMR_INTERVAL\",\n                                \"name\": \"LWIP_TCP_TMR_INTERVAL\",\n                                \"range\": null,\n                                \"title\": \"TCP timer interval(ms)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum segment lifetime in milliseconds.\",\n                                \"id\": \"LWIP_TCP_MSL\",\n                                \"name\": \"LWIP_TCP_MSL\",\n                                \"range\": null,\n                                \"title\": \"Maximum segment lifetime (MSL)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum segment lifetime in milliseconds.\",\n                                \"id\": \"LWIP_TCP_FIN_WAIT_TIMEOUT\",\n                                \"name\": \"LWIP_TCP_FIN_WAIT_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Maximum FIN segment lifetime\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set default send buffer size for new TCP sockets.\\n\\nPer-socket send buffer size can be changed at runtime\\nwith lwip_setsockopt(s, TCP_SNDBUF, ...).\\n\\nThis value must be at least 2x the MSS size, and the default\\nis 4x the default MSS size.\\n\\nSetting a smaller default SNDBUF size can save some RAM, but\\nwill decrease performance.\",\n                                \"id\": \"LWIP_TCP_SND_BUF_DEFAULT\",\n                                \"name\": \"LWIP_TCP_SND_BUF_DEFAULT\",\n                                \"range\": [\n                                    2440,\n                                    65535\n                                ],\n                                \"title\": \"Default send buffer size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set default TCP receive window size for new TCP sockets.\\n\\nPer-socket receive window size can be changed at runtime\\nwith lwip_setsockopt(s, TCP_WINDOW, ...).\\n\\nSetting a smaller default receive window size can save some RAM,\\nbut will significantly decrease performance.\",\n                                \"id\": \"LWIP_TCP_WND_DEFAULT\",\n                                \"name\": \"LWIP_TCP_WND_DEFAULT\",\n                                \"range\": [\n                                    2440,\n                                    65535\n                                ],\n                                \"title\": \"Default receive window size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set TCP receive mail box size. Generally bigger value means higher throughput\\nbut more memory. The recommended value is: LWIP_TCP_WND_DEFAULT/TCP_MSS + 2, e.g. if\\nLWIP_TCP_WND_DEFAULT=14360, TCP_MSS=1436, then the recommended receive mail box size is\\n(14360/1436 + 2) = 12.\\n\\nTCP receive mail box is a per socket mail box, when the application receives packets\\nfrom TCP socket, LWIP core firstly posts the packets to TCP receive mail box and the\\napplication then fetches the packets from mail box. It means LWIP can caches maximum\\nLWIP_TCP_RECCVMBOX_SIZE packets for each TCP socket, so the maximum possible cached TCP packets\\nfor all TCP sockets is LWIP_TCP_RECCVMBOX_SIZE multiples the maximum TCP socket number. In other\\nwords, the bigger LWIP_TCP_RECVMBOX_SIZE means more memory.\\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\\nreceive mail box is big enough to avoid packet drop between LWIP core and application.\",\n                                \"id\": \"LWIP_TCP_RECVMBOX_SIZE\",\n                                \"name\": \"LWIP_TCP_RECVMBOX_SIZE\",\n                                \"range\": [\n                                    6,\n                                    64\n                                ],\n                                \"title\": \"Default TCP receive mail box size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"LWIP_TCP_QUEUE_OOSEQ\",\n                                        \"help\": \"TCP will support sending selective acknowledgements (SACKs).\",\n                                        \"id\": \"LWIP_TCP_SACK_OUT\",\n                                        \"name\": \"LWIP_TCP_SACK_OUT\",\n                                        \"range\": null,\n                                        \"title\": \"Support sending selective acknowledgements\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Queue incoming out-of-order segments for later use.\\n\\nDisable this option to save some RAM during TCP sessions, at the expense\\nof increased retransmissions if segments arrive out of order.\",\n                                \"id\": \"LWIP_TCP_QUEUE_OOSEQ\",\n                                \"name\": \"LWIP_TCP_QUEUE_OOSEQ\",\n                                \"range\": null,\n                                \"title\": \"Queue incoming out-of-order segments\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_TCP_OVERSIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_TCP_OVERSIZE_MSS\",\n                                        \"name\": \"LWIP_TCP_OVERSIZE_MSS\",\n                                        \"range\": null,\n                                        \"title\": \"MSS\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_TCP_OVERSIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_TCP_OVERSIZE_QUARTER_MSS\",\n                                        \"name\": \"LWIP_TCP_OVERSIZE_QUARTER_MSS\",\n                                        \"range\": null,\n                                        \"title\": \"25% MSS\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_TCP_OVERSIZE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_TCP_OVERSIZE_DISABLE\",\n                                        \"name\": \"LWIP_TCP_OVERSIZE_DISABLE\",\n                                        \"range\": null,\n                                        \"title\": \"Disabled\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Allows enabling \\\"oversize\\\" allocation of TCP transmission pbufs ahead of time,\\nwhich can reduce the length of pbuf chains used for transmission.\\n\\nThis will not make a difference to sockets where Nagle's algorithm\\nis disabled.\\n\\nDefault value of MSS is fine for most applications, 25% MSS may save\\nsome RAM when only transmitting small amounts of data. Disabled will\\nhave worst performance and fragmentation characteristics, but uses\\nleast RAM overall.\",\n                                \"id\": \"component-config-lwip-tcp-pre-allocate-transmit-pbuf-size\",\n                                \"name\": \"LWIP_TCP_OVERSIZE\",\n                                \"title\": \"Pre-allocate transmit PBUF size\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"LWIP_WND_SCALE\",\n                                        \"help\": \"Enable this feature to support TCP window scaling.\",\n                                        \"id\": \"LWIP_TCP_RCV_SCALE\",\n                                        \"name\": \"LWIP_TCP_RCV_SCALE\",\n                                        \"range\": null,\n                                        \"title\": \"Set TCP receiving window scaling factor\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"SPIRAM_TRY_ALLOCATE_WIFI_LWIP\",\n                                \"help\": \"Enable this feature to support TCP window scaling.\",\n                                \"id\": \"LWIP_WND_SCALE\",\n                                \"name\": \"LWIP_WND_SCALE\",\n                                \"range\": null,\n                                \"title\": \"Support TCP window scale\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set default TCP rto time for a reasonable initial rto.\\nIn bad network environment, recommend set value of rto time to 1500.\",\n                                \"id\": \"LWIP_TCP_RTO_TIME\",\n                                \"name\": \"LWIP_TCP_RTO_TIME\",\n                                \"range\": null,\n                                \"title\": \"Default TCP rto time\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-tcp\",\n                        \"title\": \"TCP\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The maximum number of active UDP \\\"connections\\\" (ie\\nUDP sockets sending/receiving data).\\nThe practical maximum limit is determined by available\\nheap memory at runtime.\",\n                                \"id\": \"LWIP_MAX_UDP_PCBS\",\n                                \"name\": \"LWIP_MAX_UDP_PCBS\",\n                                \"range\": [\n                                    1,\n                                    1024\n                                ],\n                                \"title\": \"Maximum active UDP control blocks\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set UDP receive mail box size. The recommended value is 6.\\n\\nUDP receive mail box is a per socket mail box, when the application receives packets\\nfrom UDP socket, LWIP core firstly posts the packets to UDP receive mail box and the\\napplication then fetches the packets from mail box. It means LWIP can caches maximum\\nUDP_RECCVMBOX_SIZE packets for each UDP socket, so the maximum possible cached UDP packets\\nfor all UDP sockets is UDP_RECCVMBOX_SIZE multiples the maximum UDP socket number. In other\\nwords, the bigger UDP_RECVMBOX_SIZE means more memory.\\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\\nreceive mail box is big enough to avoid packet drop between LWIP core and application.\",\n                                \"id\": \"LWIP_UDP_RECVMBOX_SIZE\",\n                                \"name\": \"LWIP_UDP_RECVMBOX_SIZE\",\n                                \"range\": [\n                                    6,\n                                    64\n                                ],\n                                \"title\": \"Default UDP receive mail box size\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-udp\",\n                        \"title\": \"UDP\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable checksum checking for received IP messages\",\n                                \"id\": \"LWIP_CHECKSUM_CHECK_IP\",\n                                \"name\": \"LWIP_CHECKSUM_CHECK_IP\",\n                                \"range\": null,\n                                \"title\": \"Enable LWIP IP checksums\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable checksum checking for received UDP messages\",\n                                \"id\": \"LWIP_CHECKSUM_CHECK_UDP\",\n                                \"name\": \"LWIP_CHECKSUM_CHECK_UDP\",\n                                \"range\": null,\n                                \"title\": \"Enable LWIP UDP checksums\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable checksum checking for received ICMP messages\",\n                                \"id\": \"LWIP_CHECKSUM_CHECK_ICMP\",\n                                \"name\": \"LWIP_CHECKSUM_CHECK_ICMP\",\n                                \"range\": null,\n                                \"title\": \"Enable LWIP ICMP checksums\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-checksums\",\n                        \"title\": \"Checksums\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Configure TCP/IP task stack size, used by LWIP to process multi-threaded TCP/IP operations.\\nSetting this stack too small will result in stack overflow crashes.\",\n                        \"id\": \"LWIP_TCPIP_TASK_STACK_SIZE\",\n                        \"name\": \"LWIP_TCPIP_TASK_STACK_SIZE\",\n                        \"range\": [\n                            2048,\n                            65536\n                        ],\n                        \"title\": \"TCP/IP Task Stack Size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LWIP_TCPIP_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY\",\n                                \"name\": \"LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice LWIP_TCPIP_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"LWIP_TCPIP_TASK_AFFINITY_CPU0\",\n                                \"name\": \"LWIP_TCPIP_TASK_AFFINITY_CPU0\",\n                                \"range\": null,\n                                \"title\": \"CPU0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!FREERTOS_UNICORE && <choice LWIP_TCPIP_TASK_AFFINITY>\",\n                                \"help\": null,\n                                \"id\": \"LWIP_TCPIP_TASK_AFFINITY_CPU1\",\n                                \"name\": \"LWIP_TCPIP_TASK_AFFINITY_CPU1\",\n                                \"range\": null,\n                                \"title\": \"CPU1\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Allows setting LwIP tasks affinity, i.e. whether the task is pinned to\\nCPU0, pinned to CPU1, or allowed to run on any CPU.\\nCurrently this applies to \\\"TCP/IP\\\" task and \\\"Ping\\\" task.\",\n                        \"id\": \"component-config-lwip-tcp-ip-task-affinity\",\n                        \"name\": \"LWIP_TCPIP_TASK_AFFINITY\",\n                        \"title\": \"TCP/IP task affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"LWIP_TCPIP_TASK_AFFINITY\",\n                        \"name\": \"LWIP_TCPIP_TASK_AFFINITY\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_PPP_SUPPORT && LWIP_IPV6\",\n                                \"help\": \"Enable IPV6 support in PPP for the local link between the DTE (processor) and DCE (modem).\\nThere are some modems which do not support the IPV6 addressing in the local link.\\nIf they are requested for IPV6CP negotiation, they may time out.\\nThis would in turn fail the configuration for the whole link.\\nIf your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.\",\n                                \"id\": \"LWIP_PPP_ENABLE_IPV6\",\n                                \"name\": \"LWIP_PPP_ENABLE_IPV6\",\n                                \"range\": null,\n                                \"title\": \"Enable IPV6 support for PPP connections (IPV6CP)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable PPP stack. Now only PPP over serial is possible.\",\n                        \"id\": \"LWIP_PPP_SUPPORT\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"LWIP_PPP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable PPP support\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"Config max number of IPv6 packets to queue during MAC resolution.\",\n                        \"id\": \"LWIP_IPV6_MEMP_NUM_ND6_QUEUE\",\n                        \"name\": \"LWIP_IPV6_MEMP_NUM_ND6_QUEUE\",\n                        \"range\": [\n                            3,\n                            20\n                        ],\n                        \"title\": \"Max number of IPv6 packets to queue during MAC resolution\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_IPV6\",\n                        \"help\": \"Config max number of entries in IPv6 neighbor cache\",\n                        \"id\": \"LWIP_IPV6_ND6_NUM_NEIGHBORS\",\n                        \"name\": \"LWIP_IPV6_ND6_NUM_NEIGHBORS\",\n                        \"range\": [\n                            3,\n                            10\n                        ],\n                        \"title\": \"Max number of entries in IPv6 neighbor cache\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable to set a callback which is called on change of the internal PPP state machine.\",\n                        \"id\": \"LWIP_PPP_NOTIFY_PHASE_SUPPORT\",\n                        \"name\": \"LWIP_PPP_NOTIFY_PHASE_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable Notify Phase Callback\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable Password Authentication Protocol (PAP) support\",\n                        \"id\": \"LWIP_PPP_PAP_SUPPORT\",\n                        \"name\": \"LWIP_PPP_PAP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable PAP support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable Challenge Handshake Authentication Protocol (CHAP) support\",\n                        \"id\": \"LWIP_PPP_CHAP_SUPPORT\",\n                        \"name\": \"LWIP_PPP_CHAP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable CHAP support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support\",\n                        \"id\": \"LWIP_PPP_MSCHAP_SUPPORT\",\n                        \"name\": \"LWIP_PPP_MSCHAP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable MSCHAP support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable Microsoft Point-to-Point Encryption (MPPE) support\",\n                        \"id\": \"LWIP_PPP_MPPE_SUPPORT\",\n                        \"name\": \"LWIP_PPP_MPPE_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable MPPE support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ENABLE_LCP_ECHO\",\n                                \"help\": \"Interval in seconds between keepalive LCP echo requests, 0 to disable.\",\n                                \"id\": \"LWIP_LCP_ECHOINTERVAL\",\n                                \"name\": \"LWIP_LCP_ECHOINTERVAL\",\n                                \"range\": null,\n                                \"title\": \"Echo interval (s)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ENABLE_LCP_ECHO\",\n                                \"help\": \"Number of consecutive unanswered echo requests before failure is indicated.\",\n                                \"id\": \"LWIP_LCP_MAXECHOFAILS\",\n                                \"name\": \"LWIP_LCP_MAXECHOFAILS\",\n                                \"range\": null,\n                                \"title\": \"Maximum echo failures\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable LCP echo keepalive requests\",\n                        \"id\": \"LWIP_ENABLE_LCP_ECHO\",\n                        \"name\": \"LWIP_ENABLE_LCP_ECHO\",\n                        \"range\": null,\n                        \"title\": \"Enable LCP ECHO\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"LWIP_PPP_SUPPORT\",\n                        \"help\": \"Enable PPP debug log output\",\n                        \"id\": \"LWIP_PPP_DEBUG_ON\",\n                        \"name\": \"LWIP_PPP_DEBUG_ON\",\n                        \"range\": null,\n                        \"title\": \"Enable PPP debug log output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_SLIP_SUPPORT\",\n                                \"help\": \"Enable SLIP debug log output\",\n                                \"id\": \"LWIP_SLIP_DEBUG_ON\",\n                                \"name\": \"LWIP_SLIP_DEBUG_ON\",\n                                \"range\": null,\n                                \"title\": \"Enable SLIP debug log output\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable SLIP stack. Now only SLIP over serial is possible.\\n\\nSLIP over serial support is experimental and unsupported.\",\n                        \"id\": \"LWIP_SLIP_SUPPORT\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"LWIP_SLIP_SUPPORT\",\n                        \"range\": null,\n                        \"title\": \"Enable SLIP support (new/experimental)\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable ICMP module for check network stability\",\n                                \"id\": \"LWIP_ICMP\",\n                                \"name\": \"LWIP_ICMP\",\n                                \"range\": null,\n                                \"title\": \"ICMP: Enable ICMP\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ICMP6 || LWIP_ICMP\",\n                                \"help\": null,\n                                \"id\": \"LWIP_MULTICAST_PING\",\n                                \"name\": \"LWIP_MULTICAST_PING\",\n                                \"range\": null,\n                                \"title\": \"Respond to multicast pings\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_ICMP\",\n                                \"help\": null,\n                                \"id\": \"LWIP_BROADCAST_PING\",\n                                \"name\": \"LWIP_BROADCAST_PING\",\n                                \"range\": null,\n                                \"title\": \"Respond to broadcast pings\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-icmp\",\n                        \"title\": \"ICMP\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The maximum number of simultaneously active LWIP\\nRAW protocol control blocks. The practical maximum\\nlimit is determined by available heap memory at runtime.\",\n                                \"id\": \"LWIP_MAX_RAW_PCBS\",\n                                \"name\": \"LWIP_MAX_RAW_PCBS\",\n                                \"range\": [\n                                    1,\n                                    1024\n                                ],\n                                \"title\": \"Maximum LWIP RAW PCBs\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-lwip-raw-api\",\n                        \"title\": \"LWIP RAW API\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Set maximum number of NTP servers used by LwIP SNTP module.\\nFirst argument of sntp_setserver/sntp_setservername functions\\nis limited to this value.\",\n                                \"id\": \"LWIP_SNTP_MAX_SERVERS\",\n                                \"name\": \"LWIP_SNTP_MAX_SERVERS\",\n                                \"range\": [\n                                    1,\n                                    16\n                                ],\n                                \"title\": \"Maximum number of NTP servers\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"LWIP_DHCP_GET_NTP_SRV\",\n                                        \"help\": \"Set maximum number of NTP servers aquired via DHCP-offer.\\nShould be less or equal to \\\"Maximum number of NTP servers\\\", any extra servers would be just ignored.\",\n                                        \"id\": \"LWIP_DHCP_MAX_NTP_SERVERS\",\n                                        \"name\": \"LWIP_DHCP_MAX_NTP_SERVERS\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum number of NTP servers aquired via DHCP\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"If enabled, LWIP will add 'NTP' to Parameter-Request Option sent via DHCP-request.\\nDHCP server might reply with an NTP server address in option 42.\\nSNTP callback for such replies should be set accordingly (see sntp_servermode_dhcp() func.)\",\n                                \"id\": \"LWIP_DHCP_GET_NTP_SRV\",\n                                \"name\": \"LWIP_DHCP_GET_NTP_SRV\",\n                                \"range\": null,\n                                \"title\": \"Request NTP servers from DHCP\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This option allows you to set the time update period via SNTP.\\nDefault is 1 hour. Must not be below 15 seconds by specification.\\n(SNTPv4 RFC 4330 enforces a minimum update time of 15 seconds).\",\n                                \"id\": \"LWIP_SNTP_UPDATE_DELAY\",\n                                \"name\": \"LWIP_SNTP_UPDATE_DELAY\",\n                                \"range\": [\n                                    15000,\n                                    4294967295\n                                ],\n                                \"title\": \"Request interval to update time (ms)\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-sntp\",\n                        \"title\": \"SNTP\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set maximum number of ports a bridge can consists of.\",\n                        \"id\": \"LWIP_BRIDGEIF_MAX_PORTS\",\n                        \"name\": \"LWIP_BRIDGEIF_MAX_PORTS\",\n                        \"range\": [\n                            1,\n                            63\n                        ],\n                        \"title\": \"Maximum number of bridge ports\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\",\n                        \"help\": \"Enable this option keeps LWIP assertion checks enabled.\\nIt is recommended to keep this option enabled.\\n\\nIf asserts are disabled for the entire project, they are also disabled\\nfor LWIP and this option is ignored.\",\n                        \"id\": \"LWIP_ESP_LWIP_ASSERT\",\n                        \"name\": \"LWIP_ESP_LWIP_ASSERT\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP ASSERT checks\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_TCP_ISN>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_TCP_ISN_NONE\",\n                                        \"name\": \"LWIP_HOOK_TCP_ISN_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_TCP_ISN>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_TCP_ISN_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_TCP_ISN_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_TCP_ISN>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_TCP_ISN_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_TCP_ISN_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables to define a TCP ISN hook to randomize initial sequence\\nnumber in TCP connection.\\nThe default TCP ISN algorithm used in IDF (standardized in RFC 6528)\\nproduces ISN by combining an MD5 of the new TCP id and a stable\\nsecret with the current time.\\nThis is because the lwIP implementation (`tcp_next_iss`) is not\\nvery strong, as it does not take into consideration any platform\\nspecific entropy source.\\n\\nSet to LWIP_HOOK_TCP_ISN_CUSTOM to provide custom implementation.\\nSet to LWIP_HOOK_TCP_ISN_NONE to use lwIP implementation.\",\n                                \"id\": \"component-config-lwip-hooks-tcp-isn-hook\",\n                                \"name\": \"LWIP_HOOK_TCP_ISN\",\n                                \"title\": \"TCP ISN Hook\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_ROUTE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_ROUTE_NONE\",\n                                        \"name\": \"LWIP_HOOK_IP6_ROUTE_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_ROUTE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_ROUTE_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_IP6_ROUTE_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default (weak) implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_ROUTE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_ROUTE_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_IP6_ROUTE_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Enables custom IPv6 route hook.\\nSetting this to \\\"default\\\" provides weak implementation\\nstub that could be overwritten in application code.\\nSetting this to \\\"custom\\\" provides hook's declaration\\nonly and expects the application to implement it.\",\n                                \"id\": \"component-config-lwip-hooks-ipv6-route-hook\",\n                                \"name\": \"LWIP_HOOK_IP6_ROUTE\",\n                                \"title\": \"IPv6 route Hook\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_ND6_GET_GW>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_ND6_GET_GW_NONE\",\n                                        \"name\": \"LWIP_HOOK_ND6_GET_GW_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_ND6_GET_GW>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_ND6_GET_GW_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_ND6_GET_GW_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default (weak) implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_ND6_GET_GW>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_ND6_GET_GW_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_ND6_GET_GW_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Enables custom IPv6 route hook.\\nSetting this to \\\"default\\\" provides weak implementation\\nstub that could be overwritten in application code.\\nSetting this to \\\"custom\\\" provides hook's declaration\\nonly and expects the application to implement it.\",\n                                \"id\": \"component-config-lwip-hooks-ipv6-get-gateway-hook\",\n                                \"name\": \"LWIP_HOOK_ND6_GET_GW\",\n                                \"title\": \"IPv6 get gateway Hook\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_SELECT_SRC_ADDR>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE\",\n                                        \"name\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_SELECT_SRC_ADDR>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default (weak) implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_SELECT_SRC_ADDR>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Enables custom IPv6 source address selection.\\nSetting this to \\\"default\\\" provides weak implementation\\nstub that could be overwritten in application code.\\nSetting this to \\\"custom\\\" provides hook's declaration\\nonly and expects the application to implement it.\",\n                                \"id\": \"component-config-lwip-hooks-ipv6-source-address-selection-hook\",\n                                \"name\": \"LWIP_HOOK_IP6_SELECT_SRC_ADDR\",\n                                \"title\": \"IPv6 source address selection Hook\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE\",\n                                        \"name\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default (weak) implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables custom DNS resolve hook.\\nSetting this to \\\"default\\\" provides weak implementation\\nstub that could be overwritten in application code.\\nSetting this to \\\"custom\\\" provides hook's declaration\\nonly and expects the application to implement it.\",\n                                \"id\": \"component-config-lwip-hooks-netconn-external-resolve-hook\",\n                                \"name\": \"LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE\",\n                                \"title\": \"Netconn external resolve Hook\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_INPUT>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_INPUT_NONE\",\n                                        \"name\": \"LWIP_HOOK_IP6_INPUT_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No hook declared\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_INPUT>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_INPUT_DEFAULT\",\n                                        \"name\": \"LWIP_HOOK_IP6_INPUT_DEFAULT\",\n                                        \"range\": null,\n                                        \"title\": \"Default (weak) implementation\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice LWIP_HOOK_IP6_INPUT>\",\n                                        \"help\": null,\n                                        \"id\": \"LWIP_HOOK_IP6_INPUT_CUSTOM\",\n                                        \"name\": \"LWIP_HOOK_IP6_INPUT_CUSTOM\",\n                                        \"range\": null,\n                                        \"title\": \"Custom implementation\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"LWIP_IPV6\",\n                                \"help\": \"Enables custom IPv6 packet input.\\nSetting this to \\\"default\\\" provides weak implementation\\nstub that could be overwritten in application code.\\nSetting this to \\\"custom\\\" provides hook's declaration\\nonly and expects the application to implement it.\",\n                                \"id\": \"component-config-lwip-hooks-ipv6-packet-input\",\n                                \"name\": \"LWIP_HOOK_IP6_INPUT\",\n                                \"title\": \"IPv6 packet input\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-lwip-hooks\",\n                        \"title\": \"Hooks\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": \"Enabling this option routes all enabled LWIP debugs through ESP_LOGD.\",\n                                \"id\": \"LWIP_DEBUG_ESP_LOG\",\n                                \"name\": \"LWIP_DEBUG_ESP_LOG\",\n                                \"range\": null,\n                                \"title\": \"Route LWIP debugs through ESP_LOG interface\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_NETIF_DEBUG\",\n                                \"name\": \"LWIP_NETIF_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable netif debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_PBUF_DEBUG\",\n                                \"name\": \"LWIP_PBUF_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable pbuf debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_ETHARP_DEBUG\",\n                                \"name\": \"LWIP_ETHARP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable etharp debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_API_LIB_DEBUG\",\n                                \"name\": \"LWIP_API_LIB_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable api lib debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_SOCKETS_DEBUG\",\n                                \"name\": \"LWIP_SOCKETS_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable socket debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_IP_DEBUG\",\n                                \"name\": \"LWIP_IP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable IP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG && LWIP_ICMP\",\n                                \"help\": null,\n                                \"id\": \"LWIP_ICMP_DEBUG\",\n                                \"name\": \"LWIP_ICMP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable ICMP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_DHCP_STATE_DEBUG\",\n                                \"name\": \"LWIP_DHCP_STATE_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable DHCP state tracking\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_DHCP_DEBUG\",\n                                \"name\": \"LWIP_DHCP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable DHCP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_IP6_DEBUG\",\n                                \"name\": \"LWIP_IP6_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable IP6 debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_ICMP6_DEBUG\",\n                                \"name\": \"LWIP_ICMP6_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable ICMP6 debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_TCP_DEBUG\",\n                                \"name\": \"LWIP_TCP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable TCP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_UDP_DEBUG\",\n                                \"name\": \"LWIP_UDP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable UDP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_SNTP_DEBUG\",\n                                \"name\": \"LWIP_SNTP_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable SNTP debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_DNS_DEBUG\",\n                                \"name\": \"LWIP_DNS_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable DNS debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG && LWIP_IPV4_NAPT\",\n                                \"help\": null,\n                                \"id\": \"LWIP_NAPT_DEBUG\",\n                                \"name\": \"LWIP_NAPT_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable NAPT debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_BRIDGEIF_DEBUG\",\n                                \"name\": \"LWIP_BRIDGEIF_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable bridge generic debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_BRIDGEIF_FDB_DEBUG\",\n                                \"name\": \"LWIP_BRIDGEIF_FDB_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable bridge FDB debug messages\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"LWIP_DEBUG\",\n                                \"help\": null,\n                                \"id\": \"LWIP_BRIDGEIF_FW_DEBUG\",\n                                \"name\": \"LWIP_BRIDGEIF_FW_DEBUG\",\n                                \"range\": null,\n                                \"title\": \"Enable bridge forwarding debug messages\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enabling this option allows different kinds of lwIP debug output.\\n\\nAll lwIP debug features increase the size of the final binary.\",\n                        \"id\": \"LWIP_DEBUG\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"LWIP_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Enable LWIP Debug\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-lwip\",\n                \"title\": \"LWIP\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_INTERNAL_MEM_ALLOC\",\n                                \"name\": \"MBEDTLS_INTERNAL_MEM_ALLOC\",\n                                \"range\": null,\n                                \"title\": \"Internal memory\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && <choice MBEDTLS_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_EXTERNAL_MEM_ALLOC\",\n                                \"name\": \"MBEDTLS_EXTERNAL_MEM_ALLOC\",\n                                \"range\": null,\n                                \"title\": \"External SPIRAM\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_DEFAULT_MEM_ALLOC\",\n                                \"name\": \"MBEDTLS_DEFAULT_MEM_ALLOC\",\n                                \"range\": null,\n                                \"title\": \"Default alloc mode\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_MEM_ALLOC_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_CUSTOM_MEM_ALLOC\",\n                                \"name\": \"MBEDTLS_CUSTOM_MEM_ALLOC\",\n                                \"range\": null,\n                                \"title\": \"Custom alloc mode\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && <choice MBEDTLS_MEM_ALLOC_MODE>\",\n                                \"help\": \"Allows to use IRAM memory region as 8bit accessible region.\\n\\nTLS input and output buffers will be allocated in IRAM section which is 32bit aligned\\nmemory. Every unaligned (8bit or 16bit) access will result in an exception\\nand incur penalty of certain clock cycles per unaligned read/write.\",\n                                \"id\": \"MBEDTLS_IRAM_8BIT_MEM_ALLOC\",\n                                \"name\": \"MBEDTLS_IRAM_8BIT_MEM_ALLOC\",\n                                \"range\": null,\n                                \"title\": \"Internal IRAM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Allocation strategy for mbedTLS, essentially provides ability to\\nallocate all required dynamic allocations from,\\n\\n- Internal DRAM memory only\\n- External SPIRAM memory only\\n- Either internal or external memory based on default malloc()\\n  behavior in ESP-IDF\\n- Custom allocation mode, by overwriting calloc()/free() using\\n  mbedtls_platform_set_calloc_free() function\\n- Internal IRAM memory wherever applicable else internal DRAM\\n\\nRecommended mode here is always internal (*), since that is most preferred\\nfrom security perspective. But if application requirement does not\\nallow sufficient free internal memory then alternate mode can be\\nselected.\\n\\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\\nSPIRAM contents provided hardware flash encryption feature is enabled.\\nIn that case, using external SPIRAM allocation strategy is also safe choice\\nfrom security perspective.\",\n                        \"id\": \"component-config-mbedtls-memory-allocation-strategy\",\n                        \"name\": \"MBEDTLS_MEM_ALLOC_MODE\",\n                        \"title\": \"Memory allocation strategy\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!MBEDTLS_ASYMMETRIC_CONTENT_LEN\",\n                        \"help\": \"Maximum TLS message length (in bytes) supported by mbedTLS.\\n\\n16384 is the default and this value is required to comply\\nfully with TLS standards.\\n\\nHowever you can set a lower value in order to save RAM. This\\nis safe if the other end of the connection supports Maximum\\nFragment Length Negotiation Extension (max_fragment_length,\\nsee RFC6066) or you know for certain that it will never send a\\nmessage longer than a certain number of bytes.\\n\\nIf the value is set too low, symptoms are a failed TLS\\nhandshake or a return value of MBEDTLS_ERR_SSL_INVALID_RECORD\\n(-0x7200).\",\n                        \"id\": \"MBEDTLS_SSL_MAX_CONTENT_LEN\",\n                        \"name\": \"MBEDTLS_SSL_MAX_CONTENT_LEN\",\n                        \"range\": null,\n                        \"title\": \"TLS maximum message content length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_ASYMMETRIC_CONTENT_LEN\",\n                                \"help\": \"This defines maximum incoming fragment length, overriding default\\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).\",\n                                \"id\": \"MBEDTLS_SSL_IN_CONTENT_LEN\",\n                                \"name\": \"MBEDTLS_SSL_IN_CONTENT_LEN\",\n                                \"range\": [\n                                    512,\n                                    16384\n                                ],\n                                \"title\": \"TLS maximum incoming fragment length\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_ASYMMETRIC_CONTENT_LEN\",\n                                \"help\": \"This defines maximum outgoing fragment length, overriding default\\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).\",\n                                \"id\": \"MBEDTLS_SSL_OUT_CONTENT_LEN\",\n                                \"name\": \"MBEDTLS_SSL_OUT_CONTENT_LEN\",\n                                \"range\": [\n                                    512,\n                                    16384\n                                ],\n                                \"title\": \"TLS maximum outgoing fragment length\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If enabled, this option allows customizing TLS in/out fragment length\\nin asymmetric way. Please note that enabling this with default values\\nsaves 12KB of dynamic memory per TLS connection.\",\n                        \"id\": \"MBEDTLS_ASYMMETRIC_CONTENT_LEN\",\n                        \"name\": \"MBEDTLS_ASYMMETRIC_CONTENT_LEN\",\n                        \"range\": null,\n                        \"title\": \"Asymmetric in/out fragment length\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_DYNAMIC_FREE_CONFIG_DATA\",\n                                        \"help\": \"Free CA certificate after its usage in the handshake process.\\nThis option will decrease the heap footprint for the TLS handshake, but may lead to a problem:\\nIf the respective ssl object needs to perform the TLS handshake again,\\nthe CA certificate should once again be registered to the ssl object.\",\n                                        \"id\": \"MBEDTLS_DYNAMIC_FREE_CA_CERT\",\n                                        \"name\": \"MBEDTLS_DYNAMIC_FREE_CA_CERT\",\n                                        \"range\": null,\n                                        \"title\": \"Free SSL CA certificate after its usage\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_DYNAMIC_BUFFER\",\n                                \"help\": \"Free private key and DHM data after its usage in handshake process.\\n\\nThe option will decrease heap cost when handshake, but also lead to problem:\\n\\nBecasue all certificate, private key and DHM data are freed so users should register\\ncertificate and private key to ssl config object again.\",\n                                \"id\": \"MBEDTLS_DYNAMIC_FREE_CONFIG_DATA\",\n                                \"name\": \"MBEDTLS_DYNAMIC_FREE_CONFIG_DATA\",\n                                \"range\": null,\n                                \"title\": \"Free private key and DHM data after its usage\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!IDF_TARGET_LINUX && !MBEDTLS_SSL_PROTO_DTLS && !MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH\",\n                        \"help\": \"Using dynamic TX/RX buffer. After enabling this option, mbedTLS will\\nallocate TX buffer when need to send data and then free it if all data\\nis sent, allocate RX buffer when need to receive data and then free it\\nwhen all data is used or read by upper layer.\\n\\nBy default, when SSL is initialized, mbedTLS also allocate TX and\\nRX buffer with the default value of \\\"MBEDTLS_SSL_OUT_CONTENT_LEN\\\" or\\n\\\"MBEDTLS_SSL_IN_CONTENT_LEN\\\", so to save more heap, users can set\\nthe options to be an appropriate value.\",\n                        \"id\": \"MBEDTLS_DYNAMIC_BUFFER\",\n                        \"name\": \"MBEDTLS_DYNAMIC_BUFFER\",\n                        \"range\": null,\n                        \"title\": \"Using dynamic TX/RX buffer\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MBEDTLS_DEBUG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_DEBUG_LEVEL_WARN\",\n                                        \"name\": \"MBEDTLS_DEBUG_LEVEL_WARN\",\n                                        \"range\": null,\n                                        \"title\": \"Warning\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MBEDTLS_DEBUG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_DEBUG_LEVEL_INFO\",\n                                        \"name\": \"MBEDTLS_DEBUG_LEVEL_INFO\",\n                                        \"range\": null,\n                                        \"title\": \"Info\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MBEDTLS_DEBUG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_DEBUG_LEVEL_DEBUG\",\n                                        \"name\": \"MBEDTLS_DEBUG_LEVEL_DEBUG\",\n                                        \"range\": null,\n                                        \"title\": \"Debug\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MBEDTLS_DEBUG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_DEBUG_LEVEL_VERBOSE\",\n                                        \"name\": \"MBEDTLS_DEBUG_LEVEL_VERBOSE\",\n                                        \"range\": null,\n                                        \"title\": \"Verbose\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_DEBUG\",\n                                \"help\": \"Set mbedTLS debugging level\",\n                                \"id\": \"component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level\",\n                                \"name\": \"MBEDTLS_DEBUG_LEVEL\",\n                                \"title\": \"Set mbedTLS debugging level\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable mbedTLS debugging functions at compile time.\\n\\nIf this option is enabled, you can include\\n\\\"mbedtls/esp_debug.h\\\" and call mbedtls_esp_enable_debug_log()\\nat runtime in order to enable mbedTLS debug output via the ESP\\nlog mechanism.\",\n                        \"id\": \"MBEDTLS_DEBUG\",\n                        \"name\": \"MBEDTLS_DEBUG\",\n                        \"range\": null,\n                        \"title\": \"Enable mbedTLS debugging\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_DEBUG_LEVEL\",\n                        \"name\": \"MBEDTLS_DEBUG_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE\",\n                                                \"name\": \"MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE\",\n                                                \"range\": null,\n                                                \"title\": \"TLS 1.3 middlebox compatibility mode\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_SSL_TLS1_3_KEXM_PSK\",\n                                                \"name\": \"MBEDTLS_SSL_TLS1_3_KEXM_PSK\",\n                                                \"range\": null,\n                                                \"title\": \"TLS 1.3 PSK key exchange mode\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL\",\n                                                \"name\": \"MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL\",\n                                                \"range\": null,\n                                                \"title\": \"TLS 1.3 ephemeral key exchange mode\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL\",\n                                                \"name\": \"MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL\",\n                                                \"range\": null,\n                                                \"title\": \"TLS 1.3 PSK ephemeral key exchange mode\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                        \"id\": \"component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations\",\n                                        \"title\": \"TLS 1.3 related configurations\",\n                                        \"type\": \"menu\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_KEEP_PEER_CERTIFICATE && !MBEDTLS_DYNAMIC_BUFFER\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                \"name\": \"MBEDTLS_SSL_PROTO_TLS1_3\",\n                                \"range\": null,\n                                \"title\": \"Support TLS 1.3 protocol\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"This enables the SSL buffer to be resized automatically\\nbased on the negotiated maximum fragment length in each direction.\",\n                                \"id\": \"MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH\",\n                                \"name\": \"MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH\",\n                                \"range\": null,\n                                \"title\": \"Variable SSL buffer length\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_ECDH_C && MBEDTLS_ECP_RESTARTABLE\",\n                                \"help\": \"Use the legacy ECDH context format.\\nDefine this option only if you enable MBEDTLS_ECP_RESTARTABLE or if you\\nwant to access ECDH context fields directly.\",\n                                \"id\": \"MBEDTLS_ECDH_LEGACY_CONTEXT\",\n                                \"name\": \"MBEDTLS_ECDH_LEGACY_CONTEXT\",\n                                \"range\": null,\n                                \"title\": \"Use a backward compatible ECDH context (Experimental)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables users to configure the set of trusted certificates\\nthrough a callback instead of a linked list.\\n\\nSee mbedTLS documentation for required API and more details.\",\n                                \"id\": \"MBEDTLS_X509_TRUSTED_CERT_CALLBACK\",\n                                \"name\": \"MBEDTLS_X509_TRUSTED_CERT_CALLBACK\",\n                                \"range\": null,\n                                \"title\": \"Enable trusted certificate callbacks\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C\",\n                                \"help\": \"Enable serialization of the TLS context structures\\nThis is a local optimization in handling a single, potentially long-lived connection.\\n\\nSee mbedTLS documentation for required API and more details.\\nDisabling this option will save some code size.\",\n                                \"id\": \"MBEDTLS_SSL_CONTEXT_SERIALIZATION\",\n                                \"name\": \"MBEDTLS_SSL_CONTEXT_SERIALIZATION\",\n                                \"range\": null,\n                                \"title\": \"Enable serialization of the TLS context structures\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!MBEDTLS_DYNAMIC_FREE_PEER_CERT\",\n                                \"help\": \"Keep the peer's certificate after completion of the handshake.\\nDisabling this option will save about 4kB of heap and some code size.\\n\\nSee mbedTLS documentation for required API and more details.\",\n                                \"id\": \"MBEDTLS_SSL_KEEP_PEER_CERTIFICATE\",\n                                \"name\": \"MBEDTLS_SSL_KEEP_PEER_CERTIFICATE\",\n                                \"range\": null,\n                                \"title\": \"Keep peer certificate after handshake completion\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_X509_CRL_PARSE_C\",\n                                \"help\": \"Enable PKCS #7 core for using PKCS #7-formatted signatures.\",\n                                \"id\": \"MBEDTLS_PKCS7_C\",\n                                \"name\": \"MBEDTLS_PKCS7_C\",\n                                \"range\": null,\n                                \"title\": \"Enable PKCS #7\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS\",\n                                                \"help\": \"Maximum length of CIDs used for incoming DTLS messages\",\n                                                \"id\": \"MBEDTLS_SSL_CID_IN_LEN_MAX\",\n                                                \"name\": \"MBEDTLS_SSL_CID_IN_LEN_MAX\",\n                                                \"range\": null,\n                                                \"title\": \"Maximum length of CIDs used for incoming DTLS messages\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS\",\n                                                \"help\": \"Maximum length of CIDs used for outgoing DTLS messages\",\n                                                \"id\": \"MBEDTLS_SSL_CID_OUT_LEN_MAX\",\n                                                \"name\": \"MBEDTLS_SSL_CID_OUT_LEN_MAX\",\n                                                \"range\": null,\n                                                \"title\": \"Maximum length of CIDs used for outgoing DTLS messages\",\n                                                \"type\": \"int\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS\",\n                                                \"help\": \"Controls the use of record plaintext padding when\\nusing the Connection ID extension in DTLS 1.2.\\n\\nThe padding will always be chosen so that the length of the\\npadded plaintext is a multiple of the value of this option.\\n\\nNotes:\\n    A value of 1 means that no padding will be used for outgoing records.\\n    On systems lacking division instructions, a power of two should be preferred.\",\n                                                \"id\": \"MBEDTLS_SSL_CID_PADDING_GRANULARITY\",\n                                                \"name\": \"MBEDTLS_SSL_CID_PADDING_GRANULARITY\",\n                                                \"range\": null,\n                                                \"title\": \"Record plaintext padding (for DTLS 1.2)\",\n                                                \"type\": \"int\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"MBEDTLS_SSL_PROTO_DTLS\",\n                                        \"help\": \"Enable support for the DTLS Connection ID extension which allows to\\nidentify DTLS connections across changes in the underlying transport.\",\n                                        \"id\": \"MBEDTLS_SSL_DTLS_CONNECTION_ID\",\n                                        \"name\": \"MBEDTLS_SSL_DTLS_CONNECTION_ID\",\n                                        \"range\": null,\n                                        \"title\": \"Support for the DTLS Connection ID extension\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_SSL_PROTO_DTLS\",\n                                        \"help\": \"Enable support for negotiation of DTLS-SRTP (RFC 5764) through the use_srtp extension.\\n\\nSee mbedTLS documentation for required API and more details.\\nDisabling this option will save some code size.\",\n                                        \"id\": \"MBEDTLS_SSL_DTLS_SRTP\",\n                                        \"name\": \"MBEDTLS_SSL_DTLS_SRTP\",\n                                        \"range\": null,\n                                        \"title\": \"Enable support for negotiation of DTLS-SRTP (RFC 5764)\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_SSL_PROTO_DTLS\",\n                                \"id\": \"component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations\",\n                                \"title\": \"DTLS-based configurations\",\n                                \"type\": \"menu\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-mbedtls-mbedtls-v3-x-related\",\n                        \"title\": \"mbedTLS v3.x related\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE>\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL\",\n                                                \"name\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL\",\n                                                \"range\": null,\n                                                \"title\": \"Use the full default certificate bundle\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE>\",\n                                                \"help\": \"Use only the most common certificates from the default bundles, reducing the size with 50%,\\nwhile still having around 99% coverage.\",\n                                                \"id\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN\",\n                                                \"name\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN\",\n                                                \"range\": null,\n                                                \"title\": \"Use only the most common certificates from the default bundles\",\n                                                \"type\": \"bool\"\n                                            },\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"<choice MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE>\",\n                                                \"help\": null,\n                                                \"id\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE\",\n                                                \"name\": \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE\",\n                                                \"range\": null,\n                                                \"title\": \"Do not use the default certificate bundle\",\n                                                \"type\": \"bool\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"MBEDTLS_CERTIFICATE_BUNDLE\",\n                                        \"help\": null,\n                                        \"id\": \"component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options\",\n                                        \"name\": \"MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE\",\n                                        \"title\": \"Default certificate bundle options\",\n                                        \"type\": \"choice\"\n                                    },\n                                    {\n                                        \"children\": [\n                                            {\n                                                \"children\": [],\n                                                \"depends_on\": \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE\",\n                                                \"help\": \"Name of the custom certificate directory or file. This path is evaluated\\nrelative to the project root directory.\",\n                                                \"id\": \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH\",\n                                                \"name\": \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH\",\n                                                \"range\": null,\n                                                \"title\": \"Custom certificate bundle path\",\n                                                \"type\": \"string\"\n                                            }\n                                        ],\n                                        \"depends_on\": \"MBEDTLS_CERTIFICATE_BUNDLE\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE\",\n                                        \"name\": \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE\",\n                                        \"range\": null,\n                                        \"title\": \"Add custom certificates to the default bundle\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_CERTIFICATE_BUNDLE\",\n                                        \"help\": null,\n                                        \"id\": \"MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS\",\n                                        \"name\": \"MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS\",\n                                        \"range\": null,\n                                        \"title\": \"Maximum no of certificates allowed in certificate bundle\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enable support for large number of default root certificates\\n\\nWhen enabled this option allows user to store default as well\\nas customer specific root certificates in compressed format rather\\nthan storing full certificate. For the root certificates the public key and the subject name\\nwill be stored.\",\n                                \"id\": \"MBEDTLS_CERTIFICATE_BUNDLE\",\n                                \"name\": \"MBEDTLS_CERTIFICATE_BUNDLE\",\n                                \"range\": null,\n                                \"title\": \"Enable trusted root certificate bundle\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-mbedtls-certificate-bundle\",\n                        \"title\": \"Certificate Bundle\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable \\\"non-blocking\\\" ECC operations that can return early and be resumed.\",\n                        \"id\": \"MBEDTLS_ECP_RESTARTABLE\",\n                        \"name\": \"MBEDTLS_ECP_RESTARTABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable mbedTLS ecp restartable\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_AES_C || MBEDTLS_DES_C\",\n                        \"help\": \"Enable the CMAC (Cipher-based Message Authentication Code) mode for\\nblock ciphers.\",\n                        \"id\": \"MBEDTLS_CMAC_C\",\n                        \"name\": \"MBEDTLS_CMAC_C\",\n                        \"range\": null,\n                        \"title\": \"Enable CMAC mode for block ciphers\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES\",\n                                \"help\": \"Use an interrupt to coordinate long AES operations.\\n\\nThis allows other code to run on the CPU while an AES operation is pending.\\nOtherwise the CPU busy-waits.\",\n                                \"id\": \"MBEDTLS_AES_USE_INTERRUPT\",\n                                \"name\": \"MBEDTLS_AES_USE_INTERRUPT\",\n                                \"range\": null,\n                                \"title\": \"Use interrupt for long AES operations\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SOC_AES_SUPPORT_GCM && MBEDTLS_HARDWARE_AES\",\n                                \"help\": \"Enable partially hardware accelerated GCM. GHASH calculation is still done\\nin software.\\n\\nIf MBEDTLS_HARDWARE_GCM is disabled and MBEDTLS_HARDWARE_AES is enabled then\\nmbedTLS will still use the hardware accelerated AES block operation, but\\non a single block at a time.\",\n                                \"id\": \"MBEDTLS_HARDWARE_GCM\",\n                                \"name\": \"MBEDTLS_HARDWARE_GCM\",\n                                \"range\": null,\n                                \"title\": \"Enable partially hardware accelerated GCM\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_AES_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated AES encryption & decryption.\\n\\nNote that if the ESP32 CPU is running at 240MHz, hardware AES does not\\noffer any speed boost over software AES.\",\n                        \"id\": \"MBEDTLS_HARDWARE_AES\",\n                        \"name\": \"MBEDTLS_HARDWARE_AES\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware AES acceleration\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI\",\n                                \"help\": \"Use an interrupt to coordinate long MPI operations.\\n\\nThis allows other code to run on the CPU while an MPI operation is pending.\\nOtherwise the CPU busy-waits.\",\n                                \"id\": \"MBEDTLS_MPI_USE_INTERRUPT\",\n                                \"name\": \"MBEDTLS_MPI_USE_INTERRUPT\",\n                                \"range\": null,\n                                \"title\": \"Use interrupt for MPI exp-mod operations\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated multiple precision integer operations.\\n\\nHardware accelerated multiplication, modulo multiplication,\\nand modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.\\n\\nThese operations are used by RSA.\",\n                        \"id\": \"MBEDTLS_HARDWARE_MPI\",\n                        \"name\": \"MBEDTLS_HARDWARE_MPI\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware MPI (bignum) acceleration\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\\n\\nDue to a hardware limitation, on the ESP32 hardware acceleration is only\\nguaranteed if SHA digests are calculated one at a time. If more\\nthan one SHA digest is calculated at the same time, one will\\nbe calculated fully in hardware and the rest will be calculated\\n(at least partially calculated) in software. This happens automatically.\\n\\nSHA hardware acceleration is faster than software in some situations but\\nslower in others. You should benchmark to find the best setting for you.\",\n                        \"id\": \"MBEDTLS_HARDWARE_SHA\",\n                        \"name\": \"MBEDTLS_HARDWARE_SHA\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware SHA acceleration\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_HARDWARE_ECC\",\n                                \"help\": \"Fallback to software implementation of ECC point multiplication and point verification\\nfor curves not supported in hardware.\",\n                                \"id\": \"MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK\",\n                                \"name\": \"MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK\",\n                                \"range\": null,\n                                \"title\": \"Fallback to software implementation for curves not supported in hardware\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_ECC_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated ECC point multiplication and point verification for points\\non curve SECP192R1 and SECP256R1 in mbedTLS\",\n                        \"id\": \"MBEDTLS_HARDWARE_ECC\",\n                        \"name\": \"MBEDTLS_HARDWARE_ECC\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware ECC acceleration\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Use ROM MD5 in mbedTLS.\",\n                        \"id\": \"MBEDTLS_ROM_MD5\",\n                        \"name\": \"MBEDTLS_ROM_MD5\",\n                        \"range\": null,\n                        \"title\": \"Use MD5 implementation in ROM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_ECDSA_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated ECDSA peripheral to sign data\\non curve SECP192R1 and SECP256R1 in mbedTLS.\\n\\nNote that for signing, the private key has to be burnt in an efuse key block\\nwith key purpose set to ECDSA_KEY.\\nIf no key is burnt, it will report an error\\n\\nThe key should be burnt in little endian format. espefuse.py utility handles it internally\\nbut care needs to be taken while burning using esp_efuse APIs\",\n                        \"id\": \"MBEDTLS_HARDWARE_ECDSA_SIGN\",\n                        \"name\": \"MBEDTLS_HARDWARE_ECDSA_SIGN\",\n                        \"range\": null,\n                        \"title\": \"Enable ECDSA signing using on-chip ECDSA peripheral\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SOC_ECDSA_SUPPORTED\",\n                        \"help\": \"Enable hardware accelerated ECDSA peripheral to verify signature\\non curve SECP192R1 and SECP256R1 in mbedTLS.\",\n                        \"id\": \"MBEDTLS_HARDWARE_ECDSA_VERIFY\",\n                        \"name\": \"MBEDTLS_HARDWARE_ECDSA_VERIFY\",\n                        \"range\": null,\n                        \"title\": \"Enable ECDSA signature verification using on-chip ECDSA peripheral\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option enables hardware acceleration for ECDSA sign function, only\\nwhen using ATECC608A cryptoauth chip (integrated with ESP32-WROOM-32SE)\",\n                        \"id\": \"MBEDTLS_ATCA_HW_ECDSA_SIGN\",\n                        \"name\": \"MBEDTLS_ATCA_HW_ECDSA_SIGN\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware ECDSA sign acceleration when using ATECC608A\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option enables hardware acceleration for ECDSA sign function, only\\nwhen using ATECC608A cryptoauth chip (integrated with ESP32-WROOM-32SE)\",\n                        \"id\": \"MBEDTLS_ATCA_HW_ECDSA_VERIFY\",\n                        \"name\": \"MBEDTLS_ATCA_HW_ECDSA_VERIFY\",\n                        \"range\": null,\n                        \"title\": \"Enable hardware ECDSA verify acceleration when using ATECC608A\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_HAVE_TIME\",\n                                \"help\": \"Enabling this config will provide users with a function\\n\\\"mbedtls_platform_set_time()\\\" that allows to set an alternative\\ntime function pointer.\",\n                                \"id\": \"MBEDTLS_PLATFORM_TIME_ALT\",\n                                \"name\": \"MBEDTLS_PLATFORM_TIME_ALT\",\n                                \"range\": null,\n                                \"title\": \"Enable mbedtls time support: platform-specific\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_HAVE_TIME\",\n                                \"help\": \"Enables X.509 certificate expiry checks in mbedTLS.\\n\\nIf this option is disabled (default) then X.509 certificate\\n\\\"valid from\\\" and \\\"valid to\\\" timestamp fields are ignored.\\n\\nIf this option is enabled, these fields are compared with the\\ncurrent system date and time. The time is retrieved using the\\nstandard time() and gmtime() functions. If the certificate is not\\nvalid for the current system time then verification will fail with\\ncode MBEDTLS_X509_BADCERT_FUTURE or MBEDTLS_X509_BADCERT_EXPIRED.\\n\\nEnabling this option requires adding functionality in the firmware\\nto set the system clock to a valid timestamp before using TLS. The\\nrecommended way to do this is via ESP-IDF's SNTP functionality, but\\nany method can be used.\\n\\nIn the case where only a small number of certificates are trusted by\\nthe device, please carefully consider the tradeoffs of enabling this\\noption. There may be undesired consequences, for example if all\\ntrusted certificates expire while the device is offline and a TLS\\nconnection is required to update. Or if an issue with the SNTP\\nserver means that the system time is invalid for an extended period\\nafter a reset.\",\n                                \"id\": \"MBEDTLS_HAVE_TIME_DATE\",\n                                \"name\": \"MBEDTLS_HAVE_TIME_DATE\",\n                                \"range\": null,\n                                \"title\": \"Enable mbedtls certificate expiry check\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!ESP_TIME_FUNCS_USE_NONE\",\n                        \"help\": \"Enable use of time.h functions (time() and gmtime()) by mbedTLS.\\n\\nThis option doesn't require the system time to be correct, but enables\\nfunctionality that requires relative timekeeping - for example periodic\\nexpiry of TLS session tickets or session cache entries.\\n\\nDisabling this option will save some firmware size, particularly if\\nthe rest of the firmware doesn't call any standard timekeeeping\\nfunctions.\",\n                        \"id\": \"MBEDTLS_HAVE_TIME\",\n                        \"name\": \"MBEDTLS_HAVE_TIME\",\n                        \"range\": null,\n                        \"title\": \"Enable mbedtls time support\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Standard ECDSA is \\\"fragile\\\" in the sense that lack of entropy when signing\\nmay result in a compromise of the long-term signing key.\",\n                        \"id\": \"MBEDTLS_ECDSA_DETERMINISTIC\",\n                        \"name\": \"MBEDTLS_ECDSA_DETERMINISTIC\",\n                        \"range\": null,\n                        \"title\": \"Enable deterministic ECDSA\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable MBEDTLS_SHA512_C adds support for SHA-384 and SHA-512.\",\n                        \"id\": \"MBEDTLS_SHA512_C\",\n                        \"name\": \"MBEDTLS_SHA512_C\",\n                        \"range\": null,\n                        \"title\": \"Enable the SHA-384 and SHA-512 cryptographic hash algorithms\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_TLS_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_TLS_SERVER_AND_CLIENT\",\n                                \"name\": \"MBEDTLS_TLS_SERVER_AND_CLIENT\",\n                                \"range\": null,\n                                \"title\": \"Server & Client\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_TLS_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_TLS_SERVER_ONLY\",\n                                \"name\": \"MBEDTLS_TLS_SERVER_ONLY\",\n                                \"range\": null,\n                                \"title\": \"Server\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_TLS_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_TLS_CLIENT_ONLY\",\n                                \"name\": \"MBEDTLS_TLS_CLIENT_ONLY\",\n                                \"range\": null,\n                                \"title\": \"Client\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice MBEDTLS_TLS_MODE>\",\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_TLS_DISABLED\",\n                                \"name\": \"MBEDTLS_TLS_DISABLED\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"mbedTLS can be compiled with protocol support for the TLS\\nserver, TLS client, or both server and client.\\n\\nReducing the number of TLS roles supported saves code size.\",\n                        \"id\": \"component-config-mbedtls-tls-protocol-role\",\n                        \"name\": \"MBEDTLS_TLS_MODE\",\n                        \"title\": \"TLS Protocol Role\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_TLS_SERVER\",\n                        \"name\": \"MBEDTLS_TLS_SERVER\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_TLS_CLIENT\",\n                        \"name\": \"MBEDTLS_TLS_CLIENT\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_TLS_ENABLED\",\n                        \"name\": \"MBEDTLS_TLS_ENABLED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_PSK\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_PSK\",\n                                        \"range\": null,\n                                        \"title\": \"Enable PSK based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_PSK_MODES && MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_DHE_PSK\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_DHE_PSK\",\n                                        \"range\": null,\n                                        \"title\": \"Enable DHE-PSK based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_PSK\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_PSK\",\n                                        \"range\": null,\n                                        \"title\": \"Enable ECDHE-PSK based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support RSA PSK (pre-shared-key) TLS authentication modes.\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_RSA_PSK\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_RSA_PSK\",\n                                        \"range\": null,\n                                        \"title\": \"Enable RSA-PSK based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                                \"help\": \"Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\\n\\nLeaving this options disabled will save code size if they are not used.\",\n                                \"id\": \"MBEDTLS_PSK_MODES\",\n                                \"name\": \"MBEDTLS_PSK_MODES\",\n                                \"range\": null,\n                                \"title\": \"Enable pre-shared-key ciphersuites\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                                \"help\": \"Enable to support ciphersuites with prefix TLS-RSA-WITH-\",\n                                \"id\": \"MBEDTLS_KEY_EXCHANGE_RSA\",\n                                \"name\": \"MBEDTLS_KEY_EXCHANGE_RSA\",\n                                \"range\": null,\n                                \"title\": \"Enable RSA-only based ciphersuite modes\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED\",\n                                \"help\": \"Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-\",\n                                \"id\": \"MBEDTLS_KEY_EXCHANGE_DHE_RSA\",\n                                \"name\": \"MBEDTLS_KEY_EXCHANGE_DHE_RSA\",\n                                \"range\": null,\n                                \"title\": \"Enable DHE-RSA based ciphersuite modes\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_RSA\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_RSA\",\n                                        \"range\": null,\n                                        \"title\": \"Enable ECDHE-RSA based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA\",\n                                        \"range\": null,\n                                        \"title\": \"Enable ECDHE-ECDSA based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA\",\n                                        \"range\": null,\n                                        \"title\": \"Enable ECDH-ECDSA based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED\",\n                                        \"help\": \"Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-\",\n                                        \"id\": \"MBEDTLS_KEY_EXCHANGE_ECDH_RSA\",\n                                        \"name\": \"MBEDTLS_KEY_EXCHANGE_ECDH_RSA\",\n                                        \"range\": null,\n                                        \"title\": \"Enable ECDH-RSA based ciphersuite modes\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED\",\n                                \"help\": \"Enable to show Elliptic Curve based ciphersuite mode options.\\n\\nDisabling all Elliptic Curve ciphersuites saves code size and\\ncan give slightly faster TLS handshakes, provided the server supports\\nRSA-only ciphersuite modes.\",\n                                \"id\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE\",\n                                \"name\": \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE\",\n                                \"range\": null,\n                                \"title\": \"Support Elliptic Curve based ciphersuites\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED\",\n                                \"help\": \"Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-\",\n                                \"id\": \"MBEDTLS_KEY_EXCHANGE_ECJPAKE\",\n                                \"name\": \"MBEDTLS_KEY_EXCHANGE_ECJPAKE\",\n                                \"range\": null,\n                                \"title\": \"Enable ECJPAKE based ciphersuite modes\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"id\": \"component-config-mbedtls-tls-key-exchange-methods\",\n                        \"title\": \"TLS Key Exchange Methods\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"help\": \"The two main uses of renegotiation are (1) refresh keys on long-lived\\nconnections and (2) client authentication after the initial handshake.\\nIf you don't need renegotiation, disabling it will save code size and\\nreduce the possibility of abuse/vulnerability.\",\n                        \"id\": \"MBEDTLS_SSL_RENEGOTIATION\",\n                        \"name\": \"MBEDTLS_SSL_RENEGOTIATION\",\n                        \"range\": null,\n                        \"title\": \"Support TLS renegotiation\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_SSL_PROTO_TLS1_2\",\n                        \"name\": \"MBEDTLS_SSL_PROTO_TLS1_2\",\n                        \"range\": null,\n                        \"title\": \"Support TLS 1.2 protocol\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"help\": \"Provisions for GM/T SSL 1.1 support\",\n                        \"id\": \"MBEDTLS_SSL_PROTO_GMTSSL1_1\",\n                        \"name\": \"MBEDTLS_SSL_PROTO_GMTSSL1_1\",\n                        \"range\": null,\n                        \"title\": \"Support GM/T SSL 1.1 protocol\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_SSL_PROTO_TLS1_2\",\n                        \"help\": \"Requires TLS 1.2 to be enabled for DTLS 1.2\",\n                        \"id\": \"MBEDTLS_SSL_PROTO_DTLS\",\n                        \"name\": \"MBEDTLS_SSL_PROTO_DTLS\",\n                        \"range\": null,\n                        \"title\": \"Support DTLS protocol (all versions)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"help\": \"Disabling this option will save some code size if it is not needed.\",\n                        \"id\": \"MBEDTLS_SSL_ALPN\",\n                        \"name\": \"MBEDTLS_SSL_ALPN\",\n                        \"range\": null,\n                        \"title\": \"Support ALPN (Application Layer Protocol Negotiation)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED\",\n                        \"help\": \"Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\\nDisabling this option will save some code size.\",\n                        \"id\": \"MBEDTLS_CLIENT_SSL_SESSION_TICKETS\",\n                        \"name\": \"MBEDTLS_CLIENT_SSL_SESSION_TICKETS\",\n                        \"range\": null,\n                        \"title\": \"TLS: Client Support for RFC 5077 SSL session tickets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C)\",\n                        \"help\": \"Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\\nDisabling this option will save some code size.\",\n                        \"id\": \"MBEDTLS_SERVER_SSL_SESSION_TICKETS\",\n                        \"name\": \"MBEDTLS_SERVER_SSL_SESSION_TICKETS\",\n                        \"range\": null,\n                        \"title\": \"TLS: Server Support for RFC 5077 SSL session tickets\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_AES_C\",\n                                \"name\": \"MBEDTLS_AES_C\",\n                                \"range\": null,\n                                \"title\": \"AES block cipher\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MBEDTLS_CAMELLIA_C\",\n                                \"name\": \"MBEDTLS_CAMELLIA_C\",\n                                \"range\": null,\n                                \"title\": \"Camellia block cipher\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the DES block cipher to support 3DES-based TLS ciphersuites.\\n\\n3DES is vulnerable to the Sweet32 attack and should only be enabled\\nif absolutely necessary.\",\n                                \"id\": \"MBEDTLS_DES_C\",\n                                \"name\": \"MBEDTLS_DES_C\",\n                                \"range\": null,\n                                \"title\": \"DES block cipher (legacy, insecure)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the Blowfish block cipher (not used for TLS sessions.)\\n\\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\\nused for other purposes. Read up on the limitations of Blowfish (including\\nSweet32) before enabling.\",\n                                \"id\": \"MBEDTLS_BLOWFISH_C\",\n                                \"name\": \"MBEDTLS_BLOWFISH_C\",\n                                \"range\": null,\n                                \"title\": \"Blowfish block cipher (read help)\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enables the XTEA block cipher.\",\n                                \"id\": \"MBEDTLS_XTEA_C\",\n                                \"name\": \"MBEDTLS_XTEA_C\",\n                                \"range\": null,\n                                \"title\": \"XTEA block cipher\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C\",\n                                \"help\": \"Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\\n\\nDisabling this option saves some code size.\",\n                                \"id\": \"MBEDTLS_CCM_C\",\n                                \"name\": \"MBEDTLS_CCM_C\",\n                                \"range\": null,\n                                \"title\": \"CCM (Counter with CBC-MAC) block cipher modes\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C\",\n                                \"help\": \"Enable Galois/Counter Mode for AES and/or Camellia ciphers.\\n\\nThis option is generally faster than CCM.\",\n                                \"id\": \"MBEDTLS_GCM_C\",\n                                \"name\": \"MBEDTLS_GCM_C\",\n                                \"range\": null,\n                                \"title\": \"GCM (Galois/Counter) block cipher modes\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_AES_C\",\n                                \"help\": \"Enable NIST key wrapping and key wrapping padding.\",\n                                \"id\": \"MBEDTLS_NIST_KW_C\",\n                                \"name\": \"MBEDTLS_NIST_KW_C\",\n                                \"range\": null,\n                                \"title\": \"NIST key wrapping (KW) and KW padding (KWP)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-mbedtls-symmetric-ciphers\",\n                        \"title\": \"Symmetric Ciphers\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable the RIPEMD-160 hash algorithm.\",\n                        \"id\": \"MBEDTLS_RIPEMD160_C\",\n                        \"name\": \"MBEDTLS_RIPEMD160_C\",\n                        \"range\": null,\n                        \"title\": \"Enable RIPEMD-160 hash algorithm\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable decoding/parsing of PEM formatted certificates.\\n\\nIf your certificates are all in the simpler DER format, disabling\\nthis option will save some code size.\",\n                                \"id\": \"MBEDTLS_PEM_PARSE_C\",\n                                \"name\": \"MBEDTLS_PEM_PARSE_C\",\n                                \"range\": null,\n                                \"title\": \"Read & Parse PEM formatted certificates\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable writing of PEM formatted certificates.\\n\\nIf writing certificate data only in DER format, disabling this\\noption will save some code size.\",\n                                \"id\": \"MBEDTLS_PEM_WRITE_C\",\n                                \"name\": \"MBEDTLS_PEM_WRITE_C\",\n                                \"range\": null,\n                                \"title\": \"Write PEM formatted certificates\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Support for parsing X.509 Certifificate Revocation Lists.\",\n                                \"id\": \"MBEDTLS_X509_CRL_PARSE_C\",\n                                \"name\": \"MBEDTLS_X509_CRL_PARSE_C\",\n                                \"range\": null,\n                                \"title\": \"X.509 CRL parsing\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Support for parsing X.509 Certifificate Signing Requests\",\n                                \"id\": \"MBEDTLS_X509_CSR_PARSE_C\",\n                                \"name\": \"MBEDTLS_X509_CSR_PARSE_C\",\n                                \"range\": null,\n                                \"title\": \"X.509 CSR parsing\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-mbedtls-certificates\",\n                        \"title\": \"Certificates\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"MBEDTLS_ECP_C\",\n                        \"is_menuconfig\": true,\n                        \"name\": \"MBEDTLS_ECP_C\",\n                        \"range\": null,\n                        \"title\": \"Elliptic Curve Ciphers\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable DHM. Needed to use DHE-xxx TLS ciphersuites.\\n\\nNote that the security of Diffie-Hellman key exchanges depends on\\na suitable prime being used for the exchange. Please see detailed\\nwarning text about this in file `mbedtls/dhm.h` file.\",\n                        \"id\": \"MBEDTLS_DHM_C\",\n                        \"name\": \"MBEDTLS_DHM_C\",\n                        \"range\": null,\n                        \"title\": \"Diffie-Hellman-Merkle key exchange (DHM)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_ECDH_C\",\n                                \"help\": \"Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.\",\n                                \"id\": \"MBEDTLS_ECDSA_C\",\n                                \"name\": \"MBEDTLS_ECDSA_C\",\n                                \"range\": null,\n                                \"title\": \"Elliptic Curve DSA\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.\",\n                        \"id\": \"MBEDTLS_ECDH_C\",\n                        \"name\": \"MBEDTLS_ECDH_C\",\n                        \"range\": null,\n                        \"title\": \"Elliptic Curve Diffie-Hellman (ECDH)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.\",\n                        \"id\": \"MBEDTLS_ECJPAKE_C\",\n                        \"name\": \"MBEDTLS_ECJPAKE_C\",\n                        \"range\": null,\n                        \"title\": \"Elliptic curve J-PAKE\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP192R1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP192R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP192R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP192R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP224R1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP224R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP224R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP224R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP256R1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP256R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP256R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP256R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP384R1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP384R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP384R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP384R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP521R1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP521R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP521R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP521R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP192K1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP192K1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP192K1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP192K1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP224K1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP224K1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP224K1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP224K1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for SECP256K1 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_SECP256K1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_SECP256K1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable SECP256K1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"support for DP Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_BP256R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_BP256R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable BP256R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"support for DP Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_BP384R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_BP384R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable BP384R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"support for DP Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_BP512R1_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_BP512R1_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable BP512R1 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"Enable support for CURVE25519 Elliptic Curve.\",\n                        \"id\": \"MBEDTLS_ECP_DP_CURVE25519_ENABLED\",\n                        \"name\": \"MBEDTLS_ECP_DP_CURVE25519_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable CURVE25519 curve\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\\n\\nDisabling this option saves some code size.\",\n                        \"id\": \"MBEDTLS_ECP_NIST_OPTIM\",\n                        \"name\": \"MBEDTLS_ECP_NIST_OPTIM\",\n                        \"range\": null,\n                        \"title\": \"NIST 'modulo p' optimisations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_ECP_C\",\n                        \"help\": \"This configuration option enables optimizations to speedup (about 3 ~ 4 times) the ECP\\nfixed point multiplication using pre-computed tables in the flash memory.\\nDisabling this configuration option saves flash footprint (about 29KB if all Elliptic Curve selected)\\nin the application binary.\\n\\n# end of Elliptic Curve options\",\n                        \"id\": \"MBEDTLS_ECP_FIXED_POINT_OPTIM\",\n                        \"name\": \"MBEDTLS_ECP_FIXED_POINT_OPTIM\",\n                        \"range\": null,\n                        \"title\": \"Enable fixed-point multiplication optimisations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support for Poly1305 MAC algorithm.\",\n                        \"id\": \"MBEDTLS_POLY1305_C\",\n                        \"name\": \"MBEDTLS_POLY1305_C\",\n                        \"range\": null,\n                        \"title\": \"Poly1305 MAC algorithm\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_C\",\n                                \"help\": \"Enable support for ChaCha20-Poly1305 AEAD algorithm.\",\n                                \"id\": \"MBEDTLS_CHACHAPOLY_C\",\n                                \"name\": \"MBEDTLS_CHACHAPOLY_C\",\n                                \"range\": null,\n                                \"title\": \"ChaCha20-Poly1305 AEAD algorithm\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support for Chacha20 stream cipher.\",\n                        \"id\": \"MBEDTLS_CHACHA20_C\",\n                        \"name\": \"MBEDTLS_CHACHA20_C\",\n                        \"range\": null,\n                        \"title\": \"Chacha20 stream cipher\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support for the Hashed Message Authentication Code\\n(HMAC)-based key derivation function (HKDF).\",\n                        \"id\": \"MBEDTLS_HKDF_C\",\n                        \"name\": \"MBEDTLS_HKDF_C\",\n                        \"range\": null,\n                        \"title\": \"HKDF algorithm (RFC 5869)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_THREADING_C\",\n                                \"help\": \"Enable threading alt to allow your own alternate threading implementation.\",\n                                \"id\": \"MBEDTLS_THREADING_ALT\",\n                                \"name\": \"MBEDTLS_THREADING_ALT\",\n                                \"range\": null,\n                                \"title\": \"Enable threading alternate implementation\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MBEDTLS_THREADING_C\",\n                                \"help\": \"Enable the pthread wrapper layer for the threading layer.\",\n                                \"id\": \"MBEDTLS_THREADING_PTHREAD\",\n                                \"name\": \"MBEDTLS_THREADING_PTHREAD\",\n                                \"range\": null,\n                                \"title\": \"Enable threading pthread implementation\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If you do intend to use contexts between threads, you will need to enable\\nthis layer to prevent race conditions.\",\n                        \"id\": \"MBEDTLS_THREADING_C\",\n                        \"name\": \"MBEDTLS_THREADING_C\",\n                        \"range\": null,\n                        \"title\": \"Enable the threading abstraction layer\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MBEDTLS_HARDWARE_MPI\",\n                        \"help\": \"Fallback to software implementation for RSA key lengths\\nlarger than SOC_RSA_MAX_BIT_LEN. If this is not active\\nthen the ESP will be unable to process keys greater\\nthan SOC_RSA_MAX_BIT_LEN.\",\n                        \"id\": \"MBEDTLS_LARGE_KEY_SOFTWARE_MPI\",\n                        \"name\": \"MBEDTLS_LARGE_KEY_SOFTWARE_MPI\",\n                        \"range\": null,\n                        \"title\": \"Fallback to software implementation for larger MPI values\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-mbedtls\",\n                \"title\": \"mbedTLS\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If not, this library will use MQTT protocol 3.1\",\n                        \"id\": \"MQTT_PROTOCOL_311\",\n                        \"name\": \"MQTT_PROTOCOL_311\",\n                        \"range\": null,\n                        \"title\": \"Enable MQTT protocol 3.1.1\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If not, this library will not support MQTT 5.0\",\n                        \"id\": \"MQTT_PROTOCOL_5\",\n                        \"name\": \"MQTT_PROTOCOL_5\",\n                        \"range\": null,\n                        \"title\": \"Enable MQTT protocol 5.0\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable MQTT transport over SSL with mbedtls\",\n                        \"id\": \"MQTT_TRANSPORT_SSL\",\n                        \"name\": \"MQTT_TRANSPORT_SSL\",\n                        \"range\": null,\n                        \"title\": \"Enable MQTT over SSL\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_SSL\",\n                                \"help\": \"Enable MQTT transport over Websocket Secure.\",\n                                \"id\": \"MQTT_TRANSPORT_WEBSOCKET_SECURE\",\n                                \"name\": \"MQTT_TRANSPORT_WEBSOCKET_SECURE\",\n                                \"range\": null,\n                                \"title\": \"Enable MQTT over Websocket Secure\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"WS_TRANSPORT\",\n                        \"help\": \"Enable MQTT transport over Websocket.\",\n                        \"id\": \"MQTT_TRANSPORT_WEBSOCKET\",\n                        \"name\": \"MQTT_TRANSPORT_WEBSOCKET\",\n                        \"range\": null,\n                        \"title\": \"Enable MQTT over Websocket\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set this to true for the message id (2.3.1 Packet Identifier) to be generated\\nas an incremental number rather then a random value (used by default)\",\n                        \"id\": \"MQTT_MSG_ID_INCREMENTAL\",\n                        \"name\": \"MQTT_MSG_ID_INCREMENTAL\",\n                        \"range\": null,\n                        \"title\": \"Use Incremental Message Id\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set this to true to avoid publishing (enqueueing messages) if the client is disconnected.\\nThe MQTT client tries to publish all messages by default, even in the disconnected state\\n(where the qos1 and qos2 packets are stored in the internal outbox to be published later)\\nThe MQTT_SKIP_PUBLISH_IF_DISCONNECTED option allows applications to override this behaviour\\nand not enqueue publish packets in the disconnected state.\",\n                        \"id\": \"MQTT_SKIP_PUBLISH_IF_DISCONNECTED\",\n                        \"name\": \"MQTT_SKIP_PUBLISH_IF_DISCONNECTED\",\n                        \"range\": null,\n                        \"title\": \"Skip publish if disconnected\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set this to true to post events for all messages which were deleted from the outbox\\nbefore being correctly sent and confirmed.\",\n                        \"id\": \"MQTT_REPORT_DELETED_MESSAGES\",\n                        \"name\": \"MQTT_REPORT_DELETED_MESSAGES\",\n                        \"range\": null,\n                        \"title\": \"Report deleted messages\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"Default MQTT over TCP port\",\n                                \"id\": \"MQTT_TCP_DEFAULT_PORT\",\n                                \"name\": \"MQTT_TCP_DEFAULT_PORT\",\n                                \"range\": null,\n                                \"title\": \"Default MQTT over TCP port\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_SSL\",\n                                \"help\": \"Default MQTT over SSL port\",\n                                \"id\": \"MQTT_SSL_DEFAULT_PORT\",\n                                \"name\": \"MQTT_SSL_DEFAULT_PORT\",\n                                \"range\": null,\n                                \"title\": \"Default MQTT over SSL port\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET\",\n                                \"help\": \"Default MQTT over Websocket port\",\n                                \"id\": \"MQTT_WS_DEFAULT_PORT\",\n                                \"name\": \"MQTT_WS_DEFAULT_PORT\",\n                                \"range\": null,\n                                \"title\": \"Default MQTT over Websocket port\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_WEBSOCKET_SECURE\",\n                                \"help\": \"Default MQTT over Websocket Secure port\",\n                                \"id\": \"MQTT_WSS_DEFAULT_PORT\",\n                                \"name\": \"MQTT_WSS_DEFAULT_PORT\",\n                                \"range\": null,\n                                \"title\": \"Default MQTT over Websocket Secure port\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"This buffer size using for both transmit and receive\",\n                                \"id\": \"MQTT_BUFFER_SIZE\",\n                                \"name\": \"MQTT_BUFFER_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Default MQTT Buffer Size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"MQTT task stack size\",\n                                \"id\": \"MQTT_TASK_STACK_SIZE\",\n                                \"name\": \"MQTT_TASK_STACK_SIZE\",\n                                \"range\": null,\n                                \"title\": \"MQTT task stack size\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"Default config employs API locks to protect internal structures. It is possible to disable\\nthese locks if the user code doesn't access MQTT API from multiple concurrent tasks\",\n                                \"id\": \"MQTT_DISABLE_API_LOCKS\",\n                                \"name\": \"MQTT_DISABLE_API_LOCKS\",\n                                \"range\": null,\n                                \"title\": \"Disable API locks\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"MQTT task priority. Higher number denotes higher priority.\",\n                                \"id\": \"MQTT_TASK_PRIORITY\",\n                                \"name\": \"MQTT_TASK_PRIORITY\",\n                                \"range\": null,\n                                \"title\": \"MQTT task priority\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"Timeout when polling underlying transport for read.\",\n                                \"id\": \"MQTT_POLL_READ_TIMEOUT_MS\",\n                                \"name\": \"MQTT_POLL_READ_TIMEOUT_MS\",\n                                \"range\": null,\n                                \"title\": \"MQTT transport poll read timeut\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                                \"help\": \"A value higher than 1 enables multiple queued events.\",\n                                \"id\": \"MQTT_EVENT_QUEUE_SIZE\",\n                                \"name\": \"MQTT_EVENT_QUEUE_SIZE\",\n                                \"range\": null,\n                                \"title\": \"Number of queued events.\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Custom MQTT configurations.\",\n                        \"id\": \"MQTT_USE_CUSTOM_CONFIG\",\n                        \"name\": \"MQTT_USE_CUSTOM_CONFIG\",\n                        \"range\": null,\n                        \"title\": \"MQTT Using custom configurations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MQTT_TASK_CORE_SELECTION>\",\n                                        \"help\": null,\n                                        \"id\": \"MQTT_USE_CORE_0\",\n                                        \"name\": \"MQTT_USE_CORE_0\",\n                                        \"range\": null,\n                                        \"title\": \"Core 0\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice MQTT_TASK_CORE_SELECTION>\",\n                                        \"help\": null,\n                                        \"id\": \"MQTT_USE_CORE_1\",\n                                        \"name\": \"MQTT_USE_CORE_1\",\n                                        \"range\": null,\n                                        \"title\": \"Core 1\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"MQTT_TASK_CORE_SELECTION_ENABLED\",\n                                \"help\": null,\n                                \"id\": \"component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-\",\n                                \"name\": \"MQTT_TASK_CORE_SELECTION\",\n                                \"title\": \"Core to use ?\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This will enable core selection\",\n                        \"id\": \"MQTT_TASK_CORE_SELECTION_ENABLED\",\n                        \"name\": \"MQTT_TASK_CORE_SELECTION_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable MQTT task core selection\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                        \"help\": \"Set to true to use external memory for outbox data.\",\n                        \"id\": \"MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY\",\n                        \"name\": \"MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY\",\n                        \"range\": null,\n                        \"title\": \"Use external memory for outbox data\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Set to true if a specific implementation of message outbox is needed (e.g. persistent outbox in NVM or\\nsimilar).\\nNote: Implementation of the custom outbox must be added to the mqtt component. These CMake commands\\ncould be used to append the custom implementation to lib-mqtt sources:\\nidf_component_get_property(mqtt mqtt COMPONENT_LIB)\\nset_property(TARGET ${mqtt} PROPERTY SOURCES ${PROJECT_DIR}/custom_outbox.c APPEND)\",\n                        \"id\": \"MQTT_CUSTOM_OUTBOX\",\n                        \"name\": \"MQTT_CUSTOM_OUTBOX\",\n                        \"range\": null,\n                        \"title\": \"Enable custom outbox implementation\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"MQTT_USE_CUSTOM_CONFIG\",\n                        \"help\": \"Messages which stays in the outbox longer than this value before being published will be discarded.\",\n                        \"id\": \"MQTT_OUTBOX_EXPIRED_TIMEOUT_MS\",\n                        \"name\": \"MQTT_OUTBOX_EXPIRED_TIMEOUT_MS\",\n                        \"range\": null,\n                        \"title\": \"Outbox message expired timeout[ms]\",\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-esp-mqtt-configurations\",\n                \"title\": \"ESP-MQTT Configurations\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_CRLF\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_CRLF\",\n                                \"range\": null,\n                                \"title\": \"CRLF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_LF\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_LF\",\n                                \"range\": null,\n                                \"title\": \"LF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDOUT_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDOUT_LINE_ENDING_CR\",\n                                \"name\": \"NEWLIB_STDOUT_LINE_ENDING_CR\",\n                                \"range\": null,\n                                \"title\": \"CR\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This option allows configuring the desired line endings sent to UART\\nwhen a newline ('\\\\n', LF) appears on stdout.\\nThree options are possible:\\n\\nCRLF: whenever LF is encountered, prepend it with CR\\n\\nLF: no modification is applied, stdout is sent as is\\n\\nCR: each occurence of LF is replaced with CR\\n\\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).\",\n                        \"id\": \"component-config-newlib-line-ending-for-uart-output\",\n                        \"name\": \"NEWLIB_STDOUT_LINE_ENDING\",\n                        \"title\": \"Line ending for UART output\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_CRLF\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_CRLF\",\n                                \"range\": null,\n                                \"title\": \"CRLF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_LF\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_LF\",\n                                \"range\": null,\n                                \"title\": \"LF\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_STDIN_LINE_ENDING>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_STDIN_LINE_ENDING_CR\",\n                                \"name\": \"NEWLIB_STDIN_LINE_ENDING_CR\",\n                                \"range\": null,\n                                \"title\": \"CR\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This option allows configuring which input sequence on UART produces\\na newline ('\\\\n', LF) on stdin.\\nThree options are possible:\\n\\nCRLF: CRLF is converted to LF\\n\\nLF: no modification is applied, input is sent to stdin as is\\n\\nCR: each occurence of CR is replaced with LF\\n\\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).\",\n                        \"id\": \"component-config-newlib-line-ending-for-uart-input\",\n                        \"name\": \"NEWLIB_STDIN_LINE_ENDING\",\n                        \"title\": \"Line ending for UART input\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"In most chips the ROM contains parts of newlib C library, including printf/scanf family\\nof functions. These functions have been compiled with so-called \\\"nano\\\"\\nformatting option. This option doesn't support 64-bit integer formats and C99\\nfeatures, such as positional arguments.\\n\\nFor more details about \\\"nano\\\" formatting option, please see newlib readme file,\\nsearch for '--enable-newlib-nano-formatted-io':\\nhttps://sourceware.org/newlib/README\\n\\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\\nwill use functions available in ROM, reducing the application binary size.\\nFunctions available in ROM run faster than functions which run from flash. Functions available\\nin ROM can also run when flash instruction cache is disabled.\\n\\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\\nthe nano versions and in this building with newlib nano might actually increase the size of\\nthe binary. Which functions are present in ROM can be seen from ROM caps:\\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\\n\\nIf you need 64-bit integer formatting support or C99 features, keep this\\noption disabled.\",\n                        \"id\": \"NEWLIB_NANO_FORMAT\",\n                        \"name\": \"NEWLIB_NANO_FORMAT\",\n                        \"range\": null,\n                        \"title\": \"Enable 'nano' formatting options for printf/scanf family\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\",\n                                \"range\": null,\n                                \"title\": \"RTC and high-resolution timer\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_RTC\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_RTC\",\n                                \"range\": null,\n                                \"title\": \"RTC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_HRT\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_HRT\",\n                                \"range\": null,\n                                \"title\": \"High-resolution timer\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice NEWLIB_TIME_SYSCALL>\",\n                                \"help\": null,\n                                \"id\": \"NEWLIB_TIME_SYSCALL_USE_NONE\",\n                                \"name\": \"NEWLIB_TIME_SYSCALL_USE_NONE\",\n                                \"range\": null,\n                                \"title\": \"None\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"This setting defines which hardware timers are used to\\nimplement 'gettimeofday' and 'time' functions in C library.\\n\\n- If both high-resolution (systimer for all targets except ESP32)\\n    and RTC timers are used, timekeeping will continue in deep sleep.\\n    Time will be reported at 1 microsecond resolution.\\n    This is the default, and the recommended option.\\n- If only high-resolution timer (systimer) is used, gettimeofday will\\n    provide time at microsecond resolution.\\n    Time will not be preserved when going into deep sleep mode.\\n- If only RTC timer is used, timekeeping will continue in\\n    deep sleep, but time will be measured at 6.(6) microsecond\\n    resolution. Also the gettimeofday function itself may take\\n    longer to run.\\n- If no timers are used, gettimeofday and time functions\\n    return -1 and set errno to ENOSYS.\\n- When RTC is used for timekeeping, two RTC_STORE registers are\\n    used to keep time in deep sleep mode.\",\n                        \"id\": \"component-config-newlib-timers-used-for-gettimeofday-function\",\n                        \"name\": \"NEWLIB_TIME_SYSCALL\",\n                        \"title\": \"Timers used for gettimeofday function\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-newlib\",\n                \"title\": \"Newlib\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"This option enables encryption for NVS. When enabled, AES-XTS is used to encrypt\\nthe complete NVS data, except the page headers. It requires XTS encryption keys\\nto be stored in an encrypted partition. This means enabling flash encryption is\\na pre-requisite for this feature.\",\n                        \"id\": \"NVS_ENCRYPTION\",\n                        \"name\": \"NVS_ENCRYPTION\",\n                        \"range\": null,\n                        \"title\": \"Enable NVS encryption\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SECURE_FLASH_ENC_ENABLED\",\n                        \"help\": \"Enabling this will ignore \\\"encrypted\\\" flag for NVS partitions. NVS encryption\\nscheme is different than hardware flash encryption and hence it is not recommended\\nto have \\\"encrypted\\\" flag for NVS partitions. This was not being checked in pre v4.3\\nIDF. Hence, if you have any devices where this flag is kept enabled in partition\\ntable then enabling this config will allow to have same behavior as pre v4.3 IDF.\",\n                        \"id\": \"NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG\",\n                        \"name\": \"NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG\",\n                        \"range\": null,\n                        \"title\": \"NVS partition encrypted flag compatible with ESP-IDF before v4.3\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option switches error checking type between assertions (y) or return codes (n).\",\n                        \"id\": \"NVS_ASSERT_ERROR_CHECK\",\n                        \"name\": \"NVS_ASSERT_ERROR_CHECK\",\n                        \"range\": null,\n                        \"title\": \"Use assertions for error checking\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-nvs\",\n                \"title\": \"NVS\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"OPENTHREAD_ENABLED\",\n                                \"help\": \"Select this option to enable dynamic log level control for OpenThread\",\n                                \"id\": \"OPENTHREAD_LOG_LEVEL_DYNAMIC\",\n                                \"name\": \"OPENTHREAD_LOG_LEVEL_DYNAMIC\",\n                                \"range\": null,\n                                \"title\": \"Enable dynamic log level control\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(ESP_CONSOLE_UART_DEFAULT || ESP_CONSOLE_UART_CUSTOM) && <choice OPENTHREAD_CONSOLE_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_CONSOLE_TYPE_UART\",\n                                        \"name\": \"OPENTHREAD_CONSOLE_TYPE_UART\",\n                                        \"range\": null,\n                                        \"title\": \"OpenThread console type UART\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"(ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG) && <choice OPENTHREAD_CONSOLE_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG\",\n                                        \"name\": \"OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG\",\n                                        \"range\": null,\n                                        \"title\": \"OpenThread console type USB Serial/JTAG Controller\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"OPENTHREAD_ENABLED\",\n                                \"help\": \"Select OpenThread console type\",\n                                \"id\": \"component-config-openthread-openthread-openthread-console-type\",\n                                \"name\": \"OPENTHREAD_CONSOLE_TYPE\",\n                                \"title\": \"OpenThread console type\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_NONE\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_NONE\",\n                                        \"range\": null,\n                                        \"title\": \"No logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_CRIT\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_CRIT\",\n                                        \"range\": null,\n                                        \"title\": \"Error logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_WARN\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_WARN\",\n                                        \"range\": null,\n                                        \"title\": \"Warning logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_NOTE\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_NOTE\",\n                                        \"range\": null,\n                                        \"title\": \"Notice logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_INFO\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_INFO\",\n                                        \"range\": null,\n                                        \"title\": \"Info logs\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"<choice OPENTHREAD_LOG_LEVEL>\",\n                                        \"help\": null,\n                                        \"id\": \"OPENTHREAD_LOG_LEVEL_DEBG\",\n                                        \"name\": \"OPENTHREAD_LOG_LEVEL_DEBG\",\n                                        \"range\": null,\n                                        \"title\": \"Debug logs\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"OPENTHREAD_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC\",\n                                \"help\": \"Select OpenThread log level.\",\n                                \"id\": \"component-config-openthread-openthread-openthread-log-verbosity\",\n                                \"name\": \"OPENTHREAD_LOG_LEVEL\",\n                                \"title\": \"OpenThread log verbosity\",\n                                \"type\": \"choice\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Select this option to enable OpenThread and show the submenu with OpenThread configuration choices.\",\n                        \"id\": \"OPENTHREAD_ENABLED\",\n                        \"name\": \"OPENTHREAD_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"OpenThread\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"OPENTHREAD_NETWORK_NAME\",\n                                \"name\": \"OPENTHREAD_NETWORK_NAME\",\n                                \"range\": null,\n                                \"title\": \"OpenThread network name\",\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"A string in the format \\\"<address>/<plen>\\\", where `<address>` is an IPv6\\naddress and `<plen>` is a prefix length. For example \\\"fd00:db8:a0:0::/64\\\"\",\n                                \"id\": \"OPENTHREAD_MESH_LOCAL_PREFIX\",\n                                \"name\": \"OPENTHREAD_MESH_LOCAL_PREFIX\",\n                                \"range\": null,\n                                \"title\": \"OpenThread mesh local prefix, format <address>/<plen>\",\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"OPENTHREAD_NETWORK_CHANNEL\",\n                                \"name\": \"OPENTHREAD_NETWORK_CHANNEL\",\n                                \"range\": [\n                                    11,\n                                    26\n                                ],\n                                \"title\": \"OpenThread network channel\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"OPENTHREAD_NETWORK_PANID\",\n                                \"name\": \"OPENTHREAD_NETWORK_PANID\",\n                                \"range\": [\n                                    0,\n                                    65534\n                                ],\n                                \"title\": \"OpenThread network pan id\",\n                                \"type\": \"hex\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The OpenThread network extended pan id in hex string format\",\n                                \"id\": \"OPENTHREAD_NETWORK_EXTPANID\",\n                                \"name\": \"OPENTHREAD_NETWORK_EXTPANID\",\n                                \"range\": null,\n                                \"title\": \"OpenThread extended pan id\",\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The OpenThread network network key in hex string format\",\n                                \"id\": \"OPENTHREAD_NETWORK_MASTERKEY\",\n                                \"name\": \"OPENTHREAD_NETWORK_MASTERKEY\",\n                                \"range\": null,\n                                \"title\": \"OpenThread network key\",\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"The OpenThread pre-shared commissioner key in hex string format\",\n                                \"id\": \"OPENTHREAD_NETWORK_PSKC\",\n                                \"name\": \"OPENTHREAD_NETWORK_PSKC\",\n                                \"range\": null,\n                                \"title\": \"OpenThread pre-shared commissioner key\",\n                                \"type\": \"string\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-openthread-thread-operational-dataset\",\n                        \"title\": \"Thread Operational Dataset\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC\",\n                        \"help\": null,\n                        \"id\": \"OPENTHREAD_LOG_LEVEL\",\n                        \"name\": \"OPENTHREAD_LOG_LEVEL\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_RADIO_TYPE>\",\n                                \"help\": \"Select this to use the native 15.4 radio.\",\n                                \"id\": \"OPENTHREAD_RADIO_NATIVE\",\n                                \"name\": \"OPENTHREAD_RADIO_NATIVE\",\n                                \"range\": null,\n                                \"title\": \"Native 15.4 radio\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_RADIO_TYPE>\",\n                                \"help\": \"Select this to connect to a Radio Co-Processor via UART.\",\n                                \"id\": \"OPENTHREAD_RADIO_SPINEL_UART\",\n                                \"name\": \"OPENTHREAD_RADIO_SPINEL_UART\",\n                                \"range\": null,\n                                \"title\": \"Connect via UART\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_RADIO_TYPE>\",\n                                \"help\": \"Select this to connect to a Radio Co-Processor via SPI.\",\n                                \"id\": \"OPENTHREAD_RADIO_SPINEL_SPI\",\n                                \"name\": \"OPENTHREAD_RADIO_SPINEL_SPI\",\n                                \"range\": null,\n                                \"title\": \"Connect via SPI\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Configure how OpenThread connects to the 15.4 radio\",\n                        \"id\": \"component-config-openthread-config-the-thread-radio-type\",\n                        \"name\": \"OPENTHREAD_RADIO_TYPE\",\n                        \"title\": \"Config the Thread radio type\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_DEVICE_TYPE>\",\n                                \"help\": \"Select this to enable Full Thread Device which can act as router and leader in a Thread network.\",\n                                \"id\": \"OPENTHREAD_FTD\",\n                                \"name\": \"OPENTHREAD_FTD\",\n                                \"range\": null,\n                                \"title\": \"Full Thread Device\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_DEVICE_TYPE>\",\n                                \"help\": \"Select this to enable Minimal Thread Device which can only act as end device in a Thread network.\\nThis will reduce the code size of the OpenThread stack.\",\n                                \"id\": \"OPENTHREAD_MTD\",\n                                \"name\": \"OPENTHREAD_MTD\",\n                                \"range\": null,\n                                \"title\": \"Minimal Thread Device\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_DEVICE_TYPE>\",\n                                \"help\": \"Select this to enable Radio Only Device which can only forward 15.4 packets to the host.\\nThe OpenThread stack will be run on the host and OpenThread will have minimal footprint on the\\nradio only device.\",\n                                \"id\": \"OPENTHREAD_RADIO\",\n                                \"name\": \"OPENTHREAD_RADIO\",\n                                \"range\": null,\n                                \"title\": \"Radio Only Device\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"OpenThread can be configured to different device types (FTD, MTD, Radio)\",\n                        \"id\": \"component-config-openthread-config-the-thread-device-type\",\n                        \"name\": \"OPENTHREAD_DEVICE_TYPE\",\n                        \"title\": \"Config the Thread device type\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_RCP_TRANSPORT>\",\n                                \"help\": \"Select this to enable UART connection to host.\",\n                                \"id\": \"OPENTHREAD_RCP_UART\",\n                                \"name\": \"OPENTHREAD_RCP_UART\",\n                                \"range\": null,\n                                \"title\": \"UART RCP\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice OPENTHREAD_RCP_TRANSPORT>\",\n                                \"help\": \"Select this to enable SPI connection to host.\",\n                                \"id\": \"OPENTHREAD_RCP_SPI\",\n                                \"name\": \"OPENTHREAD_RCP_SPI\",\n                                \"range\": null,\n                                \"title\": \"SPI RCP\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_RADIO\",\n                        \"help\": null,\n                        \"id\": \"component-config-openthread-the-rcp-transport-type\",\n                        \"name\": \"OPENTHREAD_RCP_TRANSPORT\",\n                        \"title\": \"The RCP transport type\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable Command-Line Interface in OpenThread.\",\n                        \"id\": \"OPENTHREAD_CLI\",\n                        \"name\": \"OPENTHREAD_CLI\",\n                        \"range\": null,\n                        \"title\": \"Enable Openthread Command-Line Interface\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag commands\\nin the OpenThread command line. These commands allow users to manipulate low-level features of the storage\\nand 15.4 radio.\",\n                        \"id\": \"OPENTHREAD_DIAG\",\n                        \"name\": \"OPENTHREAD_DIAG\",\n                        \"range\": null,\n                        \"title\": \"Enable diag\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"OPENTHREAD_COMMISSIONER\",\n                                \"help\": null,\n                                \"id\": \"OPENTHREAD_COMM_MAX_JOINER_ENTRIES\",\n                                \"name\": \"OPENTHREAD_COMM_MAX_JOINER_ENTRIES\",\n                                \"range\": null,\n                                \"title\": \"The size of max commissioning joiner entries\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable commissioner in OpenThread. This will enable the device to act as a\\ncommissioner in the Thread network. A commissioner checks the pre-shared key from a joining device with\\nthe Thread commissioning protocol and shares the network parameter with the joining device upon success.\",\n                        \"id\": \"OPENTHREAD_COMMISSIONER\",\n                        \"name\": \"OPENTHREAD_COMMISSIONER\",\n                        \"range\": null,\n                        \"title\": \"Enable Commissioner\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable Joiner in OpenThread. This allows a device to join the Thread network with a\\npre-shared key using the Thread commissioning protocol.\",\n                        \"id\": \"OPENTHREAD_JOINER\",\n                        \"name\": \"OPENTHREAD_JOINER\",\n                        \"range\": null,\n                        \"title\": \"Enable Joiner\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"OPENTHREAD_SRP_CLIENT\",\n                                \"help\": \"Set the max buffer size of service entries in the SRP client service pool.\",\n                                \"id\": \"OPENTHREAD_SRP_CLIENT_MAX_SERVICES\",\n                                \"name\": \"OPENTHREAD_SRP_CLIENT_MAX_SERVICES\",\n                                \"range\": null,\n                                \"title\": \"Specifies number of service entries in the SRP client service pool\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable SRP Client in OpenThread. This allows a device to register SRP services to SRP\\nServer.\",\n                        \"id\": \"OPENTHREAD_SRP_CLIENT\",\n                        \"name\": \"OPENTHREAD_SRP_CLIENT\",\n                        \"range\": null,\n                        \"title\": \"Enable SRP Client\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable DNS Client in OpenThread.\",\n                        \"id\": \"OPENTHREAD_DNS_CLIENT\",\n                        \"name\": \"OPENTHREAD_DNS_CLIENT\",\n                        \"range\": null,\n                        \"title\": \"Enable DNS Client\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable border router features in OpenThread.\",\n                        \"id\": \"OPENTHREAD_BORDER_ROUTER\",\n                        \"name\": \"OPENTHREAD_BORDER_ROUTER\",\n                        \"range\": null,\n                        \"title\": \"Enable Border Router\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)\",\n                        \"help\": \"If enabled, the message pool is managed by platform defined logic.\",\n                        \"id\": \"OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT\",\n                        \"name\": \"OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT\",\n                        \"range\": null,\n                        \"title\": \"Allocate message pool buffer from PSRAM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"OPENTHREAD_NUM_MESSAGE_BUFFERS\",\n                        \"name\": \"OPENTHREAD_NUM_MESSAGE_BUFFERS\",\n                        \"range\": null,\n                        \"title\": \"The number of openthread message buffers\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE\",\n                        \"name\": \"OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE\",\n                        \"range\": null,\n                        \"title\": \"The size of openthread spinel rx frame buffer\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"OPENTHREAD_MLE_MAX_CHILDREN\",\n                        \"name\": \"OPENTHREAD_MLE_MAX_CHILDREN\",\n                        \"range\": null,\n                        \"title\": \"The size of max MLE children entries\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"OPENTHREAD_TMF_ADDR_CACHE_ENTRIES\",\n                        \"name\": \"OPENTHREAD_TMF_ADDR_CACHE_ENTRIES\",\n                        \"range\": null,\n                        \"title\": \"The size of max TMF address cache entries\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"OPENTHREAD_DNS64_CLIENT\",\n                                \"help\": \"Set the DNS server IPv4 address.\",\n                                \"id\": \"OPENTHREAD_DNS_SERVER_ADDR\",\n                                \"name\": \"OPENTHREAD_DNS_SERVER_ADDR\",\n                                \"range\": null,\n                                \"title\": \"DNS server address (IPv4)\",\n                                \"type\": \"string\"\n                            }\n                        ],\n                        \"depends_on\": \"OPENTHREAD_ENABLED && LWIP_IPV4\",\n                        \"help\": \"Select this option to acquire NAT64 address from dns servers.\",\n                        \"id\": \"OPENTHREAD_DNS64_CLIENT\",\n                        \"name\": \"OPENTHREAD_DNS64_CLIENT\",\n                        \"range\": null,\n                        \"title\": \"Use dns64 client\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Set the OpenThread UART buffer size.\",\n                        \"id\": \"OPENTHREAD_UART_BUFFER_SIZE\",\n                        \"name\": \"OPENTHREAD_UART_BUFFER_SIZE\",\n                        \"range\": null,\n                        \"title\": \"The uart received buffer size of openthread\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable link metrics feature\",\n                        \"id\": \"OPENTHREAD_LINK_METRICS\",\n                        \"name\": \"OPENTHREAD_LINK_METRICS\",\n                        \"range\": null,\n                        \"title\": \"Enable link metrics feature\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable mac filter feature\",\n                        \"id\": \"OPENTHREAD_MACFILTER_ENABLE\",\n                        \"name\": \"OPENTHREAD_MACFILTER_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable mac filter feature\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable CSL feature\",\n                        \"id\": \"OPENTHREAD_CSL_ENABLE\",\n                        \"name\": \"OPENTHREAD_CSL_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable CSL feature\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The device's XTAL accuracy, in ppm.\",\n                        \"id\": \"OPENTHREAD_XTAL_ACCURACY\",\n                        \"name\": \"OPENTHREAD_XTAL_ACCURACY\",\n                        \"range\": null,\n                        \"title\": \"The accuracy of the XTAL\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_CSL_ENABLE\",\n                        \"help\": \"The current accuracy of the clock used for scheduling CSL operations\",\n                        \"id\": \"OPENTHREAD_CSL_ACCURACY\",\n                        \"name\": \"OPENTHREAD_CSL_ACCURACY\",\n                        \"range\": null,\n                        \"title\": \"The current CSL rx/tx scheduling drift, in units of \\u00b1 ppm\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_CSL_ENABLE\",\n                        \"help\": \"The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.\",\n                        \"id\": \"OPENTHREAD_CSL_UNCERTAIN\",\n                        \"name\": \"OPENTHREAD_CSL_UNCERTAIN\",\n                        \"range\": null,\n                        \"title\": \"The CSL Uncertainty in units of 10 us.\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_CSL_ENABLE\",\n                        \"help\": \"Select this option to set rx on when sleep in CSL feature, only for debug\",\n                        \"id\": \"OPENTHREAD_CSL_DEBUG_ENABLE\",\n                        \"name\": \"OPENTHREAD_CSL_DEBUG_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable CSL debug\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Only used for Thread1.2 certification\",\n                        \"id\": \"OPENTHREAD_DUA_ENABLE\",\n                        \"name\": \"OPENTHREAD_DUA_ENABLE\",\n                        \"range\": null,\n                        \"title\": \"Enable Domain Unicast Address feature\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"OPENTHREAD_ENABLED\",\n                        \"help\": \"Select this option to enable time synchronization feature, the devices in the same Thread network could\\nsync to the same network time.\",\n                        \"id\": \"OPENTHREAD_TIME_SYNC\",\n                        \"name\": \"OPENTHREAD_TIME_SYNC\",\n                        \"range\": null,\n                        \"title\": \"Enable the time synchronization service feature\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-openthread\",\n                \"title\": \"OpenThread\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support of security version 0.\\nDisabling this option saves some code size.\\nConsult the Enabling protocomm security version section of the\\nProtocomm documentation in ESP-IDF Programming guide for more details.\",\n                        \"id\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0\",\n                        \"name\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0\",\n                        \"range\": null,\n                        \"title\": \"Support protocomm security version 0 (no security)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support of security version 1.\\nDisabling this option saves some code size.\\nConsult the Enabling protocomm security version section of the\\nProtocomm documentation in ESP-IDF Programming guide for more details.\",\n                        \"id\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1\",\n                        \"name\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1\",\n                        \"range\": null,\n                        \"title\": \"Support protocomm security version 1 (Curve25519 key exchange + AES-CTR encryption/decryption)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable support of security version 2.\\nDisabling this option saves some code size.\\nConsult the Enabling protocomm security version section of the\\nProtocomm documentation in ESP-IDF Programming guide for more details.\",\n                        \"id\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2\",\n                        \"name\": \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2\",\n                        \"range\": null,\n                        \"title\": \"Support protocomm security version 2 (SRP6a-based key exchange + AES-GCM encryption/decryption)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BT_ENABLED\",\n                        \"help\": \"Keep BT on after calling protocomm_ble_stop\",\n                        \"id\": \"ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP\",\n                        \"name\": \"ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP\",\n                        \"help\": \"Terminate connection after calling protocomm_ble_stop\",\n                        \"id\": \"ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP\",\n                        \"name\": \"ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-protocomm\",\n                \"title\": \"Protocomm\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Priority used to create new tasks with default pthread parameters.\",\n                        \"id\": \"PTHREAD_TASK_PRIO_DEFAULT\",\n                        \"name\": \"PTHREAD_TASK_PRIO_DEFAULT\",\n                        \"range\": [\n                            0,\n                            255\n                        ],\n                        \"title\": \"Default task priority\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Stack size used to create new tasks with default pthread parameters.\",\n                        \"id\": \"PTHREAD_TASK_STACK_SIZE_DEFAULT\",\n                        \"name\": \"PTHREAD_TASK_STACK_SIZE_DEFAULT\",\n                        \"range\": null,\n                        \"title\": \"Default task stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Minimum allowed pthread stack size set in attributes passed to pthread_create\",\n                        \"id\": \"PTHREAD_STACK_MIN\",\n                        \"name\": \"PTHREAD_STACK_MIN\",\n                        \"range\": null,\n                        \"title\": \"Minimum allowed pthread stack size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice PTHREAD_TASK_CORE_DEFAULT>\",\n                                \"help\": null,\n                                \"id\": \"PTHREAD_DEFAULT_CORE_NO_AFFINITY\",\n                                \"name\": \"PTHREAD_DEFAULT_CORE_NO_AFFINITY\",\n                                \"range\": null,\n                                \"title\": \"No affinity\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice PTHREAD_TASK_CORE_DEFAULT>\",\n                                \"help\": null,\n                                \"id\": \"PTHREAD_DEFAULT_CORE_0\",\n                                \"name\": \"PTHREAD_DEFAULT_CORE_0\",\n                                \"range\": null,\n                                \"title\": \"Core 0\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice PTHREAD_TASK_CORE_DEFAULT>\",\n                                \"help\": null,\n                                \"id\": \"PTHREAD_DEFAULT_CORE_1\",\n                                \"name\": \"PTHREAD_DEFAULT_CORE_1\",\n                                \"range\": null,\n                                \"title\": \"Core 1\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!FREERTOS_UNICORE\",\n                        \"help\": \"The default core to which pthreads are pinned.\",\n                        \"id\": \"component-config-pthreads-default-pthread-core-affinity\",\n                        \"name\": \"PTHREAD_TASK_CORE_DEFAULT\",\n                        \"title\": \"Default pthread core affinity\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"PTHREAD_TASK_CORE_DEFAULT\",\n                        \"name\": \"PTHREAD_TASK_CORE_DEFAULT\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"The default name of pthreads.\",\n                        \"id\": \"PTHREAD_TASK_NAME_DEFAULT\",\n                        \"name\": \"PTHREAD_TASK_NAME_DEFAULT\",\n                        \"range\": null,\n                        \"title\": \"Default name of pthreads\",\n                        \"type\": \"string\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-pthreads\",\n                \"title\": \"PThreads\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_16KB\",\n                                \"name\": \"MMU_PAGE_SIZE_16KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_32KB\",\n                                \"name\": \"MMU_PAGE_SIZE_32KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE_64KB\",\n                                \"name\": \"MMU_PAGE_SIZE_64KB\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_MODE\",\n                                \"name\": \"MMU_PAGE_MODE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": null,\n                                \"id\": \"MMU_PAGE_SIZE\",\n                                \"name\": \"MMU_PAGE_SIZE\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"hex\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-soc-settings-mmu-config\",\n                        \"title\": \"MMU Config\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-soc-settings\",\n                \"title\": \"SoC Settings\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If this option is enabled, if SPI flash write verification fails then a log error line\\nwill be written with the address, expected & actual values. This can be useful when\\ndebugging hardware SPI flash problems.\",\n                                \"id\": \"SPI_FLASH_LOG_FAILED_WRITE\",\n                                \"name\": \"SPI_FLASH_LOG_FAILED_WRITE\",\n                                \"range\": null,\n                                \"title\": \"Log errors if verification fails\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\\nones will log a warning. Such writes will not result in the requested data appearing identically\\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\\nAfter erasing, individual bits can only be written from one to zero.\\n\\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\\nSuch software will log spurious warnings if this option is enabled.\",\n                                \"id\": \"SPI_FLASH_WARN_SETTING_ZERO_TO_ONE\",\n                                \"name\": \"SPI_FLASH_WARN_SETTING_ZERO_TO_ONE\",\n                                \"range\": null,\n                                \"title\": \"Log warning if writing zero bits to ones\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"If this option is enabled, any time SPI flash is written then the data will be read\\nback and verified. This can catch hardware problems with SPI flash, or flash which\\nwas not erased before verification.\",\n                        \"id\": \"SPI_FLASH_VERIFY_WRITE\",\n                        \"name\": \"SPI_FLASH_VERIFY_WRITE\",\n                        \"range\": null,\n                        \"title\": \"Verify SPI flash writes\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option enables the following APIs:\\n\\n- esp_flash_reset_counters\\n- esp_flash_dump_counters\\n- esp_flash_get_counters\\n\\nThese APIs may be used to collect performance data for spi_flash APIs\\nand to help understand behaviour of libraries which use SPI flash.\",\n                        \"id\": \"SPI_FLASH_ENABLE_COUNTERS\",\n                        \"name\": \"SPI_FLASH_ENABLE_COUNTERS\",\n                        \"range\": null,\n                        \"title\": \"Enable operation counters\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Enable this flag to use patched versions of SPI flash ROM driver functions.\\nThis option should be enabled, if any one of the following is true: (1) need to write\\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\\nSPI flash chip is manufactured by ISSI.\",\n                        \"id\": \"SPI_FLASH_ROM_DRIVER_PATCH\",\n                        \"name\": \"SPI_FLASH_ROM_DRIVER_PATCH\",\n                        \"range\": null,\n                        \"title\": \"Enable SPI flash ROM driver patched functions\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ESP_ROM_HAS_SPI_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\\n\\nIf keeping this as \\\"n\\\" in your project, you will have less free IRAM.\\nBut you can use all of our flash features.\\n\\nIf making this as \\\"y\\\" in your project, you will increase free IRAM.\\nBut you may miss out on some flash features and support for new flash chips.\\n\\nCurrently the ROM cannot support the following features:\\n\\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)\",\n                        \"id\": \"SPI_FLASH_ROM_IMPL\",\n                        \"name\": \"SPI_FLASH_ROM_IMPL\",\n                        \"range\": null,\n                        \"title\": \"Use esp_flash implementation in ROM\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\",\n                                \"range\": null,\n                                \"title\": \"Aborts\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_FAILS\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_FAILS\",\n                                \"range\": null,\n                                \"title\": \"Fails\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice SPI_FLASH_DANGEROUS_WRITE>\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\",\n                                \"name\": \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\",\n                                \"range\": null,\n                                \"title\": \"Allowed\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"SPI flash APIs can optionally abort or return a failure code\\nif erasing or writing addresses that fall at the beginning\\nof flash (covering the bootloader and partition table) or that\\noverlap the app partition that contains the running app.\\n\\nIt is not recommended to ever write to these regions from an IDF app,\\nand this check prevents logic errors or corrupted firmware memory from\\ndamaging these regions.\\n\\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\\nROM functions. These functions should not be called directly from IDF\\napplications.\",\n                        \"id\": \"component-config-spi-flash-driver-writing-to-dangerous-flash-regions\",\n                        \"name\": \"SPI_FLASH_DANGEROUS_WRITE\",\n                        \"title\": \"Writing to dangerous flash regions\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Each SPI bus needs a lock for arbitration among devices. This allows multiple\\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\\nmain flash chip.\\n\\nIf you only need to use esp_flash driver to access the main flash chip, disable\\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\\nare needed to attach to SPI1 bus, enable this option.\",\n                        \"id\": \"SPI_FLASH_SHARE_SPI1_BUS\",\n                        \"name\": \"SPI_FLASH_SHARE_SPI1_BUS\",\n                        \"range\": null,\n                        \"title\": \"Support other devices attached to SPI1 bus\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Some flash chips can have very high \\\"max\\\" erase times, especially for block erase (32KB or 64KB).\\nThis option allows to bypass \\\"block erase\\\" and always do sector erase commands.\\nThis will be much slower overall in most cases, but improves latency for other code to run.\",\n                        \"id\": \"SPI_FLASH_BYPASS_BLOCK_ERASE\",\n                        \"name\": \"SPI_FLASH_BYPASS_BLOCK_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Bypass a block erase and always do sector erase\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"If a duration of one erase command is large\\nthen it will yield CPUs after finishing a current command.\",\n                                \"id\": \"SPI_FLASH_ERASE_YIELD_DURATION_MS\",\n                                \"name\": \"SPI_FLASH_ERASE_YIELD_DURATION_MS\",\n                                \"range\": null,\n                                \"title\": \"Duration of erasing to yield CPUs (ms)\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Defines how many ticks will be before returning to continue a erasing.\",\n                                \"id\": \"SPI_FLASH_ERASE_YIELD_TICKS\",\n                                \"name\": \"SPI_FLASH_ERASE_YIELD_TICKS\",\n                                \"range\": null,\n                                \"title\": \"CPU release time (tick) for an erase operation\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This allows to yield the CPUs between erase commands.\\nPrevents starvation of other tasks.\\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\\nwatchdog timeout.\\nFor more information, please check `SPI Flash API` reference documenation\\nunder section `OS Function`.\",\n                        \"id\": \"SPI_FLASH_YIELD_DURING_ERASE\",\n                        \"name\": \"SPI_FLASH_YIELD_DURING_ERASE\",\n                        \"range\": null,\n                        \"title\": \"Enables yield operation during flash erase\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"IDF_TARGET_ESP32C3 && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is default n before ESP32-C3, because it needs bootloader support.\\n\\nCAUTION: If you want to OTA to an app with this feature turned on, please make\\nsure the bootloader has the support for it. (later than IDF v4.3)\\n\\nAuto-suspend feature only supported by XMC chip.\\nIf you are using an official module, please contact Espressif Business support.\\nAlso reading auto suspend part in `SPI Flash API` document before you enable this function.\",\n                        \"id\": \"SPI_FLASH_AUTO_SUSPEND\",\n                        \"name\": \"SPI_FLASH_AUTO_SUSPEND\",\n                        \"range\": null,\n                        \"title\": \"Auto suspend long erase/write operations (READ DOCS FIRST)\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"Flash write is broken down in terms of multiple (smaller) write operations.\\nThis configuration options helps to set individual write chunk size, smaller\\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\\ndisabled for shorter duration.\",\n                        \"id\": \"SPI_FLASH_WRITE_CHUNK_SIZE\",\n                        \"name\": \"SPI_FLASH_WRITE_CHUNK_SIZE\",\n                        \"range\": [\n                            256,\n                            8192\n                        ],\n                        \"title\": \"Flash write chunk size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"SPI Flash driver uses the flash size configured in bootloader header by default.\\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\\nthe app header if the size in the bootloader header is incorrect.\",\n                        \"id\": \"SPI_FLASH_SIZE_OVERRIDE\",\n                        \"name\": \"SPI_FLASH_SIZE_OVERRIDE\",\n                        \"range\": null,\n                        \"title\": \"Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.\",\n                        \"id\": \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\",\n                        \"name\": \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\",\n                        \"range\": null,\n                        \"title\": \"Flash timeout checkout disabled\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option allows the chip driver list to be customized, instead of using the default list provided by\\nESP-IDF.\\n\\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\\n`default_registered_chips` structure must be provided by the user.\\n\\nSee example: custom_chip_driver under examples/storage for more details.\",\n                        \"id\": \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\",\n                        \"name\": \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\",\n                        \"range\": null,\n                        \"title\": \"Override default chip driver list\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"When this option is selected, the patch will be enabled for XMC.\\nFollow the recommended flow by XMC for better stability.\\n\\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.\",\n                                \"id\": \"SPI_FLASH_BROWNOUT_RESET_XMC\",\n                                \"name\": \"SPI_FLASH_BROWNOUT_RESET_XMC\",\n                                \"range\": null,\n                                \"title\": \"Enable sending reset when brownout for XMC flash chips\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"When brownout happens during flash erase/write operations,\\nsend reset command to stop the flash operations to improve stability.\",\n                                \"id\": \"SPI_FLASH_BROWNOUT_RESET\",\n                                \"name\": \"SPI_FLASH_BROWNOUT_RESET\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"id\": \"component-config-spi-flash-driver-spi-flash-behavior-when-brownout\",\n                        \"title\": \"SPI Flash behavior when brownout\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_XMC_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_XMC_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_GD_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_GD_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": null,\n                                \"id\": \"SPI_FLASH_VENDOR_TH_SUPPORTED\",\n                                \"name\": \"SPI_FLASH_VENDOR_TH_SUPPORTED\",\n                                \"range\": null,\n                                \"title\": null,\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of ISSI chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_ISSI_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_ISSI_CHIP\",\n                                \"range\": null,\n                                \"title\": \"ISSI\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of MXIC chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_MXIC_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_MXIC_CHIP\",\n                                \"range\": null,\n                                \"title\": \"MXIC\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\\nmode.\\n\\nThis adds support for variant chips, however will extend detecting time and image\\nsize. Note that the default chip driver supports the GD chips with product ID\\n60H.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_GD_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_GD_CHIP\",\n                                \"range\": null,\n                                \"title\": \"GigaDevice\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of Winbond chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_WINBOND_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_WINBOND_CHIP\",\n                                \"range\": null,\n                                \"title\": \"Winbond\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of BOYA chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_BOYA_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_BOYA_CHIP\",\n                                \"range\": null,\n                                \"title\": \"BOYA\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of TH chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_TH_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_TH_CHIP\",\n                                \"range\": null,\n                                \"title\": \"TH\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP\",\n                                \"help\": \"Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\\nchips, however will extend detecting time.\",\n                                \"id\": \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\",\n                                \"name\": \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\",\n                                \"range\": null,\n                                \"title\": \"mxic (opi)\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"id\": \"component-config-spi-flash-driver-auto-detect-flash-chips\",\n                        \"title\": \"Auto-detect flash chips\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option enables flash read/write operations to encrypted partition/s. This option\\nis kept enabled irrespective of state of flash encryption feature. However, in case\\napplication is not using flash encryption feature and is in need of some additional\\nmemory from IRAM region (~1KB) then this config can be disabled.\",\n                        \"id\": \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\",\n                        \"name\": \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\",\n                        \"range\": null,\n                        \"title\": \"Enable encrypted partition read/write operations\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                        \"help\": \"This option is invisible, and will be selected automatically\\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.\",\n                        \"id\": \"SPI_FLASH_HPM_ENABLE\",\n                        \"name\": \"SPI_FLASH_HPM_ENABLE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": \"!APP_BUILD_TYPE_PURE_RAM_APP\",\n                \"id\": \"component-config-spi-flash-driver\",\n                \"title\": \"SPI Flash driver\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Define maximum number of partitions that can be mounted.\",\n                        \"id\": \"SPIFFS_MAX_PARTITIONS\",\n                        \"name\": \"SPIFFS_MAX_PARTITIONS\",\n                        \"range\": [\n                            1,\n                            10\n                        ],\n                        \"title\": \"Maximum Number of Partitions\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIFFS_CACHE\",\n                                        \"help\": \"Enables memory write caching for file descriptors in hydrogen.\",\n                                        \"id\": \"SPIFFS_CACHE_WR\",\n                                        \"name\": \"SPIFFS_CACHE_WR\",\n                                        \"range\": null,\n                                        \"title\": \"Enable SPIFFS Write Caching\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SPIFFS_CACHE\",\n                                        \"help\": \"Enable/disable statistics on caching. Debug/test purpose only.\",\n                                        \"id\": \"SPIFFS_CACHE_STATS\",\n                                        \"name\": \"SPIFFS_CACHE_STATS\",\n                                        \"range\": null,\n                                        \"title\": \"Enable SPIFFS Cache Statistics\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enables/disable memory read caching of nucleus file system\\noperations.\",\n                                \"id\": \"SPIFFS_CACHE\",\n                                \"name\": \"SPIFFS_CACHE\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Cache\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-spiffs-configuration-spiffs-cache-configuration\",\n                        \"title\": \"SPIFFS Cache Configuration\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Always check header of each accessed page to ensure consistent state.\\nIf enabled it will increase number of reads from flash, especially\\nif cache is disabled.\",\n                        \"id\": \"SPIFFS_PAGE_CHECK\",\n                        \"name\": \"SPIFFS_PAGE_CHECK\",\n                        \"range\": null,\n                        \"title\": \"Enable SPIFFS Page Check\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Define maximum number of GC runs to perform to reach desired free pages.\",\n                        \"id\": \"SPIFFS_GC_MAX_RUNS\",\n                        \"name\": \"SPIFFS_GC_MAX_RUNS\",\n                        \"range\": [\n                            1,\n                            10000\n                        ],\n                        \"title\": \"Set Maximum GC Runs\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Enable/disable statistics on gc. Debug/test purpose only.\",\n                        \"id\": \"SPIFFS_GC_STATS\",\n                        \"name\": \"SPIFFS_GC_STATS\",\n                        \"range\": null,\n                        \"title\": \"Enable SPIFFS GC Statistics\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Logical page size of SPIFFS partition, in bytes. Must be multiple\\nof flash page size (which is usually 256 bytes).\\nLarger page sizes reduce overhead when storing large files, and\\nimprove filesystem performance when reading large files.\\nSmaller page sizes reduce overhead when storing small (< page size)\\nfiles.\",\n                        \"id\": \"SPIFFS_PAGE_SIZE\",\n                        \"name\": \"SPIFFS_PAGE_SIZE\",\n                        \"range\": [\n                            256,\n                            1024\n                        ],\n                        \"title\": \"SPIFFS logical page size\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Object name maximum length. Note that this length include the\\nzero-termination character, meaning maximum string of characters\\ncan at most be SPIFFS_OBJ_NAME_LEN - 1.\\n\\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\\nSPIFFS_PAGE_SIZE - 64.\",\n                        \"id\": \"SPIFFS_OBJ_NAME_LEN\",\n                        \"name\": \"SPIFFS_OBJ_NAME_LEN\",\n                        \"range\": [\n                            1,\n                            256\n                        ],\n                        \"title\": \"Set SPIFFS Maximum Name Length\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If this option is enabled, symbolic links are taken into account\\nduring partition image creation.\",\n                        \"id\": \"SPIFFS_FOLLOW_SYMLINKS\",\n                        \"name\": \"SPIFFS_FOLLOW_SYMLINKS\",\n                        \"range\": null,\n                        \"title\": \"Enable symbolic links for image creation\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPIFFS_USE_MAGIC\",\n                                \"help\": \"If this option is enabled, the magic will also be dependent\\non the length of the filesystem. For example, a filesystem\\nconfigured and formatted for 4 megabytes will not be accepted\\nfor mounting with a configuration defining the filesystem as 2 megabytes.\",\n                                \"id\": \"SPIFFS_USE_MAGIC_LENGTH\",\n                                \"name\": \"SPIFFS_USE_MAGIC_LENGTH\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Filesystem Length Magic\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Enable this to have an identifiable spiffs filesystem.\\nThis will look for a magic in all sectors to determine if this\\nis a valid spiffs system or not at mount time.\",\n                        \"id\": \"SPIFFS_USE_MAGIC\",\n                        \"name\": \"SPIFFS_USE_MAGIC\",\n                        \"range\": null,\n                        \"title\": \"Enable SPIFFS Filesystem Magic\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This option sets the number of extra bytes stored in the file header.\\nThese bytes can be used in an application-specific manner.\\nSet this to at least 4 bytes to enable support for saving file\\nmodification time.\\n\\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\\nSPIFFS_PAGE_SIZE - 64.\",\n                        \"id\": \"SPIFFS_META_LENGTH\",\n                        \"name\": \"SPIFFS_META_LENGTH\",\n                        \"range\": null,\n                        \"title\": \"Size of per-file metadata field\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPIFFS_META_LENGTH >= 4\",\n                        \"help\": \"If enabled, then the first 4 bytes of per-file metadata will be used\\nto store file modification time (mtime), accessible through\\nstat/fstat functions.\\nModification time is updated when the file is opened.\",\n                        \"id\": \"SPIFFS_USE_MTIME\",\n                        \"name\": \"SPIFFS_USE_MTIME\",\n                        \"range\": null,\n                        \"title\": \"Save file modification time\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"SPIFFS_META_LENGTH >= 8\",\n                        \"help\": \"If this option is not set, the time field is 32 bits (up to 2106 year),\\notherwise it is 64 bits and make sure it matches SPIFFS_META_LENGTH.\\nIf the chip already has the spiffs image with the time field = 32 bits\\nthen this option cannot be applied in this case.\\nErase it first before using this option.\\nTo resolve the Y2K38 problem for the spiffs, use a toolchain with\\n64-bit time_t support.\",\n                        \"id\": \"SPIFFS_MTIME_WIDE_64_BITS\",\n                        \"name\": \"SPIFFS_MTIME_WIDE_64_BITS\",\n                        \"range\": null,\n                        \"title\": \"The time field occupies 64 bits in the image instead of 32 bits\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enabling this option will print general debug mesages to the console.\",\n                                \"id\": \"SPIFFS_DBG\",\n                                \"name\": \"SPIFFS_DBG\",\n                                \"range\": null,\n                                \"title\": \"Enable general SPIFFS debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enabling this option will print API debug mesages to the console.\",\n                                \"id\": \"SPIFFS_API_DBG\",\n                                \"name\": \"SPIFFS_API_DBG\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS API debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enabling this option will print GC debug mesages to the console.\",\n                                \"id\": \"SPIFFS_GC_DBG\",\n                                \"name\": \"SPIFFS_GC_DBG\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Garbage Cleaner debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"SPIFFS_CACHE\",\n                                \"help\": \"Enabling this option will print cache debug mesages to the console.\",\n                                \"id\": \"SPIFFS_CACHE_DBG\",\n                                \"name\": \"SPIFFS_CACHE_DBG\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Cache debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enabling this option will print Filesystem Check debug mesages\\nto the console.\",\n                                \"id\": \"SPIFFS_CHECK_DBG\",\n                                \"name\": \"SPIFFS_CHECK_DBG\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Filesystem Check debug\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": null,\n                                \"help\": \"Enable this option to enable SPIFFS_vis function in the API.\",\n                                \"id\": \"SPIFFS_TEST_VISUALISATION\",\n                                \"name\": \"SPIFFS_TEST_VISUALISATION\",\n                                \"range\": null,\n                                \"title\": \"Enable SPIFFS Filesystem Visualization\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-spiffs-configuration-debug-configuration\",\n                        \"title\": \"Debug Configuration\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-spiffs-configuration\",\n                \"title\": \"SPIFFS Configuration\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"WS_TRANSPORT\",\n                                        \"help\": \"Size of the buffer used for constructing the HTTP Upgrade request during connect\",\n                                        \"id\": \"WS_BUFFER_SIZE\",\n                                        \"name\": \"WS_BUFFER_SIZE\",\n                                        \"range\": null,\n                                        \"title\": \"Websocket transport buffer size\",\n                                        \"type\": \"int\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"WS_TRANSPORT\",\n                                        \"help\": \"If enable this option, websocket transport buffer will be freed after connection\\nsucceed to save more heap.\",\n                                        \"id\": \"WS_DYNAMIC_BUFFER\",\n                                        \"name\": \"WS_DYNAMIC_BUFFER\",\n                                        \"range\": null,\n                                        \"title\": \"Using dynamic websocket transport buffer\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": null,\n                                \"help\": \"Enable support for creating websocket transport.\",\n                                \"id\": \"WS_TRANSPORT\",\n                                \"name\": \"WS_TRANSPORT\",\n                                \"range\": null,\n                                \"title\": \"Enable Websocket Transport\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-tcp-transport-websocket\",\n                        \"title\": \"Websocket\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-tcp-transport\",\n                \"title\": \"TCP Transport\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_ULP_FSM_SUPPORTED && <choice ULP_COPROC_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"ULP_COPROC_TYPE_FSM\",\n                                        \"name\": \"ULP_COPROC_TYPE_FSM\",\n                                        \"range\": null,\n                                        \"title\": \"ULP FSM (Finite State Machine)\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_RISCV_COPROC_SUPPORTED && <choice ULP_COPROC_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"ULP_COPROC_TYPE_RISCV\",\n                                        \"name\": \"ULP_COPROC_TYPE_RISCV\",\n                                        \"range\": null,\n                                        \"title\": \"ULP RISC-V\",\n                                        \"type\": \"bool\"\n                                    },\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"SOC_LP_CORE_SUPPORTED && <choice ULP_COPROC_TYPE>\",\n                                        \"help\": null,\n                                        \"id\": \"ULP_COPROC_TYPE_LP_CORE\",\n                                        \"name\": \"ULP_COPROC_TYPE_LP_CORE\",\n                                        \"range\": null,\n                                        \"title\": \"LP core RISC-V\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                                \"help\": \"Choose the ULP Coprocessor type: ULP FSM (Finite State Machine) or ULP RISC-V.\",\n                                \"id\": \"component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type\",\n                                \"name\": \"ULP_COPROC_TYPE\",\n                                \"title\": \"ULP Co-processor type\",\n                                \"type\": \"choice\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                                \"help\": \"Bytes of memory to reserve for ULP Co-processor firmware & data.\\nData is reserved at the beginning of RTC slow memory.\",\n                                \"id\": \"ULP_COPROC_RESERVE_MEM\",\n                                \"name\": \"ULP_COPROC_RESERVE_MEM\",\n                                \"range\": null,\n                                \"title\": \"RTC slow memory reserved for coprocessor\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED\",\n                        \"help\": \"Enable this feature if you plan to use the ULP Co-processor.\\nOnce this option is enabled, further ULP co-processor configuration will appear in the menu.\",\n                        \"id\": \"ULP_COPROC_ENABLED\",\n                        \"name\": \"ULP_COPROC_ENABLED\",\n                        \"range\": null,\n                        \"title\": \"Enable Ultra Low Power (ULP) Co-processor\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                                \"help\": \"The accuracy of the bitbanged UART driver is limited, it is not\\nrecommend to increase the value above 19200.\",\n                                \"id\": \"ULP_RISCV_UART_BAUDRATE\",\n                                \"name\": \"ULP_RISCV_UART_BAUDRATE\",\n                                \"range\": null,\n                                \"title\": \"Baudrate used by the bitbanged ULP RISC-V UART driver\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                                \"help\": \"Set the ULP RISC-V I2C read/write timeout. Set this value to -1\\nif the ULP RISC-V I2C read and write APIs should wait forever.\\nPlease note that the tick rate of the ULP co-processor would be\\ndifferent than the OS tick rate of the main core and therefore\\ncan have different timeout value depending on which core the API\\nis invoked on.\",\n                                \"id\": \"ULP_RISCV_I2C_RW_TIMEOUT\",\n                                \"name\": \"ULP_RISCV_I2C_RW_TIMEOUT\",\n                                \"range\": null,\n                                \"title\": \"Set timeout for ULP RISC-V I2C transaction timeout in ticks.\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": \"ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                        \"id\": \"component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings\",\n                        \"title\": \"ULP RISC-V Settings\",\n                        \"type\": \"menu\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)\",\n                        \"help\": \"Size of the shared memory defined in ulp_lp_core_memory_shared.c.\\nSize should be kept in-sync with the size of the struct defined there.\",\n                        \"id\": \"ULP_SHARED_MEM\",\n                        \"name\": \"ULP_SHARED_MEM\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"hex\"\n                    }\n                ],\n                \"depends_on\": \"SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED\",\n                \"id\": \"component-config-ultra-low-power-ulp-co-processor\",\n                \"title\": \"Ultra Low Power (ULP) Co-processor\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If not set, assertions on float arguments will not be available.\",\n                        \"id\": \"UNITY_ENABLE_FLOAT\",\n                        \"name\": \"UNITY_ENABLE_FLOAT\",\n                        \"range\": null,\n                        \"title\": \"Support for float type\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If not set, assertions on double arguments will not be available.\",\n                        \"id\": \"UNITY_ENABLE_DOUBLE\",\n                        \"name\": \"UNITY_ENABLE_DOUBLE\",\n                        \"range\": null,\n                        \"title\": \"Support for double type\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If not set, assertions on 64-bit integer types will always fail.\\nIf this feature is enabled, take care not to pass pointers (which are 32 bit)\\nto UNITY_ASSERT_EQUAL, as that will cause pointer-to-int-cast warnings.\",\n                        \"id\": \"UNITY_ENABLE_64BIT\",\n                        \"name\": \"UNITY_ENABLE_64BIT\",\n                        \"range\": null,\n                        \"title\": \"Support for 64-bit integer types\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If set, Unity will colorize test results using console escape sequences.\",\n                        \"id\": \"UNITY_ENABLE_COLOR\",\n                        \"name\": \"UNITY_ENABLE_COLOR\",\n                        \"range\": null,\n                        \"title\": \"Colorize test output\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If set, then the following features will be available:\\n\\n- TEST_CASE macro which performs automatic registration of test functions\\n- Functions to run registered test functions: unity_run_all_tests,\\n  unity_run_tests_with_filter, unity_run_single_test_by_name.\\n- Interactive menu which lists test cases and allows choosing the tests to\\n  be run, available via unity_run_menu function.\\n\\nDisable if a different test registration mechanism is used.\",\n                        \"id\": \"UNITY_ENABLE_IDF_TEST_RUNNER\",\n                        \"name\": \"UNITY_ENABLE_IDF_TEST_RUNNER\",\n                        \"range\": null,\n                        \"title\": \"Include ESP-IDF test registration/running helpers\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If set, unity_fixture.h header file and associated source files are part of\\nthe build. These provide an optional set of macros and functions to\\nimplement test groups.\",\n                        \"id\": \"UNITY_ENABLE_FIXTURE\",\n                        \"name\": \"UNITY_ENABLE_FIXTURE\",\n                        \"range\": null,\n                        \"title\": \"Include Unity test fixture\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"If set, the unity framework will print the backtrace information before\\njumping back to the test menu. The jumping is usually occurs in assert\\nfunctions such as TEST_ASSERT, TEST_FAIL etc.\",\n                        \"id\": \"UNITY_ENABLE_BACKTRACE_ON_FAIL\",\n                        \"name\": \"UNITY_ENABLE_BACKTRACE_ON_FAIL\",\n                        \"range\": null,\n                        \"title\": \"Print a backtrace when a unit test fails\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-unity-unit-testing-library\",\n                \"title\": \"Unity unit testing library\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"USB_OTG_SUPPORTED\",\n                        \"name\": \"USB_OTG_SUPPORTED\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"USB_OTG_SUPPORTED\",\n                        \"help\": \"Each USB device attached is allocated a dedicated buffer for its OUT/IN transfers to/from the device's\\ncontrol endpoint. The maximum size of that buffer is determined by this option. The limited size of the\\ntransfer buffer have the following implications:\\n- The maximum length of control transfers is limited\\n- Device's with configuration descriptors larger than this limit cannot be supported\",\n                        \"id\": \"USB_HOST_CONTROL_TRANSFER_MAX_SIZE\",\n                        \"name\": \"USB_HOST_CONTROL_TRANSFER_MAX_SIZE\",\n                        \"range\": null,\n                        \"title\": \"Largest size (in bytes) of transfers to/from default endpoints\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice USB_HOST_HW_BUFFER_BIAS>\",\n                                \"help\": null,\n                                \"id\": \"USB_HOST_HW_BUFFER_BIAS_BALANCED\",\n                                \"name\": \"USB_HOST_HW_BUFFER_BIAS_BALANCED\",\n                                \"range\": null,\n                                \"title\": \"Balanced\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice USB_HOST_HW_BUFFER_BIAS>\",\n                                \"help\": null,\n                                \"id\": \"USB_HOST_HW_BUFFER_BIAS_IN\",\n                                \"name\": \"USB_HOST_HW_BUFFER_BIAS_IN\",\n                                \"range\": null,\n                                \"title\": \"Bias IN\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice USB_HOST_HW_BUFFER_BIAS>\",\n                                \"help\": null,\n                                \"id\": \"USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT\",\n                                \"name\": \"USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT\",\n                                \"range\": null,\n                                \"title\": \"Periodic OUT\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"USB_OTG_SUPPORTED\",\n                        \"help\": \"The underlying hardware has size adjustable FIFOs to cache USB packets on reception (IN) or for\\ntransmission (OUT). The size of these FIFOs will affect the largest MPS (maximum packet size) and the\\nmaximum number of packets that can be cached at any one time. The hardware contains the following\\nFIFOS: RX (for all IN packets), Non-periodic TX (for Bulk and Control OUT packets), and Periodic TX\\n(for Interrupt and Isochronous OUT packets). This configuration option allows biasing the FIFO sizes\\ntowards a particular use case, which may be necessary for devices that have endpoints with large MPS.\\nThe MPS limits for each biasing are listed below:\\n\\nBalanced:\\n- IN (all transfer types), 408 bytes\\n- OUT non-periodic (Bulk/Control), 192 bytes (i.e., 3 x 64 byte packets)\\n- OUT periodic (Interrupt/Isochronous), 192 bytes\\n\\nBias IN:\\n- IN (all transfer types), 600 bytes\\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\\n- OUT periodic (Interrupt/Isochronous), 128 bytes\\n\\nBias Periodic OUT:\\n- IN (all transfer types), 128 bytes\\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\\n- OUT periodic (Interrupt/Isochronous), 600 bytes\",\n                        \"id\": \"component-config-usb-otg-hardware-fifo-size-biasing\",\n                        \"name\": \"USB_HOST_HW_BUFFER_BIAS\",\n                        \"title\": \"Hardware FIFO size biasing\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"USB_OTG_SUPPORTED\",\n                                \"help\": \"On connection of a USB device, the USB 2.0 specification requires a \\\"debounce interval with a minimum\\nduration of 100ms\\\" to allow the connection to stabilize (see USB 2.0 chapter 7.1.7.3 for more details).\\nDuring the debounce interval, no new connection/disconnection events are registered.\\n\\nThe default value is set to 250 ms to be safe.\",\n                                \"id\": \"USB_HOST_DEBOUNCE_DELAY_MS\",\n                                \"name\": \"USB_HOST_DEBOUNCE_DELAY_MS\",\n                                \"range\": null,\n                                \"title\": \"Debounce delay in ms\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"USB_OTG_SUPPORTED\",\n                                \"help\": \"The reset signaling can be generated on any Hub or Host Controller port by request from the USB System\\nSoftware. The USB 2.0 specification requires that \\\"the reset signaling must be driven for a minimum of\\n10ms\\\" (see USB 2.0 chapter 7.1.7.5 for more details).  After the reset, the hub port will transition to\\nthe Enabled state (refer to Section 11.5).\\n\\nThe default value is set to 30 ms to be safe.\",\n                                \"id\": \"USB_HOST_RESET_HOLD_MS\",\n                                \"name\": \"USB_HOST_RESET_HOLD_MS\",\n                                \"range\": null,\n                                \"title\": \"Reset hold in ms\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"USB_OTG_SUPPORTED\",\n                                \"help\": \"After a port stops driving the reset signal, the USB 2.0 specification requires that the \\\"USB System\\nSoftware guarantees a minimum of 10 ms for reset recovery\\\" before the attached device is expected to\\nrespond to data transfers (see USB 2.0 chapter 7.1.7.3 for more details). The device may ignore any\\ndata transfers during the recovery interval.\\n\\nThe default value is set to 30 ms to be safe.\",\n                                \"id\": \"USB_HOST_RESET_RECOVERY_MS\",\n                                \"name\": \"USB_HOST_RESET_RECOVERY_MS\",\n                                \"range\": null,\n                                \"title\": \"Reset recovery delay in ms\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"USB_OTG_SUPPORTED\",\n                                \"help\": \"\\\"After successful completion of the Status stage, the device is allowed a SetAddress() recovery\\ninterval of 2 ms. At the end of this interval, the device must be able to accept Setup packets\\naddressed to the new address. Also, at the end of the recovery interval, the device must not respond to\\ntokens sent to the old address (unless, of course, the old and new address is the same).\\\" See USB 2.0\\nchapter 9.2.6.3 for more details.\\n\\nThe default value is set to 10 ms to be safe.\",\n                                \"id\": \"USB_HOST_SET_ADDR_RECOVERY_MS\",\n                                \"name\": \"USB_HOST_SET_ADDR_RECOVERY_MS\",\n                                \"range\": null,\n                                \"title\": \"SetAddress() recovery time in ms\",\n                                \"type\": \"int\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"id\": \"component-config-usb-otg-root-hub-configuration\",\n                        \"title\": \"Root Hub configuration\",\n                        \"type\": \"menu\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-usb-otg\",\n                \"title\": \"USB-OTG\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"VFS_SUPPORT_IO\",\n                                \"help\": \"If enabled, the following functions are provided by the VFS component.\\n\\nstat, link, unlink, rename, utime, access, truncate, rmdir, mkdir,\\nopendir, closedir, readdir, readdir_r, seekdir, telldir, rewinddir\\n\\nFilesystem drivers can then be registered to handle these functions\\nfor specific paths.\\n\\nDisabling this option can save memory when the support for these functions\\nis not required.\",\n                                \"id\": \"VFS_SUPPORT_DIR\",\n                                \"name\": \"VFS_SUPPORT_DIR\",\n                                \"range\": null,\n                                \"title\": \"Provide directory related functions\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"VFS_SUPPORT_SELECT\",\n                                        \"help\": \"Select() related functions might produce an unconveniently lot of\\ndebug outputs when one sets the default log level to DEBUG or higher.\\nIt is possible to suppress these debug outputs by enabling this\\noption.\",\n                                        \"id\": \"VFS_SUPPRESS_SELECT_DEBUG_OUTPUT\",\n                                        \"name\": \"VFS_SUPPRESS_SELECT_DEBUG_OUTPUT\",\n                                        \"range\": null,\n                                        \"title\": \"Suppress select() related debug outputs\",\n                                        \"type\": \"bool\"\n                                    }\n                                ],\n                                \"depends_on\": \"VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT\",\n                                \"help\": \"If enabled, select function is provided by the VFS component, and can be used\\non peripheral file descriptors (such as UART) and sockets at the same time.\\n\\nIf disabled, the default select implementation will be provided by LWIP for\\nsockets only.\\n\\nDisabling this option can reduce code size if support for \\\"select\\\" on UART file\\ndescriptors is not required.\",\n                                \"id\": \"VFS_SUPPORT_SELECT\",\n                                \"name\": \"VFS_SUPPORT_SELECT\",\n                                \"range\": null,\n                                \"title\": \"Provide select function\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"VFS_SUPPORT_IO\",\n                                \"help\": \"Disabling this option can save memory when the support for termios.h is not required.\",\n                                \"id\": \"VFS_SUPPORT_TERMIOS\",\n                                \"name\": \"VFS_SUPPORT_TERMIOS\",\n                                \"range\": null,\n                                \"title\": \"Provide termios.h functions\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"VFS_SUPPORT_IO\",\n                                \"help\": \"Define maximum number of virtual filesystems that can be registered.\",\n                                \"id\": \"VFS_MAX_COUNT\",\n                                \"name\": \"VFS_MAX_COUNT\",\n                                \"range\": [\n                                    1,\n                                    20\n                                ],\n                                \"title\": \"Maximum Number of Virtual Filesystems\",\n                                \"type\": \"int\"\n                            },\n                            {\n                                \"children\": [\n                                    {\n                                        \"children\": [],\n                                        \"depends_on\": \"VFS_SUPPORT_IO\",\n                                        \"help\": \"Define maximum number of host filesystem mount points.\",\n                                        \"id\": \"VFS_SEMIHOSTFS_MAX_MOUNT_POINTS\",\n                                        \"name\": \"VFS_SEMIHOSTFS_MAX_MOUNT_POINTS\",\n                                        \"range\": null,\n                                        \"title\": \"Host FS: Maximum number of the host filesystem mount points\",\n                                        \"type\": \"int\"\n                                    }\n                                ],\n                                \"depends_on\": \"VFS_SUPPORT_IO\",\n                                \"id\": \"component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-\",\n                                \"title\": \"Host File System I/O (Semihosting)\",\n                                \"type\": \"menu\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"If enabled, the following functions are provided by the VFS component.\\n\\nopen, close, read, write, pread, pwrite, lseek, fstat, fsync, ioctl, fcntl\\n\\nFilesystem drivers can then be registered to handle these functions\\nfor specific paths.\\n\\nDisabling this option can save memory when the support for these functions\\nis not required.\\n\\nNote that the following functions can still be used with socket file descriptors\\nwhen this option is disabled:\\n\\nclose, read, write, ioctl, fcntl.\",\n                        \"id\": \"VFS_SUPPORT_IO\",\n                        \"name\": \"VFS_SUPPORT_IO\",\n                        \"range\": null,\n                        \"title\": \"Provide basic I/O functions\",\n                        \"type\": \"bool\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-virtual-file-system\",\n                \"title\": \"Virtual file system\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WL_SECTOR_SIZE>\",\n                                \"help\": null,\n                                \"id\": \"WL_SECTOR_SIZE_512\",\n                                \"name\": \"WL_SECTOR_SIZE_512\",\n                                \"range\": null,\n                                \"title\": \"512\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WL_SECTOR_SIZE>\",\n                                \"help\": null,\n                                \"id\": \"WL_SECTOR_SIZE_4096\",\n                                \"name\": \"WL_SECTOR_SIZE_4096\",\n                                \"range\": null,\n                                \"title\": \"4096\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": \"Sector size used by wear levelling library.\\nYou can set default sector size or size that will\\nfit to the flash device sector size.\\n\\nWith sector size set to 4096 bytes, wear levelling library is more\\nefficient. However if FAT filesystem is used on top of wear levelling\\nlibrary, it will need more temporary storage: 4096 bytes for each\\nmounted filesystem and 4096 bytes for each opened file.\\n\\nWith sector size set to 512 bytes, wear levelling library will perform\\nmore operations with flash memory, but less RAM will be used by FAT\\nfilesystem library (512 bytes for the filesystem and 512 bytes for each\\nfile opened).\",\n                        \"id\": \"component-config-wear-levelling-wear-levelling-library-sector-size\",\n                        \"name\": \"WL_SECTOR_SIZE\",\n                        \"title\": \"Wear Levelling library sector size\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"WL_SECTOR_SIZE\",\n                        \"name\": \"WL_SECTOR_SIZE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WL_SECTOR_MODE>\",\n                                \"help\": null,\n                                \"id\": \"WL_SECTOR_MODE_PERF\",\n                                \"name\": \"WL_SECTOR_MODE_PERF\",\n                                \"range\": null,\n                                \"title\": \"Perfomance\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WL_SECTOR_MODE>\",\n                                \"help\": null,\n                                \"id\": \"WL_SECTOR_MODE_SAFE\",\n                                \"name\": \"WL_SECTOR_MODE_SAFE\",\n                                \"range\": null,\n                                \"title\": \"Safety\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"WL_SECTOR_SIZE_512\",\n                        \"help\": \"Specify the mode to store data into flash:\\n\\n- In Performance mode a data will be stored to the RAM and then\\n  stored back to the flash. Compared to the Safety mode, this operation is\\n  faster, but if power will be lost when erase sector operation is in\\n  progress, then the data from complete flash device sector will be lost.\\n\\n- In Safety mode data from complete flash device sector will be read from\\n  flash, modified, and then stored back to flash.\\n  Compared to the Performance mode, this operation is slower, but if\\n  power is lost during erase sector operation, then the data from full\\n  flash device sector will not be lost.\",\n                        \"id\": \"component-config-wear-levelling-sector-store-mode\",\n                        \"name\": \"WL_SECTOR_MODE\",\n                        \"title\": \"Sector store mode\",\n                        \"type\": \"choice\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"WL_SECTOR_MODE\",\n                        \"name\": \"WL_SECTOR_MODE\",\n                        \"range\": null,\n                        \"title\": null,\n                        \"type\": \"int\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-wear-levelling\",\n                \"title\": \"Wear Levelling\",\n                \"type\": \"menu\"\n            },\n            {\n                \"children\": [\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager\",\n                        \"id\": \"WIFI_PROV_SCAN_MAX_ENTRIES\",\n                        \"name\": \"WIFI_PROV_SCAN_MAX_ENTRIES\",\n                        \"range\": [\n                            1,\n                            255\n                        ],\n                        \"title\": \"Max Wi-Fi Scan Result Entries\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to\\na Wi-Fi network successfully.\",\n                        \"id\": \"WIFI_PROV_AUTOSTOP_TIMEOUT\",\n                        \"name\": \"WIFI_PROV_AUTOSTOP_TIMEOUT\",\n                        \"range\": [\n                            5,\n                            600\n                        ],\n                        \"title\": \"Provisioning auto-stop timeout\",\n                        \"type\": \"int\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BT_ENABLED\",\n                        \"help\": \"This option is applicable only when provisioning transport is BLE.\",\n                        \"id\": \"WIFI_PROV_BLE_BONDING\",\n                        \"name\": \"WIFI_PROV_BLE_BONDING\",\n                        \"range\": null,\n                        \"title\": \"Enable BLE bonding\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": \"BT_NIMBLE_ENABLED\",\n                        \"help\": \"Used to enable Secure connection support when provisioning transport is BLE.\",\n                        \"id\": \"WIFI_PROV_BLE_SEC_CONN\",\n                        \"name\": \"WIFI_PROV_BLE_SEC_CONN\",\n                        \"range\": null,\n                        \"title\": \"Enable BLE Secure connection flag\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [],\n                        \"depends_on\": null,\n                        \"help\": \"Used to enforce link encryption when attempting to read / write characteristic\",\n                        \"id\": \"WIFI_PROV_BLE_FORCE_ENCRYPTION\",\n                        \"name\": \"WIFI_PROV_BLE_FORCE_ENCRYPTION\",\n                        \"range\": null,\n                        \"title\": \"Force Link Encryption during characteristic Read / Write\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"WIFI_PROV_KEEP_BLE_ON_AFTER_PROV\",\n                                \"help\": null,\n                                \"id\": \"WIFI_PROV_DISCONNECT_AFTER_PROV\",\n                                \"name\": \"WIFI_PROV_DISCONNECT_AFTER_PROV\",\n                                \"range\": null,\n                                \"title\": \"Terminate connection after provisioning is done\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": \"BT_ENABLED\",\n                        \"help\": null,\n                        \"id\": \"WIFI_PROV_KEEP_BLE_ON_AFTER_PROV\",\n                        \"name\": \"WIFI_PROV_KEEP_BLE_ON_AFTER_PROV\",\n                        \"range\": null,\n                        \"title\": \"Keep BT on after provisioning is done\",\n                        \"type\": \"bool\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WIFI_PROV_STA_SCAN_METHOD>\",\n                                \"help\": \"Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.\",\n                                \"id\": \"WIFI_PROV_STA_ALL_CHANNEL_SCAN\",\n                                \"name\": \"WIFI_PROV_STA_ALL_CHANNEL_SCAN\",\n                                \"range\": null,\n                                \"title\": \"All Channel Scan\",\n                                \"type\": \"bool\"\n                            },\n                            {\n                                \"children\": [],\n                                \"depends_on\": \"<choice WIFI_PROV_STA_SCAN_METHOD>\",\n                                \"help\": \"Scan will end after an AP matching with the SSID has been detected.\",\n                                \"id\": \"WIFI_PROV_STA_FAST_SCAN\",\n                                \"name\": \"WIFI_PROV_STA_FAST_SCAN\",\n                                \"range\": null,\n                                \"title\": \"Fast Scan\",\n                                \"type\": \"bool\"\n                            }\n                        ],\n                        \"depends_on\": null,\n                        \"help\": null,\n                        \"id\": \"component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method\",\n                        \"name\": \"WIFI_PROV_STA_SCAN_METHOD\",\n                        \"title\": \"Wifi Provisioning Scan Method\",\n                        \"type\": \"choice\"\n                    }\n                ],\n                \"depends_on\": null,\n                \"id\": \"component-config-wi-fi-provisioning-manager\",\n                \"title\": \"Wi-Fi Provisioning Manager\",\n                \"type\": \"menu\"\n            }\n        ],\n        \"depends_on\": null,\n        \"id\": \"component-config\",\n        \"title\": \"Component config\",\n        \"type\": \"menu\"\n    },\n    {\n        \"children\": [],\n        \"depends_on\": null,\n        \"help\": \"By enabling this option, ESP-IDF experimental feature options will be visible.\\n\\nNote you should still enable a certain experimental feature option to use it, and you\\nshould read the corresponding risk warning and known issue list carefully.\",\n        \"id\": \"IDF_EXPERIMENTAL_FEATURES\",\n        \"name\": \"IDF_EXPERIMENTAL_FEATURES\",\n        \"range\": null,\n        \"title\": \"Make experimental features visible\",\n        \"type\": \"bool\"\n    }\n]"
  },
  {
    "path": "Code/build/config/sdkconfig.cmake",
    "content": "#\n# Automatically generated file. DO NOT EDIT.\n# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file\n#\nset(CONFIG_SOC_MPU_MIN_REGION_SIZE \"0x20000000\")\nset(CONFIG_SOC_MPU_REGIONS_MAX_NUM \"8\")\nset(CONFIG_SOC_ADC_SUPPORTED \"y\")\nset(CONFIG_SOC_UART_SUPPORTED \"y\")\nset(CONFIG_SOC_PCNT_SUPPORTED \"y\")\nset(CONFIG_SOC_WIFI_SUPPORTED \"y\")\nset(CONFIG_SOC_TWAI_SUPPORTED \"y\")\nset(CONFIG_SOC_GDMA_SUPPORTED \"y\")\nset(CONFIG_SOC_GPTIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_LCDCAM_SUPPORTED \"y\")\nset(CONFIG_SOC_MCPWM_SUPPORTED \"y\")\nset(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_SUPPORT_WRAP \"y\")\nset(CONFIG_SOC_ULP_SUPPORTED \"y\")\nset(CONFIG_SOC_ULP_FSM_SUPPORTED \"y\")\nset(CONFIG_SOC_RISCV_COPROC_SUPPORTED \"y\")\nset(CONFIG_SOC_BT_SUPPORTED \"y\")\nset(CONFIG_SOC_USB_OTG_SUPPORTED \"y\")\nset(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED \"y\")\nset(CONFIG_SOC_CCOMP_TIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED \"y\")\nset(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE \"y\")\nset(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD \"y\")\nset(CONFIG_SOC_SDMMC_HOST_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_MEM_SUPPORTED \"y\")\nset(CONFIG_SOC_PSRAM_DMA_CAPABLE \"y\")\nset(CONFIG_SOC_XT_WDT_SUPPORTED \"y\")\nset(CONFIG_SOC_I2S_SUPPORTED \"y\")\nset(CONFIG_SOC_RMT_SUPPORTED \"y\")\nset(CONFIG_SOC_SDM_SUPPORTED \"y\")\nset(CONFIG_SOC_GPSPI_SUPPORTED \"y\")\nset(CONFIG_SOC_LEDC_SUPPORTED \"y\")\nset(CONFIG_SOC_I2C_SUPPORTED \"y\")\nset(CONFIG_SOC_SYSTIMER_SUPPORTED \"y\")\nset(CONFIG_SOC_SUPPORT_COEXISTENCE \"y\")\nset(CONFIG_SOC_TEMP_SENSOR_SUPPORTED \"y\")\nset(CONFIG_SOC_AES_SUPPORTED \"y\")\nset(CONFIG_SOC_MPI_SUPPORTED \"y\")\nset(CONFIG_SOC_SHA_SUPPORTED \"y\")\nset(CONFIG_SOC_HMAC_SUPPORTED \"y\")\nset(CONFIG_SOC_DIG_SIGN_SUPPORTED \"y\")\nset(CONFIG_SOC_FLASH_ENC_SUPPORTED \"y\")\nset(CONFIG_SOC_SECURE_BOOT_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMPROT_SUPPORTED \"y\")\nset(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED \"y\")\nset(CONFIG_SOC_BOD_SUPPORTED \"y\")\nset(CONFIG_SOC_XTAL_SUPPORT_40M \"y\")\nset(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG \"y\")\nset(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_ARBITER_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_MONITOR_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_DMA_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_PERIPH_NUM \"2\")\nset(CONFIG_SOC_ADC_MAX_CHANNEL_NUM \"10\")\nset(CONFIG_SOC_ADC_ATTEN_NUM \"4\")\nset(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM \"2\")\nset(CONFIG_SOC_ADC_PATT_LEN_MAX \"24\")\nset(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_DIGI_RESULT_BYTES \"4\")\nset(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV \"4\")\nset(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM \"2\")\nset(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH \"83333\")\nset(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW \"611\")\nset(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH \"12\")\nset(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED \"y\")\nset(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED \"y\")\nset(CONFIG_SOC_APB_BACKUP_DMA \"y\")\nset(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED \"y\")\nset(CONFIG_SOC_CACHE_FREEZE_SUPPORTED \"y\")\nset(CONFIG_SOC_CPU_CORES_NUM \"2\")\nset(CONFIG_SOC_CPU_INTR_NUM \"32\")\nset(CONFIG_SOC_CPU_HAS_FPU \"y\")\nset(CONFIG_SOC_CPU_BREAKPOINTS_NUM \"2\")\nset(CONFIG_SOC_CPU_WATCHPOINTS_NUM \"2\")\nset(CONFIG_SOC_CPU_WATCHPOINT_SIZE \"64\")\nset(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN \"4096\")\nset(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH \"16\")\nset(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US \"1100\")\nset(CONFIG_SOC_GDMA_GROUPS \"y\")\nset(CONFIG_SOC_GDMA_PAIRS_PER_GROUP \"5\")\nset(CONFIG_SOC_GDMA_SUPPORT_PSRAM \"y\")\nset(CONFIG_SOC_GPIO_PORT \"1\")\nset(CONFIG_SOC_GPIO_PIN_COUNT \"49\")\nset(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER \"y\")\nset(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT \"y\")\nset(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD \"y\")\nset(CONFIG_SOC_GPIO_VALID_GPIO_MASK \"0x1ffffffffffff\")\nset(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK \"0x1fffffc000000\")\nset(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM \"8\")\nset(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM \"8\")\nset(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE \"y\")\nset(CONFIG_SOC_I2C_NUM \"2\")\nset(CONFIG_SOC_I2C_FIFO_LEN \"32\")\nset(CONFIG_SOC_I2C_CMD_REG_NUM \"8\")\nset(CONFIG_SOC_I2C_SUPPORT_SLAVE \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_I2C_SUPPORT_RTC \"y\")\nset(CONFIG_SOC_I2S_NUM \"2\")\nset(CONFIG_SOC_I2S_HW_VERSION_2 \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_XTAL \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PCM \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM \"y\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM_TX \"y\")\nset(CONFIG_SOC_I2S_PDM_MAX_TX_LINES \"2\")\nset(CONFIG_SOC_I2S_SUPPORTS_PDM_RX \"y\")\nset(CONFIG_SOC_I2S_PDM_MAX_RX_LINES \"4\")\nset(CONFIG_SOC_I2S_SUPPORTS_TDM \"y\")\nset(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK \"y\")\nset(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK \"y\")\nset(CONFIG_SOC_LEDC_CHANNEL_NUM \"8\")\nset(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH \"14\")\nset(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP \"y\")\nset(CONFIG_SOC_MCPWM_GROUPS \"2\")\nset(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR \"2\")\nset(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP \"y\")\nset(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER \"3\")\nset(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP \"3\")\nset(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE \"y\")\nset(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM \"1\")\nset(CONFIG_SOC_MMU_PERIPH_NUM \"1\")\nset(CONFIG_SOC_PCNT_GROUPS \"1\")\nset(CONFIG_SOC_PCNT_UNITS_PER_GROUP \"4\")\nset(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT \"2\")\nset(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT \"2\")\nset(CONFIG_SOC_RMT_GROUPS \"1\")\nset(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP \"4\")\nset(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP \"4\")\nset(CONFIG_SOC_RMT_CHANNELS_PER_GROUP \"8\")\nset(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL \"48\")\nset(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_RC_FAST \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_APB \"y\")\nset(CONFIG_SOC_RMT_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_LCD_I80_SUPPORTED \"y\")\nset(CONFIG_SOC_LCD_RGB_SUPPORTED \"y\")\nset(CONFIG_SOC_LCD_I80_BUSES \"1\")\nset(CONFIG_SOC_LCD_RGB_PANELS \"1\")\nset(CONFIG_SOC_LCD_I80_BUS_WIDTH \"16\")\nset(CONFIG_SOC_LCD_RGB_DATA_WIDTH \"16\")\nset(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV \"y\")\nset(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH \"128\")\nset(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM \"549\")\nset(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH \"128\")\nset(CONFIG_SOC_RTCIO_PIN_COUNT \"22\")\nset(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED \"y\")\nset(CONFIG_SOC_RTCIO_HOLD_SUPPORTED \"y\")\nset(CONFIG_SOC_RTCIO_WAKE_SUPPORTED \"y\")\nset(CONFIG_SOC_SDM_GROUPS \"y\")\nset(CONFIG_SOC_SDM_CHANNELS_PER_GROUP \"8\")\nset(CONFIG_SOC_SDM_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_SPI_PERIPH_NUM \"3\")\nset(CONFIG_SOC_SPI_MAX_CS_NUM \"6\")\nset(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE \"64\")\nset(CONFIG_SOC_SPI_SUPPORT_DDRCLK \"y\")\nset(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CD_SIG \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CLK_APB \"y\")\nset(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL \"y\")\nset(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT \"y\")\nset(CONFIG_SOC_MEMSPI_IS_INDEPENDENT \"y\")\nset(CONFIG_SOC_SPI_MAX_PRE_DIVIDER \"16\")\nset(CONFIG_SOC_SPI_SUPPORT_OCT \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_120M \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED \"y\")\nset(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED \"y\")\nset(CONFIG_SOC_SPIRAM_SUPPORTED \"y\")\nset(CONFIG_SOC_SPIRAM_XIP_SUPPORTED \"y\")\nset(CONFIG_SOC_SYSTIMER_COUNTER_NUM \"2\")\nset(CONFIG_SOC_SYSTIMER_ALARM_NUM \"3\")\nset(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO \"32\")\nset(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI \"20\")\nset(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER \"y\")\nset(CONFIG_SOC_SYSTIMER_INT_LEVEL \"y\")\nset(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE \"y\")\nset(CONFIG_SOC_TIMER_GROUPS \"2\")\nset(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP \"2\")\nset(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH \"54\")\nset(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL \"y\")\nset(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB \"y\")\nset(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS \"4\")\nset(CONFIG_SOC_TOUCH_VERSION_2 \"y\")\nset(CONFIG_SOC_TOUCH_SENSOR_NUM \"15\")\nset(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM \"3\")\nset(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED \"y\")\nset(CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX \"0x1fffff\")\nset(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX \"0xff\")\nset(CONFIG_SOC_TWAI_CONTROLLER_NUM \"1\")\nset(CONFIG_SOC_TWAI_CLK_SUPPORT_APB \"y\")\nset(CONFIG_SOC_TWAI_BRP_MIN \"2\")\nset(CONFIG_SOC_TWAI_BRP_MAX \"16384\")\nset(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS \"y\")\nset(CONFIG_SOC_UART_NUM \"3\")\nset(CONFIG_SOC_UART_FIFO_LEN \"128\")\nset(CONFIG_SOC_UART_BITRATE_MAX \"5000000\")\nset(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND \"y\")\nset(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT \"y\")\nset(CONFIG_SOC_UART_SUPPORT_APB_CLK \"y\")\nset(CONFIG_SOC_UART_SUPPORT_RTC_CLK \"y\")\nset(CONFIG_SOC_UART_SUPPORT_XTAL_CLK \"y\")\nset(CONFIG_SOC_UART_REQUIRE_CORE_RESET \"y\")\nset(CONFIG_SOC_USB_PERIPH_NUM \"y\")\nset(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE \"3968\")\nset(CONFIG_SOC_SHA_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_RESUME \"y\")\nset(CONFIG_SOC_SHA_GDMA \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA1 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA224 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA256 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA384 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_224 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_256 \"y\")\nset(CONFIG_SOC_SHA_SUPPORT_SHA512_T \"y\")\nset(CONFIG_SOC_RSA_MAX_BIT_LEN \"4096\")\nset(CONFIG_SOC_AES_SUPPORT_DMA \"y\")\nset(CONFIG_SOC_AES_GDMA \"y\")\nset(CONFIG_SOC_AES_SUPPORT_AES_128 \"y\")\nset(CONFIG_SOC_AES_SUPPORT_AES_256 \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP \"y\")\nset(CONFIG_SOC_PM_SUPPORT_CPU_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD \"y\")\nset(CONFIG_SOC_PM_SUPPORT_MODEM_PD \"y\")\nset(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED \"y\")\nset(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY \"y\")\nset(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL \"y\")\nset(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA \"y\")\nset(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED \"y\")\nset(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 \"y\")\nset(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION \"y\")\nset(CONFIG_SOC_CLK_XTAL32K_SUPPORTED \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE \"y\")\nset(CONFIG_SOC_EFUSE_HARD_DIS_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_DIS_USB_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG \"y\")\nset(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT \"y\")\nset(CONFIG_SOC_EFUSE_DIS_ICACHE \"y\")\nset(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK \"y\")\nset(CONFIG_SOC_SECURE_BOOT_V2_RSA \"y\")\nset(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS \"3\")\nset(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS \"y\")\nset(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX \"64\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 \"y\")\nset(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 \"y\")\nset(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE \"16\")\nset(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE \"256\")\nset(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE \"21\")\nset(CONFIG_SOC_MAC_BB_PD_MEM_SIZE \"192\")\nset(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH \"12\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE \"y\")\nset(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP \"y\")\nset(CONFIG_SOC_COEX_HW_PTI \"y\")\nset(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE \"y\")\nset(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX \"y\")\nset(CONFIG_SOC_SDMMC_NUM_SLOTS \"2\")\nset(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK \"y\")\nset(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC \"y\")\nset(CONFIG_SOC_WIFI_HW_TSF \"y\")\nset(CONFIG_SOC_WIFI_FTM_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_GCMP_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_WAPI_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_CSI_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_MESH_SUPPORT \"y\")\nset(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW \"y\")\nset(CONFIG_SOC_BLE_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_MESH_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_50_SUPPORTED \"y\")\nset(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED \"y\")\nset(CONFIG_SOC_BLUFI_SUPPORTED \"y\")\nset(CONFIG_SOC_ULP_HAS_ADC \"y\")\nset(CONFIG_SOC_PHY_COMBO_MODULE \"y\")\nset(CONFIG_IDF_CMAKE \"y\")\nset(CONFIG_IDF_TARGET_ARCH_XTENSA \"y\")\nset(CONFIG_IDF_TARGET_ARCH \"xtensa\")\nset(CONFIG_IDF_TARGET \"esp32s3\")\nset(CONFIG_IDF_TARGET_ESP32S3 \"y\")\nset(CONFIG_IDF_FIRMWARE_CHIP_ID \"0x9\")\nset(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT \"y\")\nset(CONFIG_APP_BUILD_TYPE_RAM \"\")\nset(CONFIG_APP_BUILD_GENERATE_BINARIES \"y\")\nset(CONFIG_APP_BUILD_BOOTLOADER \"y\")\nset(CONFIG_APP_BUILD_USE_FLASH_SECTIONS \"y\")\nset(CONFIG_APP_REPRODUCIBLE_BUILD \"\")\nset(CONFIG_APP_NO_BLOBS \"\")\nset(CONFIG_BOOTLOADER_OFFSET_IN_FLASH \"0x0\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE \"y\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG \"\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF \"\")\nset(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_NONE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_WARN \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_INFO \"y\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE \"\")\nset(CONFIG_BOOTLOADER_LOG_LEVEL \"3\")\nset(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V \"y\")\nset(CONFIG_BOOTLOADER_FACTORY_RESET \"\")\nset(CONFIG_BOOTLOADER_APP_TEST \"\")\nset(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE \"y\")\nset(CONFIG_BOOTLOADER_WDT_ENABLE \"y\")\nset(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE \"\")\nset(CONFIG_BOOTLOADER_WDT_TIME_MS \"9000\")\nset(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON \"\")\nset(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS \"\")\nset(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE \"0x0\")\nset(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC \"\")\nset(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT \"y\")\nset(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED \"y\")\nset(CONFIG_SECURE_BOOT_V2_PREFERRED \"y\")\nset(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT \"\")\nset(CONFIG_SECURE_BOOT \"\")\nset(CONFIG_SECURE_FLASH_ENC_ENABLED \"\")\nset(CONFIG_SECURE_ROM_DL_MODE_ENABLED \"y\")\nset(CONFIG_APP_COMPILE_TIME_DATE \"y\")\nset(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR \"\")\nset(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR \"\")\nset(CONFIG_APP_PROJECT_VER_FROM_CONFIG \"\")\nset(CONFIG_APP_RETRIEVE_LEN_ELF_SHA \"16\")\nset(CONFIG_ESP_ROM_HAS_CRC_LE \"y\")\nset(CONFIG_ESP_ROM_HAS_CRC_BE \"y\")\nset(CONFIG_ESP_ROM_HAS_MZ_CRC32 \"y\")\nset(CONFIG_ESP_ROM_HAS_JPEG_DECODE \"y\")\nset(CONFIG_ESP_ROM_UART_CLK_IS_XTAL \"y\")\nset(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING \"y\")\nset(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM \"4\")\nset(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG \"y\")\nset(CONFIG_ESP_ROM_GET_CLK_FREQ \"y\")\nset(CONFIG_ESP_ROM_HAS_HAL_WDT \"y\")\nset(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND \"y\")\nset(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE \"y\")\nset(CONFIG_ESP_ROM_HAS_SPI_FLASH \"y\")\nset(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT \"y\")\nset(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE \"y\")\nset(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT \"y\")\nset(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG \"y\")\nset(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG \"y\")\nset(CONFIG_BOOT_ROM_LOG_ALWAYS_ON \"y\")\nset(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF \"\")\nset(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH \"\")\nset(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW \"\")\nset(CONFIG_ESPTOOLPY_NO_STUB \"\")\nset(CONFIG_ESPTOOLPY_OCT_FLASH \"\")\nset(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_QIO \"\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_QOUT \"\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_DIO \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE_DOUT \"\")\nset(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR \"y\")\nset(CONFIG_ESPTOOLPY_FLASHMODE \"dio\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_120M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_80M \"y\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_40M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_20M \"\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT \"y\")\nset(CONFIG_ESPTOOLPY_FLASHFREQ \"80m\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_1MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_2MB \"y\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_4MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_8MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_16MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_32MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_64MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE_128MB \"\")\nset(CONFIG_ESPTOOLPY_FLASHSIZE \"2MB\")\nset(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE \"\")\nset(CONFIG_ESPTOOLPY_BEFORE_RESET \"y\")\nset(CONFIG_ESPTOOLPY_BEFORE_NORESET \"\")\nset(CONFIG_ESPTOOLPY_BEFORE \"default_reset\")\nset(CONFIG_ESPTOOLPY_AFTER_RESET \"y\")\nset(CONFIG_ESPTOOLPY_AFTER_NORESET \"\")\nset(CONFIG_ESPTOOLPY_AFTER \"hard_reset\")\nset(CONFIG_ESPTOOLPY_MONITOR_BAUD \"115200\")\nset(CONFIG_PARTITION_TABLE_SINGLE_APP \"\")\nset(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE \"\")\nset(CONFIG_PARTITION_TABLE_TWO_OTA \"\")\nset(CONFIG_PARTITION_TABLE_CUSTOM \"y\")\nset(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME \"partitions.csv\")\nset(CONFIG_PARTITION_TABLE_FILENAME \"partitions.csv\")\nset(CONFIG_PARTITION_TABLE_OFFSET \"0x8000\")\nset(CONFIG_PARTITION_TABLE_MD5 \"y\")\nset(CONFIG_GPIO_RANGE_MAX \"48\")\nset(CONFIG_WIDTH \"240\")\nset(CONFIG_HEIGHT \"280\")\nset(CONFIG_OFFSETX \"0\")\nset(CONFIG_OFFSETY \"20\")\nset(CONFIG_MOSI_GPIO \"11\")\nset(CONFIG_SCLK_GPIO \"12\")\nset(CONFIG_CS_GPIO \"10\")\nset(CONFIG_DC_GPIO \"9\")\nset(CONFIG_RESET_GPIO \"8\")\nset(CONFIG_BL_GPIO \"7\")\nset(CONFIG_INVERSION \"\")\nset(CONFIG_SPI2_HOST \"y\")\nset(CONFIG_SPI3_HOST \"\")\nset(CONFIG_FRAME_BUFFER \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_DEFAULT \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_SIZE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_PERF \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_NONE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE \"\")\nset(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL \"2\")\nset(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT \"\")\nset(CONFIG_COMPILER_HIDE_PATHS_MACROS \"y\")\nset(CONFIG_COMPILER_CXX_EXCEPTIONS \"\")\nset(CONFIG_COMPILER_CXX_RTTI \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_NONE \"y\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_NORM \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG \"\")\nset(CONFIG_COMPILER_STACK_CHECK_MODE_ALL \"\")\nset(CONFIG_COMPILER_WARN_WRITE_STRINGS \"\")\nset(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS \"\")\nset(CONFIG_COMPILER_DUMP_RTL_FILES \"\")\nset(CONFIG_APPTRACE_DEST_JTAG \"\")\nset(CONFIG_APPTRACE_DEST_NONE \"y\")\nset(CONFIG_APPTRACE_DEST_UART1 \"\")\nset(CONFIG_APPTRACE_DEST_UART2 \"\")\nset(CONFIG_APPTRACE_DEST_USB_CDC \"\")\nset(CONFIG_APPTRACE_DEST_UART_NONE \"y\")\nset(CONFIG_APPTRACE_UART_TASK_PRIO \"1\")\nset(CONFIG_APPTRACE_LOCK_ENABLE \"y\")\nset(CONFIG_BT_ENABLED \"\")\nset(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_SPI_MASTER_IN_IRAM \"\")\nset(CONFIG_SPI_MASTER_ISR_IN_IRAM \"y\")\nset(CONFIG_SPI_SLAVE_IN_IRAM \"\")\nset(CONFIG_SPI_SLAVE_ISR_IN_IRAM \"y\")\nset(CONFIG_TWAI_ISR_IN_IRAM \"\")\nset(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM \"y\")\nset(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_UART_ISR_IN_IRAM \"\")\nset(CONFIG_GPIO_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_SDM_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_SDM_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM \"y\")\nset(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_GPTIMER_ISR_IRAM_SAFE \"\")\nset(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_GPTIMER_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_PCNT_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_PCNT_ISR_IRAM_SAFE \"\")\nset(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_PCNT_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_RMT_ISR_IRAM_SAFE \"\")\nset(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_RMT_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_MCPWM_ISR_IRAM_SAFE \"\")\nset(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_MCPWM_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_I2S_ISR_IRAM_SAFE \"\")\nset(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN \"\")\nset(CONFIG_I2S_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_EFUSE_CUSTOM_TABLE \"\")\nset(CONFIG_EFUSE_VIRTUAL \"\")\nset(CONFIG_EFUSE_MAX_BLK_LEN \"256\")\nset(CONFIG_ESP_TLS_USING_MBEDTLS \"y\")\nset(CONFIG_ESP_TLS_USE_DS_PERIPHERAL \"y\")\nset(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS \"\")\nset(CONFIG_ESP_TLS_SERVER \"\")\nset(CONFIG_ESP_TLS_PSK_VERIFICATION \"\")\nset(CONFIG_ESP_TLS_INSECURE \"\")\nset(CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE \"\")\nset(CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 \"\")\nset(CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE \"\")\nset(CONFIG_ESP_ERR_TO_NAME_LOOKUP \"y\")\nset(CONFIG_ETH_ENABLED \"y\")\nset(CONFIG_ETH_USE_SPI_ETHERNET \"y\")\nset(CONFIG_ETH_SPI_ETHERNET_DM9051 \"\")\nset(CONFIG_ETH_SPI_ETHERNET_W5500 \"\")\nset(CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL \"\")\nset(CONFIG_ETH_USE_OPENETH \"\")\nset(CONFIG_ETH_TRANSMIT_MUTEX \"\")\nset(CONFIG_ESP_EVENT_LOOP_PROFILING \"\")\nset(CONFIG_ESP_EVENT_POST_FROM_ISR \"y\")\nset(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR \"y\")\nset(CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS \"y\")\nset(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH \"\")\nset(CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH \"\")\nset(CONFIG_HTTPD_MAX_REQ_HDR_LEN \"512\")\nset(CONFIG_HTTPD_MAX_URI_LEN \"512\")\nset(CONFIG_HTTPD_ERR_RESP_NO_DELAY \"y\")\nset(CONFIG_HTTPD_PURGE_BUF_LEN \"32\")\nset(CONFIG_HTTPD_LOG_PURGE_DATA \"\")\nset(CONFIG_HTTPD_WS_SUPPORT \"\")\nset(CONFIG_HTTPD_QUEUE_WORK_BLOCKING \"\")\nset(CONFIG_ESP_HTTPS_OTA_DECRYPT_CB \"\")\nset(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP \"\")\nset(CONFIG_ESP_HTTPS_SERVER_ENABLE \"\")\nset(CONFIG_ESP32S3_REV_MIN_0 \"y\")\nset(CONFIG_ESP32S3_REV_MIN_1 \"\")\nset(CONFIG_ESP32S3_REV_MIN_2 \"\")\nset(CONFIG_ESP32S3_REV_MIN_FULL \"0\")\nset(CONFIG_ESP_REV_MIN_FULL \"0\")\nset(CONFIG_ESP32S3_REV_MAX_FULL \"99\")\nset(CONFIG_ESP_REV_MAX_FULL \"99\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT \"y\")\nset(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH \"y\")\nset(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR \"y\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO \"\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR \"y\")\nset(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES \"4\")\nset(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH \"\")\nset(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU \"y\")\nset(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND \"y\")\nset(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY \"2000\")\nset(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS \"y\")\nset(CONFIG_RTC_CLK_SRC_INT_RC \"y\")\nset(CONFIG_RTC_CLK_SRC_EXT_CRYS \"\")\nset(CONFIG_RTC_CLK_SRC_EXT_OSC \"\")\nset(CONFIG_RTC_CLK_SRC_INT_8MD256 \"\")\nset(CONFIG_RTC_CLK_CAL_CYCLES \"1024\")\nset(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM \"y\")\nset(CONFIG_GDMA_CTRL_FUNC_IN_IRAM \"\")\nset(CONFIG_GDMA_ISR_IRAM_SAFE \"\")\nset(CONFIG_XTAL_FREQ_40 \"y\")\nset(CONFIG_XTAL_FREQ \"40\")\nset(CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE \"32\")\nset(CONFIG_LCD_ENABLE_DEBUG_LOG \"\")\nset(CONFIG_LCD_RGB_ISR_IRAM_SAFE \"\")\nset(CONFIG_LCD_RGB_RESTART_IN_VSYNC \"\")\nset(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL \"120\")\nset(CONFIG_ESP_NETIF_TCPIP_LWIP \"y\")\nset(CONFIG_ESP_NETIF_LOOPBACK \"\")\nset(CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API \"y\")\nset(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS \"\")\nset(CONFIG_ESP_NETIF_L2_TAP \"\")\nset(CONFIG_ESP_NETIF_BRIDGE_EN \"\")\nset(CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE \"y\")\nset(CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION \"\")\nset(CONFIG_ESP_PHY_MAX_WIFI_TX_POWER \"20\")\nset(CONFIG_ESP_PHY_MAX_TX_POWER \"20\")\nset(CONFIG_ESP_PHY_REDUCE_TX_POWER \"\")\nset(CONFIG_ESP_PHY_ENABLE_USB \"y\")\nset(CONFIG_ESP_PHY_ENABLE_CERT_TEST \"\")\nset(CONFIG_ESP_PHY_RF_CAL_PARTIAL \"y\")\nset(CONFIG_ESP_PHY_RF_CAL_NONE \"\")\nset(CONFIG_ESP_PHY_RF_CAL_FULL \"\")\nset(CONFIG_ESP_PHY_CALIBRATION_MODE \"0\")\nset(CONFIG_PM_ENABLE \"\")\nset(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP \"y\")\nset(CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP \"y\")\nset(CONFIG_SPIRAM \"\")\nset(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH \"\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 \"\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 \"\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 \"y\")\nset(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ \"240\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB \"y\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE \"0x4000\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS \"y\")\nset(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS \"8\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B \"\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B \"y\")\nset(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE \"32\")\nset(CONFIG_ESP32S3_DATA_CACHE_16KB \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_32KB \"y\")\nset(CONFIG_ESP32S3_DATA_CACHE_64KB \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_SIZE \"0x8000\")\nset(CONFIG_ESP32S3_DATA_CACHE_4WAYS \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_8WAYS \"y\")\nset(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS \"8\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_16B \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_32B \"y\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_64B \"\")\nset(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE \"32\")\nset(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM \"\")\nset(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE \"\")\nset(CONFIG_ESP32S3_TRAX \"\")\nset(CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM \"0x0\")\nset(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT \"y\")\nset(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_GDBSTUB \"\")\nset(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME \"\")\nset(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS \"0\")\nset(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK \"y\")\nset(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP \"y\")\nset(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE \"y\")\nset(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK \"y\")\nset(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE \"32\")\nset(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE \"2304\")\nset(CONFIG_ESP_MAIN_TASK_STACK_SIZE \"3584\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 \"y\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 \"\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY \"\")\nset(CONFIG_ESP_MAIN_TASK_AFFINITY \"0x0\")\nset(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE \"2048\")\nset(CONFIG_ESP_CONSOLE_UART_DEFAULT \"y\")\nset(CONFIG_ESP_CONSOLE_USB_CDC \"\")\nset(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG \"\")\nset(CONFIG_ESP_CONSOLE_UART_CUSTOM \"\")\nset(CONFIG_ESP_CONSOLE_NONE \"\")\nset(CONFIG_ESP_CONSOLE_SECONDARY_NONE \"\")\nset(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG \"y\")\nset(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED \"y\")\nset(CONFIG_ESP_CONSOLE_UART \"y\")\nset(CONFIG_ESP_CONSOLE_MULTIPLE_UART \"y\")\nset(CONFIG_ESP_CONSOLE_UART_NUM \"0\")\nset(CONFIG_ESP_CONSOLE_UART_BAUDRATE \"115200\")\nset(CONFIG_ESP_INT_WDT \"y\")\nset(CONFIG_ESP_INT_WDT_TIMEOUT_MS \"300\")\nset(CONFIG_ESP_INT_WDT_CHECK_CPU1 \"y\")\nset(CONFIG_ESP_TASK_WDT_EN \"\")\nset(CONFIG_ESP_PANIC_HANDLER_IRAM \"\")\nset(CONFIG_ESP_DEBUG_STUBS_ENABLE \"\")\nset(CONFIG_ESP_DEBUG_OCDAWARE \"y\")\nset(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 \"y\")\nset(CONFIG_ESP_BROWNOUT_DET \"y\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_ESP_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_ESP_SYSTEM_BROWNOUT_INTR \"y\")\nset(CONFIG_ESP_IPC_TASK_STACK_SIZE \"1280\")\nset(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY \"y\")\nset(CONFIG_ESP_IPC_ISR_ENABLE \"y\")\nset(CONFIG_ESP_TIMER_PROFILING \"\")\nset(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER \"y\")\nset(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER \"y\")\nset(CONFIG_ESP_TIMER_TASK_STACK_SIZE \"3584\")\nset(CONFIG_ESP_TIMER_INTERRUPT_LEVEL \"1\")\nset(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL \"\")\nset(CONFIG_ESP_TIMER_TASK_AFFINITY \"0x0\")\nset(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 \"y\")\nset(CONFIG_ESP_TIMER_ISR_AFFINITY \"0x1\")\nset(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 \"y\")\nset(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD \"\")\nset(CONFIG_ESP_TIMER_IMPL_SYSTIMER \"y\")\nset(CONFIG_ESP_WIFI_ENABLED \"y\")\nset(CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM \"10\")\nset(CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM \"32\")\nset(CONFIG_ESP_WIFI_STATIC_TX_BUFFER \"\")\nset(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER \"y\")\nset(CONFIG_ESP_WIFI_TX_BUFFER_TYPE \"1\")\nset(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM \"32\")\nset(CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER \"y\")\nset(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER \"\")\nset(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF \"0\")\nset(CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF \"5\")\nset(CONFIG_ESP_WIFI_CSI_ENABLED \"\")\nset(CONFIG_ESP_WIFI_AMPDU_TX_ENABLED \"y\")\nset(CONFIG_ESP_WIFI_TX_BA_WIN \"6\")\nset(CONFIG_ESP_WIFI_AMPDU_RX_ENABLED \"y\")\nset(CONFIG_ESP_WIFI_RX_BA_WIN \"6\")\nset(CONFIG_ESP_WIFI_NVS_ENABLED \"y\")\nset(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 \"y\")\nset(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 \"\")\nset(CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN \"752\")\nset(CONFIG_ESP_WIFI_MGMT_SBUF_NUM \"32\")\nset(CONFIG_ESP_WIFI_IRAM_OPT \"y\")\nset(CONFIG_ESP_WIFI_EXTRA_IRAM_OPT \"\")\nset(CONFIG_ESP_WIFI_RX_IRAM_OPT \"y\")\nset(CONFIG_ESP_WIFI_ENABLE_WPA3_SAE \"y\")\nset(CONFIG_ESP_WIFI_ENABLE_SAE_PK \"y\")\nset(CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT \"y\")\nset(CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA \"y\")\nset(CONFIG_ESP_WIFI_SLP_IRAM_OPT \"\")\nset(CONFIG_ESP_WIFI_FTM_ENABLE \"\")\nset(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE \"y\")\nset(CONFIG_ESP_WIFI_GCMP_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_GMAC_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_SOFTAP_SUPPORT \"y\")\nset(CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT \"\")\nset(CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM \"7\")\nset(CONFIG_ESP_WIFI_MBEDTLS_CRYPTO \"y\")\nset(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT \"y\")\nset(CONFIG_ESP_WIFI_WAPI_PSK \"\")\nset(CONFIG_ESP_WIFI_SUITE_B_192 \"\")\nset(CONFIG_ESP_WIFI_11KV_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_MBO_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_DPP_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_11R_SUPPORT \"\")\nset(CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR \"\")\nset(CONFIG_ESP_WIFI_WPS_STRICT \"\")\nset(CONFIG_ESP_WIFI_WPS_PASSPHRASE \"\")\nset(CONFIG_ESP_WIFI_DEBUG_PRINT \"\")\nset(CONFIG_ESP_WIFI_TESTING_OPTIONS \"\")\nset(CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT \"y\")\nset(CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH \"\")\nset(CONFIG_ESP_COREDUMP_ENABLE_TO_UART \"\")\nset(CONFIG_ESP_COREDUMP_ENABLE_TO_NONE \"y\")\nset(CONFIG_FATFS_VOLUME_COUNT \"2\")\nset(CONFIG_FATFS_LFN_NONE \"y\")\nset(CONFIG_FATFS_LFN_HEAP \"\")\nset(CONFIG_FATFS_LFN_STACK \"\")\nset(CONFIG_FATFS_SECTOR_512 \"\")\nset(CONFIG_FATFS_SECTOR_4096 \"y\")\nset(CONFIG_FATFS_CODEPAGE_DYNAMIC \"\")\nset(CONFIG_FATFS_CODEPAGE_437 \"y\")\nset(CONFIG_FATFS_CODEPAGE_720 \"\")\nset(CONFIG_FATFS_CODEPAGE_737 \"\")\nset(CONFIG_FATFS_CODEPAGE_771 \"\")\nset(CONFIG_FATFS_CODEPAGE_775 \"\")\nset(CONFIG_FATFS_CODEPAGE_850 \"\")\nset(CONFIG_FATFS_CODEPAGE_852 \"\")\nset(CONFIG_FATFS_CODEPAGE_855 \"\")\nset(CONFIG_FATFS_CODEPAGE_857 \"\")\nset(CONFIG_FATFS_CODEPAGE_860 \"\")\nset(CONFIG_FATFS_CODEPAGE_861 \"\")\nset(CONFIG_FATFS_CODEPAGE_862 \"\")\nset(CONFIG_FATFS_CODEPAGE_863 \"\")\nset(CONFIG_FATFS_CODEPAGE_864 \"\")\nset(CONFIG_FATFS_CODEPAGE_865 \"\")\nset(CONFIG_FATFS_CODEPAGE_866 \"\")\nset(CONFIG_FATFS_CODEPAGE_869 \"\")\nset(CONFIG_FATFS_CODEPAGE_932 \"\")\nset(CONFIG_FATFS_CODEPAGE_936 \"\")\nset(CONFIG_FATFS_CODEPAGE_949 \"\")\nset(CONFIG_FATFS_CODEPAGE_950 \"\")\nset(CONFIG_FATFS_CODEPAGE \"437\")\nset(CONFIG_FATFS_FS_LOCK \"0\")\nset(CONFIG_FATFS_TIMEOUT_MS \"10000\")\nset(CONFIG_FATFS_PER_FILE_CACHE \"y\")\nset(CONFIG_FATFS_USE_FASTSEEK \"\")\nset(CONFIG_FATFS_VFS_FSTAT_BLKSIZE \"0\")\nset(CONFIG_FREERTOS_SMP \"\")\nset(CONFIG_FREERTOS_UNICORE \"\")\nset(CONFIG_FREERTOS_HZ \"100\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE \"\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL \"\")\nset(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY \"y\")\nset(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS \"1\")\nset(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE \"1536\")\nset(CONFIG_FREERTOS_USE_IDLE_HOOK \"\")\nset(CONFIG_FREERTOS_USE_TICK_HOOK \"\")\nset(CONFIG_FREERTOS_MAX_TASK_NAME_LEN \"16\")\nset(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY \"\")\nset(CONFIG_FREERTOS_TIMER_TASK_PRIORITY \"1\")\nset(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH \"4096\")\nset(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH \"10\")\nset(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE \"0\")\nset(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES \"1\")\nset(CONFIG_FREERTOS_USE_TRACE_FACILITY \"\")\nset(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS \"\")\nset(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER \"y\")\nset(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK \"\")\nset(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS \"y\")\nset(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP \"\")\nset(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER \"y\")\nset(CONFIG_FREERTOS_ISR_STACKSIZE \"1536\")\nset(CONFIG_FREERTOS_INTERRUPT_BACKTRACE \"y\")\nset(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER \"y\")\nset(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 \"y\")\nset(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 \"\")\nset(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER \"y\")\nset(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH \"\")\nset(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH \"\")\nset(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE \"\")\nset(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT \"y\")\nset(CONFIG_FREERTOS_NO_AFFINITY \"0x7fffffff\")\nset(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION \"y\")\nset(CONFIG_FREERTOS_DEBUG_OCDAWARE \"y\")\nset(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM \"y\")\nset(CONFIG_HAL_ASSERTION_DISABLE \"\")\nset(CONFIG_HAL_ASSERTION_SILENT \"\")\nset(CONFIG_HAL_ASSERTION_ENABLE \"\")\nset(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL \"2\")\nset(CONFIG_HAL_WDT_USE_ROM_IMPL \"y\")\nset(CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM \"y\")\nset(CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM \"y\")\nset(CONFIG_HEAP_POISONING_DISABLED \"y\")\nset(CONFIG_HEAP_POISONING_LIGHT \"\")\nset(CONFIG_HEAP_POISONING_COMPREHENSIVE \"\")\nset(CONFIG_HEAP_TRACING_OFF \"y\")\nset(CONFIG_HEAP_TRACING_STANDALONE \"\")\nset(CONFIG_HEAP_TRACING_TOHOST \"\")\nset(CONFIG_HEAP_USE_HOOKS \"\")\nset(CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS \"\")\nset(CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH \"\")\nset(CONFIG_IEEE802154_CCA_THRESHOLD \"-60\")\nset(CONFIG_IEEE802154_PENDING_TABLE_SIZE \"20\")\nset(CONFIG_LOG_DEFAULT_LEVEL_NONE \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_ERROR \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_WARN \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_INFO \"y\")\nset(CONFIG_LOG_DEFAULT_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_DEFAULT_LEVEL \"3\")\nset(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT \"y\")\nset(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_MAXIMUM_LEVEL \"3\")\nset(CONFIG_LOG_COLORS \"y\")\nset(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS \"y\")\nset(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM \"\")\nset(CONFIG_LWIP_LOCAL_HOSTNAME \"espressif\")\nset(CONFIG_LWIP_NETIF_API \"\")\nset(CONFIG_LWIP_TCPIP_TASK_PRIO \"18\")\nset(CONFIG_LWIP_TCPIP_CORE_LOCKING \"\")\nset(CONFIG_LWIP_CHECK_THREAD_SAFETY \"\")\nset(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES \"y\")\nset(CONFIG_LWIP_L2_TO_L3_COPY \"\")\nset(CONFIG_LWIP_IRAM_OPTIMIZATION \"\")\nset(CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION \"\")\nset(CONFIG_LWIP_TIMERS_ONDEMAND \"y\")\nset(CONFIG_LWIP_ND6 \"y\")\nset(CONFIG_LWIP_MAX_SOCKETS \"10\")\nset(CONFIG_LWIP_USE_ONLY_LWIP_SELECT \"\")\nset(CONFIG_LWIP_SO_LINGER \"\")\nset(CONFIG_LWIP_SO_REUSE \"y\")\nset(CONFIG_LWIP_SO_REUSE_RXTOALL \"y\")\nset(CONFIG_LWIP_SO_RCVBUF \"\")\nset(CONFIG_LWIP_NETBUF_RECVINFO \"\")\nset(CONFIG_LWIP_IP4_FRAG \"y\")\nset(CONFIG_LWIP_IP6_FRAG \"y\")\nset(CONFIG_LWIP_IP4_REASSEMBLY \"\")\nset(CONFIG_LWIP_IP6_REASSEMBLY \"\")\nset(CONFIG_LWIP_IP_REASS_MAX_PBUFS \"10\")\nset(CONFIG_LWIP_IP_FORWARD \"\")\nset(CONFIG_LWIP_STATS \"\")\nset(CONFIG_LWIP_ESP_GRATUITOUS_ARP \"y\")\nset(CONFIG_LWIP_GARP_TMR_INTERVAL \"60\")\nset(CONFIG_LWIP_ESP_MLDV6_REPORT \"y\")\nset(CONFIG_LWIP_MLDV6_TMR_INTERVAL \"40\")\nset(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE \"32\")\nset(CONFIG_LWIP_DHCP_DOES_ARP_CHECK \"y\")\nset(CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID \"\")\nset(CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID \"y\")\nset(CONFIG_LWIP_DHCP_RESTORE_LAST_IP \"\")\nset(CONFIG_LWIP_DHCP_OPTIONS_LEN \"68\")\nset(CONFIG_LWIP_NUM_NETIF_CLIENT_DATA \"0\")\nset(CONFIG_LWIP_DHCP_COARSE_TIMER_SECS \"1\")\nset(CONFIG_LWIP_DHCPS \"y\")\nset(CONFIG_LWIP_DHCPS_LEASE_UNIT \"60\")\nset(CONFIG_LWIP_DHCPS_MAX_STATION_NUM \"8\")\nset(CONFIG_LWIP_AUTOIP \"\")\nset(CONFIG_LWIP_IPV4 \"y\")\nset(CONFIG_LWIP_IPV6 \"y\")\nset(CONFIG_LWIP_IPV6_AUTOCONFIG \"\")\nset(CONFIG_LWIP_IPV6_NUM_ADDRESSES \"3\")\nset(CONFIG_LWIP_IPV6_FORWARD \"\")\nset(CONFIG_LWIP_NETIF_STATUS_CALLBACK \"\")\nset(CONFIG_LWIP_NETIF_LOOPBACK \"y\")\nset(CONFIG_LWIP_LOOPBACK_MAX_PBUFS \"8\")\nset(CONFIG_LWIP_MAX_ACTIVE_TCP \"16\")\nset(CONFIG_LWIP_MAX_LISTENING_TCP \"16\")\nset(CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION \"y\")\nset(CONFIG_LWIP_TCP_MAXRTX \"12\")\nset(CONFIG_LWIP_TCP_SYNMAXRTX \"12\")\nset(CONFIG_LWIP_TCP_MSS \"1440\")\nset(CONFIG_LWIP_TCP_TMR_INTERVAL \"250\")\nset(CONFIG_LWIP_TCP_MSL \"60000\")\nset(CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT \"20000\")\nset(CONFIG_LWIP_TCP_SND_BUF_DEFAULT \"5744\")\nset(CONFIG_LWIP_TCP_WND_DEFAULT \"5744\")\nset(CONFIG_LWIP_TCP_RECVMBOX_SIZE \"6\")\nset(CONFIG_LWIP_TCP_QUEUE_OOSEQ \"y\")\nset(CONFIG_LWIP_TCP_SACK_OUT \"\")\nset(CONFIG_LWIP_TCP_OVERSIZE_MSS \"y\")\nset(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS \"\")\nset(CONFIG_LWIP_TCP_OVERSIZE_DISABLE \"\")\nset(CONFIG_LWIP_TCP_RTO_TIME \"1500\")\nset(CONFIG_LWIP_MAX_UDP_PCBS \"16\")\nset(CONFIG_LWIP_UDP_RECVMBOX_SIZE \"6\")\nset(CONFIG_LWIP_CHECKSUM_CHECK_IP \"\")\nset(CONFIG_LWIP_CHECKSUM_CHECK_UDP \"\")\nset(CONFIG_LWIP_CHECKSUM_CHECK_ICMP \"y\")\nset(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE \"3072\")\nset(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY \"y\")\nset(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 \"\")\nset(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 \"\")\nset(CONFIG_LWIP_TCPIP_TASK_AFFINITY \"0x7fffffff\")\nset(CONFIG_LWIP_PPP_SUPPORT \"\")\nset(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE \"3\")\nset(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS \"5\")\nset(CONFIG_LWIP_SLIP_SUPPORT \"\")\nset(CONFIG_LWIP_ICMP \"y\")\nset(CONFIG_LWIP_MULTICAST_PING \"\")\nset(CONFIG_LWIP_BROADCAST_PING \"\")\nset(CONFIG_LWIP_MAX_RAW_PCBS \"16\")\nset(CONFIG_LWIP_SNTP_MAX_SERVERS \"1\")\nset(CONFIG_LWIP_DHCP_GET_NTP_SRV \"\")\nset(CONFIG_LWIP_SNTP_UPDATE_DELAY \"3600000\")\nset(CONFIG_LWIP_BRIDGEIF_MAX_PORTS \"7\")\nset(CONFIG_LWIP_ESP_LWIP_ASSERT \"y\")\nset(CONFIG_LWIP_HOOK_TCP_ISN_NONE \"\")\nset(CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT \"y\")\nset(CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM \"\")\nset(CONFIG_LWIP_HOOK_IP6_ROUTE_NONE \"y\")\nset(CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT \"\")\nset(CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM \"\")\nset(CONFIG_LWIP_HOOK_ND6_GET_GW_NONE \"y\")\nset(CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT \"\")\nset(CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM \"\")\nset(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE \"y\")\nset(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT \"\")\nset(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM \"\")\nset(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE \"y\")\nset(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT \"\")\nset(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM \"\")\nset(CONFIG_LWIP_HOOK_IP6_INPUT_NONE \"y\")\nset(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT \"\")\nset(CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM \"\")\nset(CONFIG_LWIP_DEBUG \"\")\nset(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC \"y\")\nset(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC \"\")\nset(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC \"\")\nset(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN \"y\")\nset(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN \"16384\")\nset(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN \"4096\")\nset(CONFIG_MBEDTLS_DYNAMIC_BUFFER \"\")\nset(CONFIG_MBEDTLS_DEBUG \"\")\nset(CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 \"\")\nset(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH \"\")\nset(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK \"\")\nset(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION \"\")\nset(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE \"y\")\nset(CONFIG_MBEDTLS_PKCS7_C \"y\")\nset(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE \"y\")\nset(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL \"y\")\nset(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN \"\")\nset(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE \"\")\nset(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE \"\")\nset(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS \"200\")\nset(CONFIG_MBEDTLS_ECP_RESTARTABLE \"\")\nset(CONFIG_MBEDTLS_CMAC_C \"y\")\nset(CONFIG_MBEDTLS_HARDWARE_AES \"y\")\nset(CONFIG_MBEDTLS_AES_USE_INTERRUPT \"y\")\nset(CONFIG_MBEDTLS_HARDWARE_MPI \"y\")\nset(CONFIG_MBEDTLS_MPI_USE_INTERRUPT \"y\")\nset(CONFIG_MBEDTLS_HARDWARE_SHA \"y\")\nset(CONFIG_MBEDTLS_ROM_MD5 \"y\")\nset(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN \"\")\nset(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY \"\")\nset(CONFIG_MBEDTLS_HAVE_TIME \"y\")\nset(CONFIG_MBEDTLS_PLATFORM_TIME_ALT \"\")\nset(CONFIG_MBEDTLS_HAVE_TIME_DATE \"\")\nset(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC \"y\")\nset(CONFIG_MBEDTLS_SHA512_C \"y\")\nset(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT \"y\")\nset(CONFIG_MBEDTLS_TLS_SERVER_ONLY \"\")\nset(CONFIG_MBEDTLS_TLS_CLIENT_ONLY \"\")\nset(CONFIG_MBEDTLS_TLS_DISABLED \"\")\nset(CONFIG_MBEDTLS_TLS_SERVER \"y\")\nset(CONFIG_MBEDTLS_TLS_CLIENT \"y\")\nset(CONFIG_MBEDTLS_TLS_ENABLED \"y\")\nset(CONFIG_MBEDTLS_PSK_MODES \"\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA \"y\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE \"y\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA \"y\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA \"y\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA \"y\")\nset(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA \"y\")\nset(CONFIG_MBEDTLS_SSL_RENEGOTIATION \"y\")\nset(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 \"y\")\nset(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 \"\")\nset(CONFIG_MBEDTLS_SSL_PROTO_DTLS \"\")\nset(CONFIG_MBEDTLS_SSL_ALPN \"y\")\nset(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS \"y\")\nset(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS \"y\")\nset(CONFIG_MBEDTLS_AES_C \"y\")\nset(CONFIG_MBEDTLS_CAMELLIA_C \"\")\nset(CONFIG_MBEDTLS_DES_C \"\")\nset(CONFIG_MBEDTLS_BLOWFISH_C \"\")\nset(CONFIG_MBEDTLS_XTEA_C \"\")\nset(CONFIG_MBEDTLS_CCM_C \"y\")\nset(CONFIG_MBEDTLS_GCM_C \"y\")\nset(CONFIG_MBEDTLS_NIST_KW_C \"\")\nset(CONFIG_MBEDTLS_RIPEMD160_C \"\")\nset(CONFIG_MBEDTLS_PEM_PARSE_C \"y\")\nset(CONFIG_MBEDTLS_PEM_WRITE_C \"y\")\nset(CONFIG_MBEDTLS_X509_CRL_PARSE_C \"y\")\nset(CONFIG_MBEDTLS_X509_CSR_PARSE_C \"y\")\nset(CONFIG_MBEDTLS_ECP_C \"y\")\nset(CONFIG_MBEDTLS_DHM_C \"\")\nset(CONFIG_MBEDTLS_ECDH_C \"y\")\nset(CONFIG_MBEDTLS_ECDSA_C \"y\")\nset(CONFIG_MBEDTLS_ECJPAKE_C \"\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED \"y\")\nset(CONFIG_MBEDTLS_ECP_NIST_OPTIM \"y\")\nset(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM \"y\")\nset(CONFIG_MBEDTLS_POLY1305_C \"\")\nset(CONFIG_MBEDTLS_CHACHA20_C \"\")\nset(CONFIG_MBEDTLS_HKDF_C \"\")\nset(CONFIG_MBEDTLS_THREADING_C \"\")\nset(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI \"\")\nset(CONFIG_MQTT_PROTOCOL_311 \"y\")\nset(CONFIG_MQTT_PROTOCOL_5 \"\")\nset(CONFIG_MQTT_TRANSPORT_SSL \"y\")\nset(CONFIG_MQTT_TRANSPORT_WEBSOCKET \"y\")\nset(CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE \"y\")\nset(CONFIG_MQTT_MSG_ID_INCREMENTAL \"\")\nset(CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED \"\")\nset(CONFIG_MQTT_REPORT_DELETED_MESSAGES \"\")\nset(CONFIG_MQTT_USE_CUSTOM_CONFIG \"\")\nset(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED \"\")\nset(CONFIG_MQTT_CUSTOM_OUTBOX \"\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF \"y\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF \"\")\nset(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF \"\")\nset(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR \"y\")\nset(CONFIG_NEWLIB_NANO_FORMAT \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT \"y\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT \"\")\nset(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE \"\")\nset(CONFIG_NVS_ASSERT_ERROR_CHECK \"\")\nset(CONFIG_OPENTHREAD_ENABLED \"\")\nset(CONFIG_OPENTHREAD_NETWORK_NAME \"OpenThread-ESP\")\nset(CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX \"fd00:db8:a0:0::/64\")\nset(CONFIG_OPENTHREAD_NETWORK_CHANNEL \"15\")\nset(CONFIG_OPENTHREAD_NETWORK_PANID \"0x1234\")\nset(CONFIG_OPENTHREAD_NETWORK_EXTPANID \"dead00beef00cafe\")\nset(CONFIG_OPENTHREAD_NETWORK_MASTERKEY \"00112233445566778899aabbccddeeff\")\nset(CONFIG_OPENTHREAD_NETWORK_PSKC \"104810e2315100afd6bc9215a6bfac53\")\nset(CONFIG_OPENTHREAD_XTAL_ACCURACY \"130\")\nset(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 \"y\")\nset(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 \"y\")\nset(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 \"y\")\nset(CONFIG_PTHREAD_TASK_PRIO_DEFAULT \"5\")\nset(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT \"3072\")\nset(CONFIG_PTHREAD_STACK_MIN \"768\")\nset(CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY \"y\")\nset(CONFIG_PTHREAD_DEFAULT_CORE_0 \"\")\nset(CONFIG_PTHREAD_DEFAULT_CORE_1 \"\")\nset(CONFIG_PTHREAD_TASK_CORE_DEFAULT \"-1\")\nset(CONFIG_PTHREAD_TASK_NAME_DEFAULT \"pthread\")\nset(CONFIG_MMU_PAGE_SIZE_64KB \"y\")\nset(CONFIG_MMU_PAGE_MODE \"64KB\")\nset(CONFIG_MMU_PAGE_SIZE \"0x10000\")\nset(CONFIG_SPI_FLASH_VERIFY_WRITE \"\")\nset(CONFIG_SPI_FLASH_ENABLE_COUNTERS \"\")\nset(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH \"y\")\nset(CONFIG_SPI_FLASH_ROM_IMPL \"\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS \"y\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS \"\")\nset(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED \"\")\nset(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE \"\")\nset(CONFIG_SPI_FLASH_YIELD_DURING_ERASE \"y\")\nset(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS \"20\")\nset(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS \"1\")\nset(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE \"8192\")\nset(CONFIG_SPI_FLASH_SIZE_OVERRIDE \"\")\nset(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED \"\")\nset(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST \"\")\nset(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC \"y\")\nset(CONFIG_SPI_FLASH_BROWNOUT_RESET \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP \"y\")\nset(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP \"y\")\nset(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE \"y\")\nset(CONFIG_SPIFFS_MAX_PARTITIONS \"3\")\nset(CONFIG_SPIFFS_CACHE \"y\")\nset(CONFIG_SPIFFS_CACHE_WR \"y\")\nset(CONFIG_SPIFFS_CACHE_STATS \"\")\nset(CONFIG_SPIFFS_PAGE_CHECK \"y\")\nset(CONFIG_SPIFFS_GC_MAX_RUNS \"10\")\nset(CONFIG_SPIFFS_GC_STATS \"\")\nset(CONFIG_SPIFFS_PAGE_SIZE \"256\")\nset(CONFIG_SPIFFS_OBJ_NAME_LEN \"32\")\nset(CONFIG_SPIFFS_FOLLOW_SYMLINKS \"\")\nset(CONFIG_SPIFFS_USE_MAGIC \"y\")\nset(CONFIG_SPIFFS_USE_MAGIC_LENGTH \"y\")\nset(CONFIG_SPIFFS_META_LENGTH \"4\")\nset(CONFIG_SPIFFS_USE_MTIME \"y\")\nset(CONFIG_SPIFFS_DBG \"\")\nset(CONFIG_SPIFFS_API_DBG \"\")\nset(CONFIG_SPIFFS_GC_DBG \"\")\nset(CONFIG_SPIFFS_CACHE_DBG \"\")\nset(CONFIG_SPIFFS_CHECK_DBG \"\")\nset(CONFIG_SPIFFS_TEST_VISUALISATION \"\")\nset(CONFIG_WS_TRANSPORT \"y\")\nset(CONFIG_WS_BUFFER_SIZE \"1024\")\nset(CONFIG_WS_DYNAMIC_BUFFER \"\")\nset(CONFIG_ULP_COPROC_ENABLED \"\")\nset(CONFIG_UNITY_ENABLE_FLOAT \"y\")\nset(CONFIG_UNITY_ENABLE_DOUBLE \"y\")\nset(CONFIG_UNITY_ENABLE_64BIT \"\")\nset(CONFIG_UNITY_ENABLE_COLOR \"\")\nset(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER \"y\")\nset(CONFIG_UNITY_ENABLE_FIXTURE \"\")\nset(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL \"\")\nset(CONFIG_USB_OTG_SUPPORTED \"y\")\nset(CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE \"256\")\nset(CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED \"y\")\nset(CONFIG_USB_HOST_HW_BUFFER_BIAS_IN \"\")\nset(CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT \"\")\nset(CONFIG_USB_HOST_DEBOUNCE_DELAY_MS \"250\")\nset(CONFIG_USB_HOST_RESET_HOLD_MS \"30\")\nset(CONFIG_USB_HOST_RESET_RECOVERY_MS \"30\")\nset(CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS \"10\")\nset(CONFIG_VFS_SUPPORT_IO \"y\")\nset(CONFIG_VFS_SUPPORT_DIR \"y\")\nset(CONFIG_VFS_SUPPORT_SELECT \"y\")\nset(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT \"y\")\nset(CONFIG_VFS_SUPPORT_TERMIOS \"y\")\nset(CONFIG_VFS_MAX_COUNT \"8\")\nset(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS \"1\")\nset(CONFIG_WL_SECTOR_SIZE_512 \"\")\nset(CONFIG_WL_SECTOR_SIZE_4096 \"y\")\nset(CONFIG_WL_SECTOR_SIZE \"4096\")\nset(CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES \"16\")\nset(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT \"30\")\nset(CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION \"\")\nset(CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN \"y\")\nset(CONFIG_WIFI_PROV_STA_FAST_SCAN \"\")\nset(CONFIG_IDF_EXPERIMENTAL_FEATURES \"\")\nset(CONFIGS_LIST CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_GDMA_GROUPS;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_MEMSPI_SRC_FREQ_120M;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TOUCH_VERSION_2;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_REQUIRE_CORE_RESET;CONFIG_SOC_USB_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_GPIO_RANGE_MAX;CONFIG_WIDTH;CONFIG_HEIGHT;CONFIG_OFFSETX;CONFIG_OFFSETY;CONFIG_MOSI_GPIO;CONFIG_SCLK_GPIO;CONFIG_CS_GPIO;CONFIG_DC_GPIO;CONFIG_RESET_GPIO;CONFIG_BL_GPIO;CONFIG_INVERSION;CONFIG_SPI2_HOST;CONFIG_SPI3_HOST;CONFIG_FRAME_BUFFER;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_APPTRACE_DEST_JTAG;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_DEST_UART1;CONFIG_APPTRACE_DEST_UART2;CONFIG_APPTRACE_DEST_USB_CDC;CONFIG_APPTRACE_DEST_UART_NONE;CONFIG_APPTRACE_UART_TASK_PRIO;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_ISR_IN_IRAM;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_DS_PERIPHERAL;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3;CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE;CONFIG_EXTERNAL_COEX_ENABLE;CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_SPI_ETHERNET_W5500;CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL;CONFIG_ETH_USE_OPENETH;CONFIG_ETH_TRANSMIT_MUTEX;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_HTTPD_QUEUE_WORK_BLOCKING;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_LCD_RGB_ISR_IRAM_SAFE;CONFIG_LCD_RGB_RESTART_IN_VSYNC;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP_PHY_MAX_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP_PHY_REDUCE_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_ESP_PHY_ENABLE_USB;CONFIG_ESP_PHY_ENABLE_CERT_TEST;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_PM_ENABLE;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP;CONFIG_SPIRAM;CONFIG_ESP32S3_SPIRAM_SUPPORT;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_MULTIPLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL;CONFIG_ESP_TIMER_TASK_AFFINITY;CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0;CONFIG_ESP_TIMER_ISR_AFFINITY;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_ESP_WIFI_ENABLED;CONFIG_ESP32_WIFI_ENABLED;CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF;CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF;CONFIG_ESP_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP_WIFI_EXTRA_IRAM_OPT;CONFIG_ESP_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP_WIFI_ENABLE_SAE_PK;CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT;CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_FTM_ENABLE;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_GCMP_SUPPORT;CONFIG_ESP_WIFI_GMAC_SUPPORT;CONFIG_ESP_WIFI_SOFTAP_SUPPORT;CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT;CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM;CONFIG_ESP_WIFI_MBEDTLS_CRYPTO;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT;CONFIG_WPA_MBEDTLS_TLS_CLIENT;CONFIG_ESP_WIFI_WAPI_PSK;CONFIG_WPA_WAPI_PSK;CONFIG_ESP_WIFI_SUITE_B_192;CONFIG_WPA_SUITE_B_192;CONFIG_ESP_WIFI_11KV_SUPPORT;CONFIG_WPA_11KV_SUPPORT;CONFIG_ESP_WIFI_MBO_SUPPORT;CONFIG_WPA_MBO_SUPPORT;CONFIG_ESP_WIFI_DPP_SUPPORT;CONFIG_WPA_DPP_SUPPORT;CONFIG_ESP_WIFI_11R_SUPPORT;CONFIG_WPA_11R_SUPPORT;CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR;CONFIG_WPA_WPS_SOFTAP_REGISTRAR;CONFIG_ESP_WIFI_WPS_STRICT;CONFIG_WPA_WPS_STRICT;CONFIG_ESP_WIFI_WPS_PASSPHRASE;CONFIG_ESP_WIFI_DEBUG_PRINT;CONFIG_WPA_DEBUG_PRINT;CONFIG_ESP_WIFI_TESTING_OPTIONS;CONFIG_WPA_TESTING_OPTIONS;CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT;CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP_COREDUMP_ENABLE_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP_COREDUMP_ENABLE_TO_NONE;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_VOLUME_COUNT;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_SECTOR_512;CONFIG_FATFS_SECTOR_4096;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FATFS_USE_FASTSEEK;CONFIG_FATFS_VFS_FSTAT_BLKSIZE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM;CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_HEAP_USE_HOOKS;CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH;CONFIG_IEEE802154_CCA_THRESHOLD;CONFIG_IEEE802154_PENDING_TABLE_SIZE;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_NETIF_API;CONFIG_LWIP_TCPIP_TASK_PRIO;CONFIG_LWIP_TCPIP_CORE_LOCKING;CONFIG_LWIP_CHECK_THREAD_SAFETY;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_ND6;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_LINGER;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_REASS_MAX_PBUFS;CONFIG_LWIP_IP_FORWARD;CONFIG_LWIP_STATS;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_ESP_MLDV6_REPORT;CONFIG_LWIP_MLDV6_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID;CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCP_OPTIONS_LEN;CONFIG_LWIP_NUM_NETIF_CLIENT_DATA;CONFIG_LWIP_DHCP_COARSE_TIMER_SECS;CONFIG_LWIP_DHCPS;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV4;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_TCP_RTO_TIME;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_CHECKSUM_CHECK_IP;CONFIG_LWIP_CHECKSUM_CHECK_UDP;CONFIG_LWIP_CHECKSUM_CHECK_ICMP;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_SLIP_SUPPORT;CONFIG_LWIP_ICMP;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_SNTP_MAX_SERVERS;CONFIG_LWIP_DHCP_GET_NTP_SRV;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_LWIP_BRIDGEIF_MAX_PORTS;CONFIG_LWIP_ESP_LWIP_ASSERT;CONFIG_LWIP_HOOK_TCP_ISN_NONE;CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT;CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM;CONFIG_LWIP_HOOK_IP6_ROUTE_NONE;CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT;CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM;CONFIG_LWIP_HOOK_ND6_GET_GW_NONE;CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT;CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_IP6_INPUT_NONE;CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT;CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM;CONFIG_LWIP_DEBUG;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_PROTOCOL_5;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_MSG_ID_INCREMENTAL;CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED;CONFIG_MQTT_REPORT_DELETED_MESSAGES;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_NETWORK_NAME;CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX;CONFIG_OPENTHREAD_NETWORK_CHANNEL;CONFIG_OPENTHREAD_NETWORK_PANID;CONFIG_OPENTHREAD_NETWORK_EXTPANID;CONFIG_OPENTHREAD_NETWORK_MASTERKEY;CONFIG_OPENTHREAD_NETWORK_PSKC;CONFIG_OPENTHREAD_XTAL_ACCURACY;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_WS_TRANSPORT;CONFIG_WS_BUFFER_SIZE;CONFIG_WS_DYNAMIC_BUFFER;CONFIG_ULP_COPROC_ENABLED;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_64BIT;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_USB_OTG_SUPPORTED;CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE;CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED;CONFIG_USB_HOST_HW_BUFFER_BIAS_IN;CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT;CONFIG_USB_HOST_DEBOUNCE_DELAY_MS;CONFIG_USB_HOST_RESET_HOLD_MS;CONFIG_USB_HOST_RESET_RECOVERY_MS;CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS;CONFIG_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_MAX_COUNT;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION;CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_IDF_EXPERIMENTAL_FEATURES)\n# List of deprecated options for backward compatibility\nset(CONFIG_APP_BUILD_TYPE_ELF_RAM \"\")\nset(CONFIG_NO_BLOBS \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_NONE \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_WARN \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_INFO \"y\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE \"\")\nset(CONFIG_LOG_BOOTLOADER_LEVEL \"3\")\nset(CONFIG_APP_ROLLBACK_ENABLE \"\")\nset(CONFIG_FLASH_ENCRYPTION_ENABLED \"\")\nset(CONFIG_FLASHMODE_QIO \"\")\nset(CONFIG_FLASHMODE_QOUT \"\")\nset(CONFIG_FLASHMODE_DIO \"y\")\nset(CONFIG_FLASHMODE_DOUT \"\")\nset(CONFIG_MONITOR_BAUD \"115200\")\nset(CONFIG_OPTIMIZATION_LEVEL_DEBUG \"y\")\nset(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG \"y\")\nset(CONFIG_OPTIMIZATION_LEVEL_RELEASE \"\")\nset(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE \"\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED \"y\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT \"\")\nset(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED \"\")\nset(CONFIG_OPTIMIZATION_ASSERTION_LEVEL \"2\")\nset(CONFIG_CXX_EXCEPTIONS \"\")\nset(CONFIG_STACK_CHECK_NONE \"y\")\nset(CONFIG_STACK_CHECK_NORM \"\")\nset(CONFIG_STACK_CHECK_STRONG \"\")\nset(CONFIG_STACK_CHECK_ALL \"\")\nset(CONFIG_WARN_WRITE_STRINGS \"\")\nset(CONFIG_ESP32_APPTRACE_DEST_TRAX \"\")\nset(CONFIG_ESP32_APPTRACE_DEST_NONE \"y\")\nset(CONFIG_ESP32_APPTRACE_LOCK_ENABLE \"y\")\nset(CONFIG_MCPWM_ISR_IN_IRAM \"\")\nset(CONFIG_EXTERNAL_COEX_ENABLE \"\")\nset(CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE \"\")\nset(CONFIG_EVENT_LOOP_PROFILING \"\")\nset(CONFIG_POST_EVENTS_FROM_ISR \"y\")\nset(CONFIG_POST_EVENTS_FROM_IRAM_ISR \"y\")\nset(CONFIG_OTA_ALLOW_HTTP \"\")\nset(CONFIG_ESP_SYSTEM_PD_FLASH \"\")\nset(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY \"2000\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC \"y\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS \"\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC \"\")\nset(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 \"\")\nset(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES \"1024\")\nset(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE \"y\")\nset(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION \"\")\nset(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER \"20\")\nset(CONFIG_ESP32_PHY_MAX_TX_POWER \"20\")\nset(CONFIG_REDUCE_PHY_TX_POWER \"\")\nset(CONFIG_ESP32_REDUCE_PHY_TX_POWER \"\")\nset(CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU \"y\")\nset(CONFIG_ESP32S3_SPIRAM_SUPPORT \"\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 \"\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 \"\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 \"y\")\nset(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ \"240\")\nset(CONFIG_SYSTEM_EVENT_QUEUE_SIZE \"32\")\nset(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE \"2304\")\nset(CONFIG_MAIN_TASK_STACK_SIZE \"3584\")\nset(CONFIG_CONSOLE_UART_DEFAULT \"y\")\nset(CONFIG_CONSOLE_UART_CUSTOM \"\")\nset(CONFIG_CONSOLE_UART_NONE \"\")\nset(CONFIG_ESP_CONSOLE_UART_NONE \"\")\nset(CONFIG_CONSOLE_UART \"y\")\nset(CONFIG_CONSOLE_UART_NUM \"0\")\nset(CONFIG_CONSOLE_UART_BAUDRATE \"115200\")\nset(CONFIG_INT_WDT \"y\")\nset(CONFIG_INT_WDT_TIMEOUT_MS \"300\")\nset(CONFIG_INT_WDT_CHECK_CPU1 \"y\")\nset(CONFIG_ESP32_DEBUG_STUBS_ENABLE \"\")\nset(CONFIG_ESP32S3_DEBUG_OCDAWARE \"y\")\nset(CONFIG_BROWNOUT_DET \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET \"y\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 \"y\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 \"\")\nset(CONFIG_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 \"\")\nset(CONFIG_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_ESP32S3_BROWNOUT_DET_LVL \"7\")\nset(CONFIG_IPC_TASK_STACK_SIZE \"1280\")\nset(CONFIG_TIMER_TASK_STACK_SIZE \"3584\")\nset(CONFIG_ESP32_WIFI_ENABLED \"y\")\nset(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM \"10\")\nset(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM \"32\")\nset(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER \"\")\nset(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER \"y\")\nset(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE \"1\")\nset(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM \"32\")\nset(CONFIG_ESP32_WIFI_CSI_ENABLED \"\")\nset(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED \"y\")\nset(CONFIG_ESP32_WIFI_TX_BA_WIN \"6\")\nset(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED \"y\")\nset(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED \"y\")\nset(CONFIG_ESP32_WIFI_RX_BA_WIN \"6\")\nset(CONFIG_ESP32_WIFI_RX_BA_WIN \"6\")\nset(CONFIG_ESP32_WIFI_NVS_ENABLED \"y\")\nset(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 \"y\")\nset(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 \"\")\nset(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN \"752\")\nset(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM \"32\")\nset(CONFIG_ESP32_WIFI_IRAM_OPT \"y\")\nset(CONFIG_ESP32_WIFI_RX_IRAM_OPT \"y\")\nset(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE \"y\")\nset(CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA \"y\")\nset(CONFIG_WPA_MBEDTLS_CRYPTO \"y\")\nset(CONFIG_WPA_MBEDTLS_TLS_CLIENT \"y\")\nset(CONFIG_WPA_WAPI_PSK \"\")\nset(CONFIG_WPA_SUITE_B_192 \"\")\nset(CONFIG_WPA_11KV_SUPPORT \"\")\nset(CONFIG_WPA_MBO_SUPPORT \"\")\nset(CONFIG_WPA_DPP_SUPPORT \"\")\nset(CONFIG_WPA_11R_SUPPORT \"\")\nset(CONFIG_WPA_WPS_SOFTAP_REGISTRAR \"\")\nset(CONFIG_WPA_WPS_STRICT \"\")\nset(CONFIG_WPA_DEBUG_PRINT \"\")\nset(CONFIG_WPA_TESTING_OPTIONS \"\")\nset(CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH \"\")\nset(CONFIG_ESP32_ENABLE_COREDUMP_TO_UART \"\")\nset(CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE \"y\")\nset(CONFIG_TIMER_TASK_PRIORITY \"1\")\nset(CONFIG_TIMER_TASK_STACK_DEPTH \"4096\")\nset(CONFIG_TIMER_QUEUE_LENGTH \"10\")\nset(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK \"\")\nset(CONFIG_HAL_ASSERTION_SILIENT \"\")\nset(CONFIG_L2_TO_L3_COPY \"\")\nset(CONFIG_ESP_GRATUITOUS_ARP \"y\")\nset(CONFIG_GARP_TMR_INTERVAL \"60\")\nset(CONFIG_TCPIP_RECVMBOX_SIZE \"32\")\nset(CONFIG_TCP_MAXRTX \"12\")\nset(CONFIG_TCP_SYNMAXRTX \"12\")\nset(CONFIG_TCP_MSS \"1440\")\nset(CONFIG_TCP_MSL \"60000\")\nset(CONFIG_TCP_SND_BUF_DEFAULT \"5744\")\nset(CONFIG_TCP_WND_DEFAULT \"5744\")\nset(CONFIG_TCP_RECVMBOX_SIZE \"6\")\nset(CONFIG_TCP_QUEUE_OOSEQ \"y\")\nset(CONFIG_TCP_OVERSIZE_MSS \"y\")\nset(CONFIG_TCP_OVERSIZE_QUARTER_MSS \"\")\nset(CONFIG_TCP_OVERSIZE_DISABLE \"\")\nset(CONFIG_UDP_RECVMBOX_SIZE \"6\")\nset(CONFIG_TCPIP_TASK_STACK_SIZE \"3072\")\nset(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY \"y\")\nset(CONFIG_TCPIP_TASK_AFFINITY_CPU0 \"\")\nset(CONFIG_TCPIP_TASK_AFFINITY_CPU1 \"\")\nset(CONFIG_TCPIP_TASK_AFFINITY \"0x7fffffff\")\nset(CONFIG_PPP_SUPPORT \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER \"y\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 \"y\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 \"\")\nset(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE \"\")\nset(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT \"5\")\nset(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT \"3072\")\nset(CONFIG_ESP32_PTHREAD_STACK_MIN \"768\")\nset(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY \"y\")\nset(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 \"\")\nset(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 \"\")\nset(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT \"-1\")\nset(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT \"pthread\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS \"y\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS \"\")\nset(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED \"\")\nset(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT \"y\")\nset(CONFIG_SUPPORT_TERMIOS \"y\")\nset(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS \"1\")\n"
  },
  {
    "path": "Code/build/config/sdkconfig.h",
    "content": "/*\n * Automatically generated file. DO NOT EDIT.\n * Espressif IoT Development Framework (ESP-IDF) 5.1.2 Configuration Header\n */\n#pragma once\n#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000\n#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8\n#define CONFIG_SOC_ADC_SUPPORTED 1\n#define CONFIG_SOC_UART_SUPPORTED 1\n#define CONFIG_SOC_PCNT_SUPPORTED 1\n#define CONFIG_SOC_WIFI_SUPPORTED 1\n#define CONFIG_SOC_TWAI_SUPPORTED 1\n#define CONFIG_SOC_GDMA_SUPPORTED 1\n#define CONFIG_SOC_GPTIMER_SUPPORTED 1\n#define CONFIG_SOC_LCDCAM_SUPPORTED 1\n#define CONFIG_SOC_MCPWM_SUPPORTED 1\n#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1\n#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1\n#define CONFIG_SOC_ULP_SUPPORTED 1\n#define CONFIG_SOC_ULP_FSM_SUPPORTED 1\n#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1\n#define CONFIG_SOC_BT_SUPPORTED 1\n#define CONFIG_SOC_USB_OTG_SUPPORTED 1\n#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1\n#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1\n#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1\n#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1\n#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1\n#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1\n#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1\n#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1\n#define CONFIG_SOC_RTC_MEM_SUPPORTED 1\n#define CONFIG_SOC_PSRAM_DMA_CAPABLE 1\n#define CONFIG_SOC_XT_WDT_SUPPORTED 1\n#define CONFIG_SOC_I2S_SUPPORTED 1\n#define CONFIG_SOC_RMT_SUPPORTED 1\n#define CONFIG_SOC_SDM_SUPPORTED 1\n#define CONFIG_SOC_GPSPI_SUPPORTED 1\n#define CONFIG_SOC_LEDC_SUPPORTED 1\n#define CONFIG_SOC_I2C_SUPPORTED 1\n#define CONFIG_SOC_SYSTIMER_SUPPORTED 1\n#define CONFIG_SOC_SUPPORT_COEXISTENCE 1\n#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1\n#define CONFIG_SOC_AES_SUPPORTED 1\n#define CONFIG_SOC_MPI_SUPPORTED 1\n#define CONFIG_SOC_SHA_SUPPORTED 1\n#define CONFIG_SOC_HMAC_SUPPORTED 1\n#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1\n#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1\n#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1\n#define CONFIG_SOC_MEMPROT_SUPPORTED 1\n#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1\n#define CONFIG_SOC_BOD_SUPPORTED 1\n#define CONFIG_SOC_XTAL_SUPPORT_40M 1\n#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1\n#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1\n#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1\n#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1\n#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1\n#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1\n#define CONFIG_SOC_ADC_DMA_SUPPORTED 1\n#define CONFIG_SOC_ADC_PERIPH_NUM 2\n#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10\n#define CONFIG_SOC_ADC_ATTEN_NUM 4\n#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2\n#define CONFIG_SOC_ADC_PATT_LEN_MAX 24\n#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12\n#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12\n#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4\n#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4\n#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2\n#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333\n#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611\n#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12\n#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12\n#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1\n#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1\n#define CONFIG_SOC_APB_BACKUP_DMA 1\n#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1\n#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1\n#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1\n#define CONFIG_SOC_CPU_CORES_NUM 2\n#define CONFIG_SOC_CPU_INTR_NUM 32\n#define CONFIG_SOC_CPU_HAS_FPU 1\n#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2\n#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2\n#define CONFIG_SOC_CPU_WATCHPOINT_SIZE 64\n#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096\n#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16\n#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100\n#define CONFIG_SOC_GDMA_GROUPS 1\n#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5\n#define CONFIG_SOC_GDMA_SUPPORT_PSRAM 1\n#define CONFIG_SOC_GPIO_PORT 1\n#define CONFIG_SOC_GPIO_PIN_COUNT 49\n#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1\n#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1\n#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1\n#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF\n#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000\n#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8\n#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8\n#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1\n#define CONFIG_SOC_I2C_NUM 2\n#define CONFIG_SOC_I2C_FIFO_LEN 32\n#define CONFIG_SOC_I2C_CMD_REG_NUM 8\n#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1\n#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1\n#define CONFIG_SOC_I2C_SUPPORT_XTAL 1\n#define CONFIG_SOC_I2C_SUPPORT_RTC 1\n#define CONFIG_SOC_I2S_NUM 2\n#define CONFIG_SOC_I2S_HW_VERSION_2 1\n#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1\n#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1\n#define CONFIG_SOC_I2S_SUPPORTS_PCM 1\n#define CONFIG_SOC_I2S_SUPPORTS_PDM 1\n#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1\n#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2\n#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1\n#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4\n#define CONFIG_SOC_I2S_SUPPORTS_TDM 1\n#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1\n#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1\n#define CONFIG_SOC_LEDC_CHANNEL_NUM 8\n#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14\n#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1\n#define CONFIG_SOC_MCPWM_GROUPS 2\n#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2\n#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1\n#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3\n#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3\n#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1\n#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1\n#define CONFIG_SOC_MMU_PERIPH_NUM 1\n#define CONFIG_SOC_PCNT_GROUPS 1\n#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4\n#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2\n#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2\n#define CONFIG_SOC_RMT_GROUPS 1\n#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4\n#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4\n#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8\n#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48\n#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1\n#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1\n#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1\n#define CONFIG_SOC_RMT_SUPPORT_XTAL 1\n#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1\n#define CONFIG_SOC_RMT_SUPPORT_APB 1\n#define CONFIG_SOC_RMT_SUPPORT_DMA 1\n#define CONFIG_SOC_LCD_I80_SUPPORTED 1\n#define CONFIG_SOC_LCD_RGB_SUPPORTED 1\n#define CONFIG_SOC_LCD_I80_BUSES 1\n#define CONFIG_SOC_LCD_RGB_PANELS 1\n#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16\n#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16\n#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1\n#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128\n#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549\n#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128\n#define CONFIG_SOC_RTCIO_PIN_COUNT 22\n#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1\n#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1\n#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1\n#define CONFIG_SOC_SDM_GROUPS 1\n#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8\n#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_SPI_PERIPH_NUM 3\n#define CONFIG_SOC_SPI_MAX_CS_NUM 6\n#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64\n#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1\n#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1\n#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1\n#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1\n#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1\n#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1\n#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1\n#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1\n#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1\n#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16\n#define CONFIG_SOC_SPI_SUPPORT_OCT 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1\n#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1\n#define CONFIG_SOC_SPIRAM_SUPPORTED 1\n#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1\n#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2\n#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3\n#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32\n#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20\n#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1\n#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1\n#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1\n#define CONFIG_SOC_TIMER_GROUPS 2\n#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2\n#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54\n#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1\n#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1\n#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4\n#define CONFIG_SOC_TOUCH_VERSION_2 1\n#define CONFIG_SOC_TOUCH_SENSOR_NUM 15\n#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3\n#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 1\n#define CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX 0x1FFFFF\n#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF\n#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1\n#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1\n#define CONFIG_SOC_TWAI_BRP_MIN 2\n#define CONFIG_SOC_TWAI_BRP_MAX 16384\n#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1\n#define CONFIG_SOC_UART_NUM 3\n#define CONFIG_SOC_UART_FIFO_LEN 128\n#define CONFIG_SOC_UART_BITRATE_MAX 5000000\n#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1\n#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1\n#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1\n#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1\n#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1\n#define CONFIG_SOC_UART_REQUIRE_CORE_RESET 1\n#define CONFIG_SOC_USB_PERIPH_NUM 1\n#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968\n#define CONFIG_SOC_SHA_SUPPORT_DMA 1\n#define CONFIG_SOC_SHA_SUPPORT_RESUME 1\n#define CONFIG_SOC_SHA_GDMA 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA1 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA224 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA256 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA384 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_224 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1\n#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1\n#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096\n#define CONFIG_SOC_AES_SUPPORT_DMA 1\n#define CONFIG_SOC_AES_GDMA 1\n#define CONFIG_SOC_AES_SUPPORT_AES_128 1\n#define CONFIG_SOC_AES_SUPPORT_AES_256 1\n#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1\n#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1\n#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1\n#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1\n#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1\n#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1\n#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1\n#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1\n#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1\n#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1\n#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1\n#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1\n#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1\n#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1\n#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1\n#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1\n#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1\n#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1\n#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1\n#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1\n#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1\n#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1\n#define CONFIG_SOC_EFUSE_DIS_ICACHE 1\n#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1\n#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1\n#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3\n#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1\n#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1\n#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1\n#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1\n#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16\n#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256\n#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21\n#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192\n#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1\n#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1\n#define CONFIG_SOC_COEX_HW_PTI 1\n#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1\n#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1\n#define CONFIG_SOC_SDMMC_NUM_SLOTS 2\n#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1\n#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1\n#define CONFIG_SOC_WIFI_HW_TSF 1\n#define CONFIG_SOC_WIFI_FTM_SUPPORT 1\n#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1\n#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1\n#define CONFIG_SOC_WIFI_CSI_SUPPORT 1\n#define CONFIG_SOC_WIFI_MESH_SUPPORT 1\n#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1\n#define CONFIG_SOC_BLE_SUPPORTED 1\n#define CONFIG_SOC_BLE_MESH_SUPPORTED 1\n#define CONFIG_SOC_BLE_50_SUPPORTED 1\n#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1\n#define CONFIG_SOC_BLUFI_SUPPORTED 1\n#define CONFIG_SOC_ULP_HAS_ADC 1\n#define CONFIG_SOC_PHY_COMBO_MODULE 1\n#define CONFIG_IDF_CMAKE 1\n#define CONFIG_IDF_TARGET_ARCH_XTENSA 1\n#define CONFIG_IDF_TARGET_ARCH \"xtensa\"\n#define CONFIG_IDF_TARGET \"esp32s3\"\n#define CONFIG_IDF_TARGET_ESP32S3 1\n#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009\n#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1\n#define CONFIG_APP_BUILD_GENERATE_BINARIES 1\n#define CONFIG_APP_BUILD_BOOTLOADER 1\n#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1\n#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0\n#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1\n#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1\n#define CONFIG_BOOTLOADER_LOG_LEVEL 3\n#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1\n#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1\n#define CONFIG_BOOTLOADER_WDT_ENABLE 1\n#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000\n#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0\n#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1\n#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1\n#define CONFIG_SECURE_BOOT_V2_PREFERRED 1\n#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1\n#define CONFIG_APP_COMPILE_TIME_DATE 1\n#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 16\n#define CONFIG_ESP_ROM_HAS_CRC_LE 1\n#define CONFIG_ESP_ROM_HAS_CRC_BE 1\n#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1\n#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1\n#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1\n#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1\n#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4\n#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1\n#define CONFIG_ESP_ROM_GET_CLK_FREQ 1\n#define CONFIG_ESP_ROM_HAS_HAL_WDT 1\n#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1\n#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1\n#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1\n#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1\n#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1\n#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1\n#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1\n#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1\n#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1\n#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1\n#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1\n#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 1\n#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1\n#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1\n#define CONFIG_ESPTOOLPY_FLASHMODE \"dio\"\n#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1\n#define CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT 1\n#define CONFIG_ESPTOOLPY_FLASHFREQ \"80m\"\n#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1\n#define CONFIG_ESPTOOLPY_FLASHSIZE \"2MB\"\n#define CONFIG_ESPTOOLPY_BEFORE_RESET 1\n#define CONFIG_ESPTOOLPY_BEFORE \"default_reset\"\n#define CONFIG_ESPTOOLPY_AFTER_RESET 1\n#define CONFIG_ESPTOOLPY_AFTER \"hard_reset\"\n#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200\n#define CONFIG_PARTITION_TABLE_CUSTOM 1\n#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME \"partitions.csv\"\n#define CONFIG_PARTITION_TABLE_FILENAME \"partitions.csv\"\n#define CONFIG_PARTITION_TABLE_OFFSET 0x8000\n#define CONFIG_PARTITION_TABLE_MD5 1\n#define CONFIG_GPIO_RANGE_MAX 48\n#define CONFIG_WIDTH 240\n#define CONFIG_HEIGHT 280\n#define CONFIG_OFFSETX 0\n#define CONFIG_OFFSETY 20\n#define CONFIG_MOSI_GPIO 11\n#define CONFIG_SCLK_GPIO 12\n#define CONFIG_CS_GPIO 10\n#define CONFIG_DC_GPIO 9\n#define CONFIG_RESET_GPIO 8\n#define CONFIG_BL_GPIO 7\n#define CONFIG_SPI2_HOST 1\n#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1\n#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1\n#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1\n#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2\n#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1\n#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1\n#define CONFIG_APPTRACE_DEST_NONE 1\n#define CONFIG_APPTRACE_DEST_UART_NONE 1\n#define CONFIG_APPTRACE_UART_TASK_PRIO 1\n#define CONFIG_APPTRACE_LOCK_ENABLE 1\n#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1\n#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1\n#define CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM 1\n#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1\n#define CONFIG_EFUSE_MAX_BLK_LEN 256\n#define CONFIG_ESP_TLS_USING_MBEDTLS 1\n#define CONFIG_ESP_TLS_USE_DS_PERIPHERAL 1\n#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1\n#define CONFIG_ETH_ENABLED 1\n#define CONFIG_ETH_USE_SPI_ETHERNET 1\n#define CONFIG_ESP_EVENT_POST_FROM_ISR 1\n#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1\n#define CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS 1\n#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 512\n#define CONFIG_HTTPD_MAX_URI_LEN 512\n#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1\n#define CONFIG_HTTPD_PURGE_BUF_LEN 32\n#define CONFIG_ESP32S3_REV_MIN_0 1\n#define CONFIG_ESP32S3_REV_MIN_FULL 0\n#define CONFIG_ESP_REV_MIN_FULL 0\n#define CONFIG_ESP32S3_REV_MAX_FULL 99\n#define CONFIG_ESP_REV_MAX_FULL 99\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1\n#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1\n#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1\n#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1\n#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4\n#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1\n#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1\n#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY 2000\n#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1\n#define CONFIG_RTC_CLK_SRC_INT_RC 1\n#define CONFIG_RTC_CLK_CAL_CYCLES 1024\n#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1\n#define CONFIG_XTAL_FREQ_40 1\n#define CONFIG_XTAL_FREQ 40\n#define CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE 32\n#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120\n#define CONFIG_ESP_NETIF_TCPIP_LWIP 1\n#define CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API 1\n#define CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE 1\n#define CONFIG_ESP_PHY_MAX_WIFI_TX_POWER 20\n#define CONFIG_ESP_PHY_MAX_TX_POWER 20\n#define CONFIG_ESP_PHY_ENABLE_USB 1\n#define CONFIG_ESP_PHY_RF_CAL_PARTIAL 1\n#define CONFIG_ESP_PHY_CALIBRATION_MODE 0\n#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1\n#define CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP 1\n#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 1\n#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 240\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB 1\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1\n#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1\n#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32\n#define CONFIG_ESP32S3_DATA_CACHE_32KB 1\n#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000\n#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1\n#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8\n#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1\n#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32\n#define CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM 0x0\n#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1\n#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0\n#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1\n#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1\n#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1\n#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1\n#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32\n#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304\n#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584\n#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1\n#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0\n#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048\n#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1\n#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1\n#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1\n#define CONFIG_ESP_CONSOLE_UART 1\n#define CONFIG_ESP_CONSOLE_MULTIPLE_UART 1\n#define CONFIG_ESP_CONSOLE_UART_NUM 0\n#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200\n#define CONFIG_ESP_INT_WDT 1\n#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300\n#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1\n#define CONFIG_ESP_DEBUG_OCDAWARE 1\n#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1\n#define CONFIG_ESP_BROWNOUT_DET 1\n#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1\n#define CONFIG_ESP_BROWNOUT_DET_LVL 7\n#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1\n#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280\n#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1\n#define CONFIG_ESP_IPC_ISR_ENABLE 1\n#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1\n#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1\n#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584\n#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1\n#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0\n#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1\n#define CONFIG_ESP_TIMER_ISR_AFFINITY 0x1\n#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1\n#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1\n#define CONFIG_ESP_WIFI_ENABLED 1\n#define CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM 10\n#define CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM 32\n#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER 1\n#define CONFIG_ESP_WIFI_TX_BUFFER_TYPE 1\n#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM 32\n#define CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER 1\n#define CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF 0\n#define CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF 5\n#define CONFIG_ESP_WIFI_AMPDU_TX_ENABLED 1\n#define CONFIG_ESP_WIFI_TX_BA_WIN 6\n#define CONFIG_ESP_WIFI_AMPDU_RX_ENABLED 1\n#define CONFIG_ESP_WIFI_RX_BA_WIN 6\n#define CONFIG_ESP_WIFI_NVS_ENABLED 1\n#define CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 1\n#define CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN 752\n#define CONFIG_ESP_WIFI_MGMT_SBUF_NUM 32\n#define CONFIG_ESP_WIFI_IRAM_OPT 1\n#define CONFIG_ESP_WIFI_RX_IRAM_OPT 1\n#define CONFIG_ESP_WIFI_ENABLE_WPA3_SAE 1\n#define CONFIG_ESP_WIFI_ENABLE_SAE_PK 1\n#define CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT 1\n#define CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA 1\n#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1\n#define CONFIG_ESP_WIFI_SOFTAP_SUPPORT 1\n#define CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM 7\n#define CONFIG_ESP_WIFI_MBEDTLS_CRYPTO 1\n#define CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT 1\n#define CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT 1\n#define CONFIG_ESP_COREDUMP_ENABLE_TO_NONE 1\n#define CONFIG_FATFS_VOLUME_COUNT 2\n#define CONFIG_FATFS_LFN_NONE 1\n#define CONFIG_FATFS_SECTOR_4096 1\n#define CONFIG_FATFS_CODEPAGE_437 1\n#define CONFIG_FATFS_CODEPAGE 437\n#define CONFIG_FATFS_FS_LOCK 0\n#define CONFIG_FATFS_TIMEOUT_MS 10000\n#define CONFIG_FATFS_PER_FILE_CACHE 1\n#define CONFIG_FATFS_VFS_FSTAT_BLKSIZE 0\n#define CONFIG_FREERTOS_HZ 100\n#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1\n#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1\n#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536\n#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16\n#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1\n#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 4096\n#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10\n#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0\n#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1\n#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1\n#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1\n#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1\n#define CONFIG_FREERTOS_ISR_STACKSIZE 1536\n#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1\n#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1\n#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1\n#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1\n#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1\n#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF\n#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1\n#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1\n#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1\n#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2\n#define CONFIG_HAL_WDT_USE_ROM_IMPL 1\n#define CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM 1\n#define CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM 1\n#define CONFIG_HEAP_POISONING_DISABLED 1\n#define CONFIG_HEAP_TRACING_OFF 1\n#define CONFIG_IEEE802154_CCA_THRESHOLD -60\n#define CONFIG_IEEE802154_PENDING_TABLE_SIZE 20\n#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1\n#define CONFIG_LOG_DEFAULT_LEVEL 3\n#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1\n#define CONFIG_LOG_MAXIMUM_LEVEL 3\n#define CONFIG_LOG_COLORS 1\n#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1\n#define CONFIG_LWIP_LOCAL_HOSTNAME \"espressif\"\n#define CONFIG_LWIP_TCPIP_TASK_PRIO 18\n#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1\n#define CONFIG_LWIP_TIMERS_ONDEMAND 1\n#define CONFIG_LWIP_ND6 1\n#define CONFIG_LWIP_MAX_SOCKETS 10\n#define CONFIG_LWIP_SO_REUSE 1\n#define CONFIG_LWIP_SO_REUSE_RXTOALL 1\n#define CONFIG_LWIP_IP4_FRAG 1\n#define CONFIG_LWIP_IP6_FRAG 1\n#define CONFIG_LWIP_IP_REASS_MAX_PBUFS 10\n#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1\n#define CONFIG_LWIP_GARP_TMR_INTERVAL 60\n#define CONFIG_LWIP_ESP_MLDV6_REPORT 1\n#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40\n#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32\n#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1\n#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1\n#define CONFIG_LWIP_DHCP_OPTIONS_LEN 68\n#define CONFIG_LWIP_NUM_NETIF_CLIENT_DATA 0\n#define CONFIG_LWIP_DHCP_COARSE_TIMER_SECS 1\n#define CONFIG_LWIP_DHCPS 1\n#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60\n#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8\n#define CONFIG_LWIP_IPV4 1\n#define CONFIG_LWIP_IPV6 1\n#define CONFIG_LWIP_IPV6_NUM_ADDRESSES 3\n#define CONFIG_LWIP_NETIF_LOOPBACK 1\n#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8\n#define CONFIG_LWIP_MAX_ACTIVE_TCP 16\n#define CONFIG_LWIP_MAX_LISTENING_TCP 16\n#define CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION 1\n#define CONFIG_LWIP_TCP_MAXRTX 12\n#define CONFIG_LWIP_TCP_SYNMAXRTX 12\n#define CONFIG_LWIP_TCP_MSS 1440\n#define CONFIG_LWIP_TCP_TMR_INTERVAL 250\n#define CONFIG_LWIP_TCP_MSL 60000\n#define CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT 20000\n#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5744\n#define CONFIG_LWIP_TCP_WND_DEFAULT 5744\n#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6\n#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1\n#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1\n#define CONFIG_LWIP_TCP_RTO_TIME 1500\n#define CONFIG_LWIP_MAX_UDP_PCBS 16\n#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6\n#define CONFIG_LWIP_CHECKSUM_CHECK_ICMP 1\n#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072\n#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1\n#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF\n#define CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE 3\n#define CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS 5\n#define CONFIG_LWIP_ICMP 1\n#define CONFIG_LWIP_MAX_RAW_PCBS 16\n#define CONFIG_LWIP_SNTP_MAX_SERVERS 1\n#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000\n#define CONFIG_LWIP_BRIDGEIF_MAX_PORTS 7\n#define CONFIG_LWIP_ESP_LWIP_ASSERT 1\n#define CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT 1\n#define CONFIG_LWIP_HOOK_IP6_ROUTE_NONE 1\n#define CONFIG_LWIP_HOOK_ND6_GET_GW_NONE 1\n#define CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE 1\n#define CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE 1\n#define CONFIG_LWIP_HOOK_IP6_INPUT_NONE 1\n#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1\n#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1\n#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384\n#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096\n#define CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE 1\n#define CONFIG_MBEDTLS_PKCS7_C 1\n#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE 1\n#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL 1\n#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS 200\n#define CONFIG_MBEDTLS_CMAC_C 1\n#define CONFIG_MBEDTLS_HARDWARE_AES 1\n#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1\n#define CONFIG_MBEDTLS_HARDWARE_MPI 1\n#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1\n#define CONFIG_MBEDTLS_HARDWARE_SHA 1\n#define CONFIG_MBEDTLS_ROM_MD5 1\n#define CONFIG_MBEDTLS_HAVE_TIME 1\n#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1\n#define CONFIG_MBEDTLS_SHA512_C 1\n#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1\n#define CONFIG_MBEDTLS_TLS_SERVER 1\n#define CONFIG_MBEDTLS_TLS_CLIENT 1\n#define CONFIG_MBEDTLS_TLS_ENABLED 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA 1\n#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1\n#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1\n#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1\n#define CONFIG_MBEDTLS_SSL_ALPN 1\n#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1\n#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1\n#define CONFIG_MBEDTLS_AES_C 1\n#define CONFIG_MBEDTLS_CCM_C 1\n#define CONFIG_MBEDTLS_GCM_C 1\n#define CONFIG_MBEDTLS_PEM_PARSE_C 1\n#define CONFIG_MBEDTLS_PEM_WRITE_C 1\n#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1\n#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1\n#define CONFIG_MBEDTLS_ECP_C 1\n#define CONFIG_MBEDTLS_ECDH_C 1\n#define CONFIG_MBEDTLS_ECDSA_C 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1\n#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1\n#define CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM 1\n#define CONFIG_MQTT_PROTOCOL_311 1\n#define CONFIG_MQTT_TRANSPORT_SSL 1\n#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1\n#define CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE 1\n#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1\n#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1\n#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1\n#define CONFIG_OPENTHREAD_NETWORK_NAME \"OpenThread-ESP\"\n#define CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX \"fd00:db8:a0:0::/64\"\n#define CONFIG_OPENTHREAD_NETWORK_CHANNEL 15\n#define CONFIG_OPENTHREAD_NETWORK_PANID 0x1234\n#define CONFIG_OPENTHREAD_NETWORK_EXTPANID \"dead00beef00cafe\"\n#define CONFIG_OPENTHREAD_NETWORK_MASTERKEY \"00112233445566778899aabbccddeeff\"\n#define CONFIG_OPENTHREAD_NETWORK_PSKC \"104810e2315100afd6bc9215a6bfac53\"\n#define CONFIG_OPENTHREAD_XTAL_ACCURACY 130\n#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 1\n#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 1\n#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 1\n#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5\n#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072\n#define CONFIG_PTHREAD_STACK_MIN 768\n#define CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY 1\n#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1\n#define CONFIG_PTHREAD_TASK_NAME_DEFAULT \"pthread\"\n#define CONFIG_MMU_PAGE_SIZE_64KB 1\n#define CONFIG_MMU_PAGE_MODE \"64KB\"\n#define CONFIG_MMU_PAGE_SIZE 0x10000\n#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1\n#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1\n#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1\n#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20\n#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1\n#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192\n#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1\n#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1\n#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED 1\n#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED 1\n#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1\n#define CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP 1\n#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1\n#define CONFIG_SPIFFS_MAX_PARTITIONS 3\n#define CONFIG_SPIFFS_CACHE 1\n#define CONFIG_SPIFFS_CACHE_WR 1\n#define CONFIG_SPIFFS_PAGE_CHECK 1\n#define CONFIG_SPIFFS_GC_MAX_RUNS 10\n#define CONFIG_SPIFFS_PAGE_SIZE 256\n#define CONFIG_SPIFFS_OBJ_NAME_LEN 32\n#define CONFIG_SPIFFS_USE_MAGIC 1\n#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1\n#define CONFIG_SPIFFS_META_LENGTH 4\n#define CONFIG_SPIFFS_USE_MTIME 1\n#define CONFIG_WS_TRANSPORT 1\n#define CONFIG_WS_BUFFER_SIZE 1024\n#define CONFIG_UNITY_ENABLE_FLOAT 1\n#define CONFIG_UNITY_ENABLE_DOUBLE 1\n#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1\n#define CONFIG_USB_OTG_SUPPORTED 1\n#define CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE 256\n#define CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED 1\n#define CONFIG_USB_HOST_DEBOUNCE_DELAY_MS 250\n#define CONFIG_USB_HOST_RESET_HOLD_MS 30\n#define CONFIG_USB_HOST_RESET_RECOVERY_MS 30\n#define CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS 10\n#define CONFIG_VFS_SUPPORT_IO 1\n#define CONFIG_VFS_SUPPORT_DIR 1\n#define CONFIG_VFS_SUPPORT_SELECT 1\n#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1\n#define CONFIG_VFS_SUPPORT_TERMIOS 1\n#define CONFIG_VFS_MAX_COUNT 8\n#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1\n#define CONFIG_WL_SECTOR_SIZE_4096 1\n#define CONFIG_WL_SECTOR_SIZE 4096\n#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16\n#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30\n#define CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN 1\n\n/* List of deprecated options */\n#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET\n#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL\n#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7\n#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT\n#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART\n#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE\n#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT\n#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM\n#define CONFIG_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET\n#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL\n#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7\n#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE\n#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\n#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240\n#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ\n#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES\n#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC\n#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT\n#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT\n#define CONFIG_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE\n#define CONFIG_ESP32_APPTRACE_LOCK_ENABLE CONFIG_APPTRACE_LOCK_ENABLE\n#define CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY\n#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE CONFIG_ESP_COREDUMP_ENABLE_TO_NONE\n#define CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE\n#define CONFIG_ESP32_PHY_MAX_TX_POWER CONFIG_ESP_PHY_MAX_TX_POWER\n#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP_PHY_MAX_WIFI_TX_POWER\n#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN\n#define CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT CONFIG_PTHREAD_TASK_CORE_DEFAULT\n#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT\n#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT\n#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT\n#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED CONFIG_ESP_WIFI_AMPDU_RX_ENABLED\n#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED CONFIG_ESP_WIFI_AMPDU_TX_ENABLED\n#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM\n#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER\n#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM\n#define CONFIG_ESP32_WIFI_ENABLED CONFIG_ESP_WIFI_ENABLED\n#define CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA\n#define CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE CONFIG_ESP_WIFI_ENABLE_WPA3_SAE\n#define CONFIG_ESP32_WIFI_IRAM_OPT CONFIG_ESP_WIFI_IRAM_OPT\n#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM CONFIG_ESP_WIFI_MGMT_SBUF_NUM\n#define CONFIG_ESP32_WIFI_NVS_ENABLED CONFIG_ESP_WIFI_NVS_ENABLED\n#define CONFIG_ESP32_WIFI_RX_BA_WIN CONFIG_ESP_WIFI_RX_BA_WIN\n#define CONFIG_ESP32_WIFI_RX_IRAM_OPT CONFIG_ESP_WIFI_RX_IRAM_OPT\n#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN\n#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM\n#define CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0\n#define CONFIG_ESP32_WIFI_TX_BA_WIN CONFIG_ESP_WIFI_TX_BA_WIN\n#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE CONFIG_ESP_WIFI_TX_BUFFER_TYPE\n#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP\n#define CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\n#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO\n#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL\n#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT\n#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1\n#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS\n#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE\n#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL\n#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO\n#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE\n#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD\n#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\n#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL\n#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT\n#define CONFIG_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR\n#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR\n#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS\n#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS\n#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE\n#define CONFIG_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS\n#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT\n#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE\n#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE\n#define CONFIG_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE\n#define CONFIG_TCPIP_TASK_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY\n#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY\n#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE\n#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX\n#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL\n#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS\n#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS\n#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ\n#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE\n#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT\n#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX\n#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT\n#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH\n#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY\n#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH\n#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE\n#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE\n#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO\n#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT\n"
  },
  {
    "path": "Code/build/config/sdkconfig.json",
    "content": "{\n    \"ADC_CALI_SUPPRESS_DEPRECATE_WARN\": false,\n    \"ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3\": false,\n    \"ADC_CONTINUOUS_ISR_IRAM_SAFE\": false,\n    \"ADC_ONESHOT_CTRL_FUNC_IN_IRAM\": false,\n    \"ADC_SUPPRESS_DEPRECATE_WARN\": false,\n    \"APPTRACE_DEST_JTAG\": false,\n    \"APPTRACE_DEST_NONE\": true,\n    \"APPTRACE_DEST_UART1\": false,\n    \"APPTRACE_DEST_UART2\": false,\n    \"APPTRACE_DEST_UART_NONE\": true,\n    \"APPTRACE_DEST_USB_CDC\": false,\n    \"APPTRACE_LOCK_ENABLE\": true,\n    \"APPTRACE_UART_TASK_PRIO\": 1,\n    \"APP_BUILD_BOOTLOADER\": true,\n    \"APP_BUILD_GENERATE_BINARIES\": true,\n    \"APP_BUILD_TYPE_APP_2NDBOOT\": true,\n    \"APP_BUILD_TYPE_RAM\": false,\n    \"APP_BUILD_USE_FLASH_SECTIONS\": true,\n    \"APP_COMPILE_TIME_DATE\": true,\n    \"APP_EXCLUDE_PROJECT_NAME_VAR\": false,\n    \"APP_EXCLUDE_PROJECT_VER_VAR\": false,\n    \"APP_NO_BLOBS\": false,\n    \"APP_PROJECT_VER_FROM_CONFIG\": false,\n    \"APP_REPRODUCIBLE_BUILD\": false,\n    \"APP_RETRIEVE_LEN_ELF_SHA\": 16,\n    \"BL_GPIO\": 7,\n    \"BOOTLOADER_APP_ROLLBACK_ENABLE\": false,\n    \"BOOTLOADER_APP_TEST\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_NONE\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_PERF\": false,\n    \"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE\": true,\n    \"BOOTLOADER_CUSTOM_RESERVE_RTC\": false,\n    \"BOOTLOADER_FACTORY_RESET\": false,\n    \"BOOTLOADER_FLASH_XMC_SUPPORT\": true,\n    \"BOOTLOADER_LOG_LEVEL\": 3,\n    \"BOOTLOADER_LOG_LEVEL_DEBUG\": false,\n    \"BOOTLOADER_LOG_LEVEL_ERROR\": false,\n    \"BOOTLOADER_LOG_LEVEL_INFO\": true,\n    \"BOOTLOADER_LOG_LEVEL_NONE\": false,\n    \"BOOTLOADER_LOG_LEVEL_VERBOSE\": false,\n    \"BOOTLOADER_LOG_LEVEL_WARN\": false,\n    \"BOOTLOADER_OFFSET_IN_FLASH\": 0,\n    \"BOOTLOADER_REGION_PROTECTION_ENABLE\": true,\n    \"BOOTLOADER_RESERVE_RTC_SIZE\": 0,\n    \"BOOTLOADER_SKIP_VALIDATE_ALWAYS\": false,\n    \"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP\": false,\n    \"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON\": false,\n    \"BOOTLOADER_VDDSDIO_BOOST_1_9V\": true,\n    \"BOOTLOADER_WDT_DISABLE_IN_USER_CODE\": false,\n    \"BOOTLOADER_WDT_ENABLE\": true,\n    \"BOOTLOADER_WDT_TIME_MS\": 9000,\n    \"BOOT_ROM_LOG_ALWAYS_OFF\": false,\n    \"BOOT_ROM_LOG_ALWAYS_ON\": true,\n    \"BOOT_ROM_LOG_ON_GPIO_HIGH\": false,\n    \"BOOT_ROM_LOG_ON_GPIO_LOW\": false,\n    \"BT_ENABLED\": false,\n    \"COMPILER_CXX_EXCEPTIONS\": false,\n    \"COMPILER_CXX_RTTI\": false,\n    \"COMPILER_DISABLE_GCC12_WARNINGS\": false,\n    \"COMPILER_DUMP_RTL_FILES\": false,\n    \"COMPILER_FLOAT_LIB_FROM_GCCLIB\": true,\n    \"COMPILER_HIDE_PATHS_MACROS\": true,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE\": false,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE\": true,\n    \"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT\": false,\n    \"COMPILER_OPTIMIZATION_ASSERTION_LEVEL\": 2,\n    \"COMPILER_OPTIMIZATION_CHECKS_SILENT\": false,\n    \"COMPILER_OPTIMIZATION_DEFAULT\": true,\n    \"COMPILER_OPTIMIZATION_NONE\": false,\n    \"COMPILER_OPTIMIZATION_PERF\": false,\n    \"COMPILER_OPTIMIZATION_SIZE\": false,\n    \"COMPILER_STACK_CHECK_MODE_ALL\": false,\n    \"COMPILER_STACK_CHECK_MODE_NONE\": true,\n    \"COMPILER_STACK_CHECK_MODE_NORM\": false,\n    \"COMPILER_STACK_CHECK_MODE_STRONG\": false,\n    \"COMPILER_WARN_WRITE_STRINGS\": false,\n    \"CS_GPIO\": 10,\n    \"DC_GPIO\": 9,\n    \"EFUSE_CUSTOM_TABLE\": false,\n    \"EFUSE_MAX_BLK_LEN\": 256,\n    \"EFUSE_VIRTUAL\": false,\n    \"ESP32S3_DATA_CACHE_16KB\": false,\n    \"ESP32S3_DATA_CACHE_32KB\": true,\n    \"ESP32S3_DATA_CACHE_4WAYS\": false,\n    \"ESP32S3_DATA_CACHE_64KB\": false,\n    \"ESP32S3_DATA_CACHE_8WAYS\": true,\n    \"ESP32S3_DATA_CACHE_LINE_16B\": false,\n    \"ESP32S3_DATA_CACHE_LINE_32B\": true,\n    \"ESP32S3_DATA_CACHE_LINE_64B\": false,\n    \"ESP32S3_DATA_CACHE_LINE_SIZE\": 32,\n    \"ESP32S3_DATA_CACHE_SIZE\": 32768,\n    \"ESP32S3_DCACHE_ASSOCIATED_WAYS\": 8,\n    \"ESP32S3_ICACHE_ASSOCIATED_WAYS\": 8,\n    \"ESP32S3_INSTRUCTION_CACHE_16KB\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_32KB\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_4WAYS\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_8WAYS\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_16B\": false,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_32B\": true,\n    \"ESP32S3_INSTRUCTION_CACHE_LINE_SIZE\": 32,\n    \"ESP32S3_INSTRUCTION_CACHE_SIZE\": 16384,\n    \"ESP32S3_REV_MAX_FULL\": 99,\n    \"ESP32S3_REV_MIN_0\": true,\n    \"ESP32S3_REV_MIN_1\": false,\n    \"ESP32S3_REV_MIN_2\": false,\n    \"ESP32S3_REV_MIN_FULL\": 0,\n    \"ESP32S3_RTCDATA_IN_FAST_MEM\": false,\n    \"ESP32S3_TRACEMEM_RESERVE_DRAM\": 0,\n    \"ESP32S3_TRAX\": false,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES\": 4,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR\": true,\n    \"ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO\": false,\n    \"ESP32S3_USE_FIXED_STATIC_RAM_SIZE\": false,\n    \"ESPTOOLPY_AFTER\": \"hard_reset\",\n    \"ESPTOOLPY_AFTER_NORESET\": false,\n    \"ESPTOOLPY_AFTER_RESET\": true,\n    \"ESPTOOLPY_BEFORE\": \"default_reset\",\n    \"ESPTOOLPY_BEFORE_NORESET\": false,\n    \"ESPTOOLPY_BEFORE_RESET\": true,\n    \"ESPTOOLPY_FLASHFREQ\": \"80m\",\n    \"ESPTOOLPY_FLASHFREQ_120M\": false,\n    \"ESPTOOLPY_FLASHFREQ_20M\": false,\n    \"ESPTOOLPY_FLASHFREQ_40M\": false,\n    \"ESPTOOLPY_FLASHFREQ_80M\": true,\n    \"ESPTOOLPY_FLASHFREQ_80M_DEFAULT\": true,\n    \"ESPTOOLPY_FLASHMODE\": \"dio\",\n    \"ESPTOOLPY_FLASHMODE_DIO\": true,\n    \"ESPTOOLPY_FLASHMODE_DOUT\": false,\n    \"ESPTOOLPY_FLASHMODE_QIO\": false,\n    \"ESPTOOLPY_FLASHMODE_QOUT\": false,\n    \"ESPTOOLPY_FLASHSIZE\": \"2MB\",\n    \"ESPTOOLPY_FLASHSIZE_128MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_16MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_1MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_2MB\": true,\n    \"ESPTOOLPY_FLASHSIZE_32MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_4MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_64MB\": false,\n    \"ESPTOOLPY_FLASHSIZE_8MB\": false,\n    \"ESPTOOLPY_FLASH_MODE_AUTO_DETECT\": true,\n    \"ESPTOOLPY_FLASH_SAMPLE_MODE_STR\": true,\n    \"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE\": false,\n    \"ESPTOOLPY_MONITOR_BAUD\": 115200,\n    \"ESPTOOLPY_NO_STUB\": false,\n    \"ESPTOOLPY_OCT_FLASH\": false,\n    \"ESP_BROWNOUT_DET\": true,\n    \"ESP_BROWNOUT_DET_LVL\": 7,\n    \"ESP_BROWNOUT_DET_LVL_SEL_1\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_2\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_3\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_4\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_5\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_6\": false,\n    \"ESP_BROWNOUT_DET_LVL_SEL_7\": true,\n    \"ESP_COEX_EXTERNAL_COEXIST_ENABLE\": false,\n    \"ESP_CONSOLE_MULTIPLE_UART\": true,\n    \"ESP_CONSOLE_NONE\": false,\n    \"ESP_CONSOLE_SECONDARY_NONE\": false,\n    \"ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG\": true,\n    \"ESP_CONSOLE_UART\": true,\n    \"ESP_CONSOLE_UART_BAUDRATE\": 115200,\n    \"ESP_CONSOLE_UART_CUSTOM\": false,\n    \"ESP_CONSOLE_UART_DEFAULT\": true,\n    \"ESP_CONSOLE_UART_NUM\": 0,\n    \"ESP_CONSOLE_USB_CDC\": false,\n    \"ESP_CONSOLE_USB_SERIAL_JTAG\": false,\n    \"ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED\": true,\n    \"ESP_COREDUMP_ENABLE_TO_FLASH\": false,\n    \"ESP_COREDUMP_ENABLE_TO_NONE\": true,\n    \"ESP_COREDUMP_ENABLE_TO_UART\": false,\n    \"ESP_DEBUG_OCDAWARE\": true,\n    \"ESP_DEBUG_STUBS_ENABLE\": false,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ\": 240,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_160\": false,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_240\": true,\n    \"ESP_DEFAULT_CPU_FREQ_MHZ_80\": false,\n    \"ESP_ERR_TO_NAME_LOOKUP\": true,\n    \"ESP_EVENT_LOOP_PROFILING\": false,\n    \"ESP_EVENT_POST_FROM_IRAM_ISR\": true,\n    \"ESP_EVENT_POST_FROM_ISR\": true,\n    \"ESP_HTTPS_OTA_ALLOW_HTTP\": false,\n    \"ESP_HTTPS_OTA_DECRYPT_CB\": false,\n    \"ESP_HTTPS_SERVER_ENABLE\": false,\n    \"ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH\": false,\n    \"ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH\": false,\n    \"ESP_HTTP_CLIENT_ENABLE_HTTPS\": true,\n    \"ESP_INT_WDT\": true,\n    \"ESP_INT_WDT_CHECK_CPU1\": true,\n    \"ESP_INT_WDT_TIMEOUT_MS\": 300,\n    \"ESP_IPC_ISR_ENABLE\": true,\n    \"ESP_IPC_TASK_STACK_SIZE\": 1280,\n    \"ESP_IPC_USES_CALLERS_PRIORITY\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_BT\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_ETH\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_WIFI_AP\": true,\n    \"ESP_MAC_ADDR_UNIVERSE_WIFI_STA\": true,\n    \"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR\": true,\n    \"ESP_MAIN_TASK_AFFINITY\": 0,\n    \"ESP_MAIN_TASK_AFFINITY_CPU0\": true,\n    \"ESP_MAIN_TASK_AFFINITY_CPU1\": false,\n    \"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY\": false,\n    \"ESP_MAIN_TASK_STACK_SIZE\": 3584,\n    \"ESP_MINIMAL_SHARED_STACK_SIZE\": 2048,\n    \"ESP_NETIF_BRIDGE_EN\": false,\n    \"ESP_NETIF_IP_LOST_TIMER_INTERVAL\": 120,\n    \"ESP_NETIF_L2_TAP\": false,\n    \"ESP_NETIF_LOOPBACK\": false,\n    \"ESP_NETIF_RECEIVE_REPORT_ERRORS\": false,\n    \"ESP_NETIF_TCPIP_LWIP\": true,\n    \"ESP_NETIF_USES_TCPIP_WITH_BSD_API\": true,\n    \"ESP_PANIC_HANDLER_IRAM\": false,\n    \"ESP_PHY_CALIBRATION_AND_DATA_STORAGE\": true,\n    \"ESP_PHY_CALIBRATION_MODE\": 0,\n    \"ESP_PHY_ENABLE_CERT_TEST\": false,\n    \"ESP_PHY_ENABLE_USB\": true,\n    \"ESP_PHY_INIT_DATA_IN_PARTITION\": false,\n    \"ESP_PHY_MAX_TX_POWER\": 20,\n    \"ESP_PHY_MAX_WIFI_TX_POWER\": 20,\n    \"ESP_PHY_REDUCE_TX_POWER\": false,\n    \"ESP_PHY_RF_CAL_FULL\": false,\n    \"ESP_PHY_RF_CAL_NONE\": false,\n    \"ESP_PHY_RF_CAL_PARTIAL\": true,\n    \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0\": true,\n    \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1\": true,\n    \"ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2\": true,\n    \"ESP_REV_MAX_FULL\": 99,\n    \"ESP_REV_MIN_FULL\": 0,\n    \"ESP_ROM_GET_CLK_FREQ\": true,\n    \"ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG\": true,\n    \"ESP_ROM_HAS_CACHE_WRITEBACK_BUG\": true,\n    \"ESP_ROM_HAS_CRC_BE\": true,\n    \"ESP_ROM_HAS_CRC_LE\": true,\n    \"ESP_ROM_HAS_ERASE_0_REGION_BUG\": true,\n    \"ESP_ROM_HAS_ETS_PRINTF_BUG\": true,\n    \"ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG\": true,\n    \"ESP_ROM_HAS_HAL_WDT\": true,\n    \"ESP_ROM_HAS_JPEG_DECODE\": true,\n    \"ESP_ROM_HAS_LAYOUT_TABLE\": true,\n    \"ESP_ROM_HAS_MZ_CRC32\": true,\n    \"ESP_ROM_HAS_NEWLIB_NANO_FORMAT\": true,\n    \"ESP_ROM_HAS_RETARGETABLE_LOCKING\": true,\n    \"ESP_ROM_HAS_SPI_FLASH\": true,\n    \"ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE\": true,\n    \"ESP_ROM_NEEDS_SWSETUP_WORKAROUND\": true,\n    \"ESP_ROM_RAM_APP_NEEDS_MMU_INIT\": true,\n    \"ESP_ROM_UART_CLK_IS_XTAL\": true,\n    \"ESP_ROM_USB_SERIAL_DEVICE_NUM\": 4,\n    \"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY\": 2000,\n    \"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND\": true,\n    \"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS\": true,\n    \"ESP_SLEEP_GPIO_RESET_WORKAROUND\": true,\n    \"ESP_SLEEP_MSPI_NEED_ALL_IO_PU\": true,\n    \"ESP_SLEEP_POWER_DOWN_FLASH\": false,\n    \"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND\": true,\n    \"ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP\": true,\n    \"ESP_SYSTEM_BROWNOUT_INTR\": true,\n    \"ESP_SYSTEM_CHECK_INT_LEVEL_4\": true,\n    \"ESP_SYSTEM_EVENT_QUEUE_SIZE\": 32,\n    \"ESP_SYSTEM_EVENT_TASK_STACK_SIZE\": 2304,\n    \"ESP_SYSTEM_GDBSTUB_RUNTIME\": false,\n    \"ESP_SYSTEM_MEMPROT_FEATURE\": true,\n    \"ESP_SYSTEM_MEMPROT_FEATURE_LOCK\": true,\n    \"ESP_SYSTEM_PANIC_GDBSTUB\": false,\n    \"ESP_SYSTEM_PANIC_PRINT_HALT\": false,\n    \"ESP_SYSTEM_PANIC_PRINT_REBOOT\": true,\n    \"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS\": 0,\n    \"ESP_SYSTEM_PANIC_SILENT_REBOOT\": false,\n    \"ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK\": true,\n    \"ESP_TASK_WDT_EN\": false,\n    \"ESP_TIMER_IMPL_SYSTIMER\": true,\n    \"ESP_TIMER_INTERRUPT_LEVEL\": 1,\n    \"ESP_TIMER_ISR_AFFINITY\": 1,\n    \"ESP_TIMER_ISR_AFFINITY_CPU0\": true,\n    \"ESP_TIMER_PROFILING\": false,\n    \"ESP_TIMER_SHOW_EXPERIMENTAL\": false,\n    \"ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD\": false,\n    \"ESP_TIMER_TASK_AFFINITY\": 0,\n    \"ESP_TIMER_TASK_AFFINITY_CPU0\": true,\n    \"ESP_TIMER_TASK_STACK_SIZE\": 3584,\n    \"ESP_TIME_FUNCS_USE_ESP_TIMER\": true,\n    \"ESP_TIME_FUNCS_USE_RTC_TIMER\": true,\n    \"ESP_TLS_CLIENT_SESSION_TICKETS\": false,\n    \"ESP_TLS_INSECURE\": false,\n    \"ESP_TLS_PSK_VERIFICATION\": false,\n    \"ESP_TLS_SERVER\": false,\n    \"ESP_TLS_USE_DS_PERIPHERAL\": true,\n    \"ESP_TLS_USING_MBEDTLS\": true,\n    \"ESP_WIFI_11KV_SUPPORT\": false,\n    \"ESP_WIFI_11R_SUPPORT\": false,\n    \"ESP_WIFI_AMPDU_RX_ENABLED\": true,\n    \"ESP_WIFI_AMPDU_TX_ENABLED\": true,\n    \"ESP_WIFI_CSI_ENABLED\": false,\n    \"ESP_WIFI_DEBUG_PRINT\": false,\n    \"ESP_WIFI_DPP_SUPPORT\": false,\n    \"ESP_WIFI_DYNAMIC_RX_BUFFER_NUM\": 32,\n    \"ESP_WIFI_DYNAMIC_RX_MGMT_BUF\": 0,\n    \"ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER\": false,\n    \"ESP_WIFI_DYNAMIC_TX_BUFFER\": true,\n    \"ESP_WIFI_DYNAMIC_TX_BUFFER_NUM\": 32,\n    \"ESP_WIFI_ENABLED\": true,\n    \"ESP_WIFI_ENABLE_SAE_PK\": true,\n    \"ESP_WIFI_ENABLE_WPA3_OWE_STA\": true,\n    \"ESP_WIFI_ENABLE_WPA3_SAE\": true,\n    \"ESP_WIFI_ENTERPRISE_SUPPORT\": true,\n    \"ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM\": 7,\n    \"ESP_WIFI_EXTRA_IRAM_OPT\": false,\n    \"ESP_WIFI_FTM_ENABLE\": false,\n    \"ESP_WIFI_GCMP_SUPPORT\": false,\n    \"ESP_WIFI_GMAC_SUPPORT\": false,\n    \"ESP_WIFI_IRAM_OPT\": true,\n    \"ESP_WIFI_MBEDTLS_CRYPTO\": true,\n    \"ESP_WIFI_MBEDTLS_TLS_CLIENT\": true,\n    \"ESP_WIFI_MBO_SUPPORT\": false,\n    \"ESP_WIFI_MGMT_SBUF_NUM\": 32,\n    \"ESP_WIFI_NVS_ENABLED\": true,\n    \"ESP_WIFI_RX_BA_WIN\": 6,\n    \"ESP_WIFI_RX_IRAM_OPT\": true,\n    \"ESP_WIFI_RX_MGMT_BUF_NUM_DEF\": 5,\n    \"ESP_WIFI_SLP_BEACON_LOST_OPT\": false,\n    \"ESP_WIFI_SLP_IRAM_OPT\": false,\n    \"ESP_WIFI_SOFTAP_BEACON_MAX_LEN\": 752,\n    \"ESP_WIFI_SOFTAP_SAE_SUPPORT\": true,\n    \"ESP_WIFI_SOFTAP_SUPPORT\": true,\n    \"ESP_WIFI_STATIC_RX_BUFFER_NUM\": 10,\n    \"ESP_WIFI_STATIC_RX_MGMT_BUFFER\": true,\n    \"ESP_WIFI_STATIC_TX_BUFFER\": false,\n    \"ESP_WIFI_STA_DISCONNECTED_PM_ENABLE\": true,\n    \"ESP_WIFI_SUITE_B_192\": false,\n    \"ESP_WIFI_TASK_PINNED_TO_CORE_0\": true,\n    \"ESP_WIFI_TASK_PINNED_TO_CORE_1\": false,\n    \"ESP_WIFI_TESTING_OPTIONS\": false,\n    \"ESP_WIFI_TX_BA_WIN\": 6,\n    \"ESP_WIFI_TX_BUFFER_TYPE\": 1,\n    \"ESP_WIFI_WAPI_PSK\": false,\n    \"ESP_WIFI_WPS_PASSPHRASE\": false,\n    \"ESP_WIFI_WPS_SOFTAP_REGISTRAR\": false,\n    \"ESP_WIFI_WPS_STRICT\": false,\n    \"ETH_ENABLED\": true,\n    \"ETH_SPI_ETHERNET_DM9051\": false,\n    \"ETH_SPI_ETHERNET_KSZ8851SNL\": false,\n    \"ETH_SPI_ETHERNET_W5500\": false,\n    \"ETH_TRANSMIT_MUTEX\": false,\n    \"ETH_USE_OPENETH\": false,\n    \"ETH_USE_SPI_ETHERNET\": true,\n    \"FATFS_CODEPAGE\": 437,\n    \"FATFS_CODEPAGE_437\": true,\n    \"FATFS_CODEPAGE_720\": false,\n    \"FATFS_CODEPAGE_737\": false,\n    \"FATFS_CODEPAGE_771\": false,\n    \"FATFS_CODEPAGE_775\": false,\n    \"FATFS_CODEPAGE_850\": false,\n    \"FATFS_CODEPAGE_852\": false,\n    \"FATFS_CODEPAGE_855\": false,\n    \"FATFS_CODEPAGE_857\": false,\n    \"FATFS_CODEPAGE_860\": false,\n    \"FATFS_CODEPAGE_861\": false,\n    \"FATFS_CODEPAGE_862\": false,\n    \"FATFS_CODEPAGE_863\": false,\n    \"FATFS_CODEPAGE_864\": false,\n    \"FATFS_CODEPAGE_865\": false,\n    \"FATFS_CODEPAGE_866\": false,\n    \"FATFS_CODEPAGE_869\": false,\n    \"FATFS_CODEPAGE_932\": false,\n    \"FATFS_CODEPAGE_936\": false,\n    \"FATFS_CODEPAGE_949\": false,\n    \"FATFS_CODEPAGE_950\": false,\n    \"FATFS_CODEPAGE_DYNAMIC\": false,\n    \"FATFS_FS_LOCK\": 0,\n    \"FATFS_LFN_HEAP\": false,\n    \"FATFS_LFN_NONE\": true,\n    \"FATFS_LFN_STACK\": false,\n    \"FATFS_PER_FILE_CACHE\": true,\n    \"FATFS_SECTOR_4096\": true,\n    \"FATFS_SECTOR_512\": false,\n    \"FATFS_TIMEOUT_MS\": 10000,\n    \"FATFS_USE_FASTSEEK\": false,\n    \"FATFS_VFS_FSTAT_BLKSIZE\": 0,\n    \"FATFS_VOLUME_COUNT\": 2,\n    \"FRAME_BUFFER\": false,\n    \"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER\": true,\n    \"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE\": false,\n    \"FREERTOS_CHECK_STACKOVERFLOW_CANARY\": true,\n    \"FREERTOS_CHECK_STACKOVERFLOW_NONE\": false,\n    \"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL\": false,\n    \"FREERTOS_CORETIMER_SYSTIMER_LVL1\": true,\n    \"FREERTOS_CORETIMER_SYSTIMER_LVL3\": false,\n    \"FREERTOS_DEBUG_OCDAWARE\": true,\n    \"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY\": false,\n    \"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP\": false,\n    \"FREERTOS_ENABLE_TASK_SNAPSHOT\": true,\n    \"FREERTOS_GENERATE_RUN_TIME_STATS\": false,\n    \"FREERTOS_HZ\": 100,\n    \"FREERTOS_IDLE_TASK_STACKSIZE\": 1536,\n    \"FREERTOS_INTERRUPT_BACKTRACE\": true,\n    \"FREERTOS_ISR_STACKSIZE\": 1536,\n    \"FREERTOS_MAX_TASK_NAME_LEN\": 16,\n    \"FREERTOS_NO_AFFINITY\": 2147483647,\n    \"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH\": false,\n    \"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH\": false,\n    \"FREERTOS_QUEUE_REGISTRY_SIZE\": 0,\n    \"FREERTOS_SMP\": false,\n    \"FREERTOS_SUPPORT_STATIC_ALLOCATION\": true,\n    \"FREERTOS_SYSTICK_USES_SYSTIMER\": true,\n    \"FREERTOS_TASK_FUNCTION_WRAPPER\": true,\n    \"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES\": 1,\n    \"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS\": 1,\n    \"FREERTOS_TICK_SUPPORT_SYSTIMER\": true,\n    \"FREERTOS_TIMER_QUEUE_LENGTH\": 10,\n    \"FREERTOS_TIMER_TASK_PRIORITY\": 1,\n    \"FREERTOS_TIMER_TASK_STACK_DEPTH\": 4096,\n    \"FREERTOS_TLSP_DELETION_CALLBACKS\": true,\n    \"FREERTOS_UNICORE\": false,\n    \"FREERTOS_USE_IDLE_HOOK\": false,\n    \"FREERTOS_USE_TICK_HOOK\": false,\n    \"FREERTOS_USE_TRACE_FACILITY\": false,\n    \"FREERTOS_WATCHPOINT_END_OF_STACK\": false,\n    \"GDMA_CTRL_FUNC_IN_IRAM\": false,\n    \"GDMA_ISR_IRAM_SAFE\": false,\n    \"GPIO_CTRL_FUNC_IN_IRAM\": false,\n    \"GPIO_RANGE_MAX\": 48,\n    \"GPTIMER_CTRL_FUNC_IN_IRAM\": false,\n    \"GPTIMER_ENABLE_DEBUG_LOG\": false,\n    \"GPTIMER_ISR_HANDLER_IN_IRAM\": true,\n    \"GPTIMER_ISR_IRAM_SAFE\": false,\n    \"GPTIMER_SUPPRESS_DEPRECATE_WARN\": false,\n    \"HAL_ASSERTION_DISABLE\": false,\n    \"HAL_ASSERTION_ENABLE\": false,\n    \"HAL_ASSERTION_EQUALS_SYSTEM\": true,\n    \"HAL_ASSERTION_SILENT\": false,\n    \"HAL_DEFAULT_ASSERTION_LEVEL\": 2,\n    \"HAL_SPI_MASTER_FUNC_IN_IRAM\": true,\n    \"HAL_SPI_SLAVE_FUNC_IN_IRAM\": true,\n    \"HAL_WDT_USE_ROM_IMPL\": true,\n    \"HEAP_ABORT_WHEN_ALLOCATION_FAILS\": false,\n    \"HEAP_PLACE_FUNCTION_INTO_FLASH\": false,\n    \"HEAP_POISONING_COMPREHENSIVE\": false,\n    \"HEAP_POISONING_DISABLED\": true,\n    \"HEAP_POISONING_LIGHT\": false,\n    \"HEAP_TRACING_OFF\": true,\n    \"HEAP_TRACING_STANDALONE\": false,\n    \"HEAP_TRACING_TOHOST\": false,\n    \"HEAP_USE_HOOKS\": false,\n    \"HEIGHT\": 280,\n    \"HTTPD_ERR_RESP_NO_DELAY\": true,\n    \"HTTPD_LOG_PURGE_DATA\": false,\n    \"HTTPD_MAX_REQ_HDR_LEN\": 512,\n    \"HTTPD_MAX_URI_LEN\": 512,\n    \"HTTPD_PURGE_BUF_LEN\": 32,\n    \"HTTPD_QUEUE_WORK_BLOCKING\": false,\n    \"HTTPD_WS_SUPPORT\": false,\n    \"I2S_ENABLE_DEBUG_LOG\": false,\n    \"I2S_ISR_IRAM_SAFE\": false,\n    \"I2S_SUPPRESS_DEPRECATE_WARN\": false,\n    \"IDF_CMAKE\": true,\n    \"IDF_EXPERIMENTAL_FEATURES\": false,\n    \"IDF_FIRMWARE_CHIP_ID\": 9,\n    \"IDF_TARGET\": \"esp32s3\",\n    \"IDF_TARGET_ARCH\": \"xtensa\",\n    \"IDF_TARGET_ARCH_XTENSA\": true,\n    \"IDF_TARGET_ESP32S3\": true,\n    \"IEEE802154_CCA_THRESHOLD\": -60,\n    \"IEEE802154_PENDING_TABLE_SIZE\": 20,\n    \"INVERSION\": false,\n    \"LCD_ENABLE_DEBUG_LOG\": false,\n    \"LCD_PANEL_IO_FORMAT_BUF_SIZE\": 32,\n    \"LCD_RGB_ISR_IRAM_SAFE\": false,\n    \"LCD_RGB_RESTART_IN_VSYNC\": false,\n    \"LOG_COLORS\": true,\n    \"LOG_DEFAULT_LEVEL\": 3,\n    \"LOG_DEFAULT_LEVEL_DEBUG\": false,\n    \"LOG_DEFAULT_LEVEL_ERROR\": false,\n    \"LOG_DEFAULT_LEVEL_INFO\": true,\n    \"LOG_DEFAULT_LEVEL_NONE\": false,\n    \"LOG_DEFAULT_LEVEL_VERBOSE\": false,\n    \"LOG_DEFAULT_LEVEL_WARN\": false,\n    \"LOG_MAXIMUM_EQUALS_DEFAULT\": true,\n    \"LOG_MAXIMUM_LEVEL\": 3,\n    \"LOG_MAXIMUM_LEVEL_DEBUG\": false,\n    \"LOG_MAXIMUM_LEVEL_VERBOSE\": false,\n    \"LOG_TIMESTAMP_SOURCE_RTOS\": true,\n    \"LOG_TIMESTAMP_SOURCE_SYSTEM\": false,\n    \"LWIP_AUTOIP\": false,\n    \"LWIP_BRIDGEIF_MAX_PORTS\": 7,\n    \"LWIP_BROADCAST_PING\": false,\n    \"LWIP_CHECKSUM_CHECK_ICMP\": true,\n    \"LWIP_CHECKSUM_CHECK_IP\": false,\n    \"LWIP_CHECKSUM_CHECK_UDP\": false,\n    \"LWIP_CHECK_THREAD_SAFETY\": false,\n    \"LWIP_DEBUG\": false,\n    \"LWIP_DHCPS\": true,\n    \"LWIP_DHCPS_LEASE_UNIT\": 60,\n    \"LWIP_DHCPS_MAX_STATION_NUM\": 8,\n    \"LWIP_DHCP_COARSE_TIMER_SECS\": 1,\n    \"LWIP_DHCP_DISABLE_CLIENT_ID\": false,\n    \"LWIP_DHCP_DISABLE_VENDOR_CLASS_ID\": true,\n    \"LWIP_DHCP_DOES_ARP_CHECK\": true,\n    \"LWIP_DHCP_GET_NTP_SRV\": false,\n    \"LWIP_DHCP_OPTIONS_LEN\": 68,\n    \"LWIP_DHCP_RESTORE_LAST_IP\": false,\n    \"LWIP_DNS_SUPPORT_MDNS_QUERIES\": true,\n    \"LWIP_ESP_GRATUITOUS_ARP\": true,\n    \"LWIP_ESP_LWIP_ASSERT\": true,\n    \"LWIP_ESP_MLDV6_REPORT\": true,\n    \"LWIP_EXTRA_IRAM_OPTIMIZATION\": false,\n    \"LWIP_GARP_TMR_INTERVAL\": 60,\n    \"LWIP_HOOK_IP6_INPUT_CUSTOM\": false,\n    \"LWIP_HOOK_IP6_INPUT_DEFAULT\": false,\n    \"LWIP_HOOK_IP6_INPUT_NONE\": true,\n    \"LWIP_HOOK_IP6_ROUTE_CUSTOM\": false,\n    \"LWIP_HOOK_IP6_ROUTE_DEFAULT\": false,\n    \"LWIP_HOOK_IP6_ROUTE_NONE\": true,\n    \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM\": false,\n    \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT\": false,\n    \"LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE\": true,\n    \"LWIP_HOOK_ND6_GET_GW_CUSTOM\": false,\n    \"LWIP_HOOK_ND6_GET_GW_DEFAULT\": false,\n    \"LWIP_HOOK_ND6_GET_GW_NONE\": true,\n    \"LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM\": false,\n    \"LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT\": false,\n    \"LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE\": true,\n    \"LWIP_HOOK_TCP_ISN_CUSTOM\": false,\n    \"LWIP_HOOK_TCP_ISN_DEFAULT\": true,\n    \"LWIP_HOOK_TCP_ISN_NONE\": false,\n    \"LWIP_ICMP\": true,\n    \"LWIP_IP4_FRAG\": true,\n    \"LWIP_IP4_REASSEMBLY\": false,\n    \"LWIP_IP6_FRAG\": true,\n    \"LWIP_IP6_REASSEMBLY\": false,\n    \"LWIP_IPV4\": true,\n    \"LWIP_IPV6\": true,\n    \"LWIP_IPV6_AUTOCONFIG\": false,\n    \"LWIP_IPV6_FORWARD\": false,\n    \"LWIP_IPV6_MEMP_NUM_ND6_QUEUE\": 3,\n    \"LWIP_IPV6_ND6_NUM_NEIGHBORS\": 5,\n    \"LWIP_IPV6_NUM_ADDRESSES\": 3,\n    \"LWIP_IP_FORWARD\": false,\n    \"LWIP_IP_REASS_MAX_PBUFS\": 10,\n    \"LWIP_IRAM_OPTIMIZATION\": false,\n    \"LWIP_L2_TO_L3_COPY\": false,\n    \"LWIP_LOCAL_HOSTNAME\": \"espressif\",\n    \"LWIP_LOOPBACK_MAX_PBUFS\": 8,\n    \"LWIP_MAX_ACTIVE_TCP\": 16,\n    \"LWIP_MAX_LISTENING_TCP\": 16,\n    \"LWIP_MAX_RAW_PCBS\": 16,\n    \"LWIP_MAX_SOCKETS\": 10,\n    \"LWIP_MAX_UDP_PCBS\": 16,\n    \"LWIP_MLDV6_TMR_INTERVAL\": 40,\n    \"LWIP_MULTICAST_PING\": false,\n    \"LWIP_ND6\": true,\n    \"LWIP_NETBUF_RECVINFO\": false,\n    \"LWIP_NETIF_API\": false,\n    \"LWIP_NETIF_LOOPBACK\": true,\n    \"LWIP_NETIF_STATUS_CALLBACK\": false,\n    \"LWIP_NUM_NETIF_CLIENT_DATA\": 0,\n    \"LWIP_PPP_SUPPORT\": false,\n    \"LWIP_SLIP_SUPPORT\": false,\n    \"LWIP_SNTP_MAX_SERVERS\": 1,\n    \"LWIP_SNTP_UPDATE_DELAY\": 3600000,\n    \"LWIP_SO_LINGER\": false,\n    \"LWIP_SO_RCVBUF\": false,\n    \"LWIP_SO_REUSE\": true,\n    \"LWIP_SO_REUSE_RXTOALL\": true,\n    \"LWIP_STATS\": false,\n    \"LWIP_TCPIP_CORE_LOCKING\": false,\n    \"LWIP_TCPIP_RECVMBOX_SIZE\": 32,\n    \"LWIP_TCPIP_TASK_AFFINITY\": 2147483647,\n    \"LWIP_TCPIP_TASK_AFFINITY_CPU0\": false,\n    \"LWIP_TCPIP_TASK_AFFINITY_CPU1\": false,\n    \"LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY\": true,\n    \"LWIP_TCPIP_TASK_PRIO\": 18,\n    \"LWIP_TCPIP_TASK_STACK_SIZE\": 3072,\n    \"LWIP_TCP_FIN_WAIT_TIMEOUT\": 20000,\n    \"LWIP_TCP_HIGH_SPEED_RETRANSMISSION\": true,\n    \"LWIP_TCP_MAXRTX\": 12,\n    \"LWIP_TCP_MSL\": 60000,\n    \"LWIP_TCP_MSS\": 1440,\n    \"LWIP_TCP_OVERSIZE_DISABLE\": false,\n    \"LWIP_TCP_OVERSIZE_MSS\": true,\n    \"LWIP_TCP_OVERSIZE_QUARTER_MSS\": false,\n    \"LWIP_TCP_QUEUE_OOSEQ\": true,\n    \"LWIP_TCP_RECVMBOX_SIZE\": 6,\n    \"LWIP_TCP_RTO_TIME\": 1500,\n    \"LWIP_TCP_SACK_OUT\": false,\n    \"LWIP_TCP_SND_BUF_DEFAULT\": 5744,\n    \"LWIP_TCP_SYNMAXRTX\": 12,\n    \"LWIP_TCP_TMR_INTERVAL\": 250,\n    \"LWIP_TCP_WND_DEFAULT\": 5744,\n    \"LWIP_TIMERS_ONDEMAND\": true,\n    \"LWIP_UDP_RECVMBOX_SIZE\": 6,\n    \"LWIP_USE_ONLY_LWIP_SELECT\": false,\n    \"MBEDTLS_AES_C\": true,\n    \"MBEDTLS_AES_USE_INTERRUPT\": true,\n    \"MBEDTLS_ASYMMETRIC_CONTENT_LEN\": true,\n    \"MBEDTLS_ATCA_HW_ECDSA_SIGN\": false,\n    \"MBEDTLS_ATCA_HW_ECDSA_VERIFY\": false,\n    \"MBEDTLS_BLOWFISH_C\": false,\n    \"MBEDTLS_CAMELLIA_C\": false,\n    \"MBEDTLS_CCM_C\": true,\n    \"MBEDTLS_CERTIFICATE_BUNDLE\": true,\n    \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN\": false,\n    \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL\": true,\n    \"MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE\": false,\n    \"MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS\": 200,\n    \"MBEDTLS_CHACHA20_C\": false,\n    \"MBEDTLS_CLIENT_SSL_SESSION_TICKETS\": true,\n    \"MBEDTLS_CMAC_C\": true,\n    \"MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE\": false,\n    \"MBEDTLS_CUSTOM_MEM_ALLOC\": false,\n    \"MBEDTLS_DEBUG\": false,\n    \"MBEDTLS_DEFAULT_MEM_ALLOC\": false,\n    \"MBEDTLS_DES_C\": false,\n    \"MBEDTLS_DHM_C\": false,\n    \"MBEDTLS_DYNAMIC_BUFFER\": false,\n    \"MBEDTLS_ECDH_C\": true,\n    \"MBEDTLS_ECDSA_C\": true,\n    \"MBEDTLS_ECDSA_DETERMINISTIC\": true,\n    \"MBEDTLS_ECJPAKE_C\": false,\n    \"MBEDTLS_ECP_C\": true,\n    \"MBEDTLS_ECP_DP_BP256R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_BP384R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_BP512R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_CURVE25519_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP192K1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP192R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP224K1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP224R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP256K1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP256R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP384R1_ENABLED\": true,\n    \"MBEDTLS_ECP_DP_SECP521R1_ENABLED\": true,\n    \"MBEDTLS_ECP_FIXED_POINT_OPTIM\": true,\n    \"MBEDTLS_ECP_NIST_OPTIM\": true,\n    \"MBEDTLS_ECP_RESTARTABLE\": false,\n    \"MBEDTLS_GCM_C\": true,\n    \"MBEDTLS_HARDWARE_AES\": true,\n    \"MBEDTLS_HARDWARE_MPI\": true,\n    \"MBEDTLS_HARDWARE_SHA\": true,\n    \"MBEDTLS_HAVE_TIME\": true,\n    \"MBEDTLS_HAVE_TIME_DATE\": false,\n    \"MBEDTLS_HKDF_C\": false,\n    \"MBEDTLS_INTERNAL_MEM_ALLOC\": true,\n    \"MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA\": true,\n    \"MBEDTLS_KEY_EXCHANGE_ECDHE_RSA\": true,\n    \"MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA\": true,\n    \"MBEDTLS_KEY_EXCHANGE_ECDH_RSA\": true,\n    \"MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE\": true,\n    \"MBEDTLS_KEY_EXCHANGE_RSA\": true,\n    \"MBEDTLS_LARGE_KEY_SOFTWARE_MPI\": false,\n    \"MBEDTLS_MPI_USE_INTERRUPT\": true,\n    \"MBEDTLS_NIST_KW_C\": false,\n    \"MBEDTLS_PEM_PARSE_C\": true,\n    \"MBEDTLS_PEM_WRITE_C\": true,\n    \"MBEDTLS_PKCS7_C\": true,\n    \"MBEDTLS_PLATFORM_TIME_ALT\": false,\n    \"MBEDTLS_POLY1305_C\": false,\n    \"MBEDTLS_PSK_MODES\": false,\n    \"MBEDTLS_RIPEMD160_C\": false,\n    \"MBEDTLS_ROM_MD5\": true,\n    \"MBEDTLS_SERVER_SSL_SESSION_TICKETS\": true,\n    \"MBEDTLS_SHA512_C\": true,\n    \"MBEDTLS_SSL_ALPN\": true,\n    \"MBEDTLS_SSL_CONTEXT_SERIALIZATION\": false,\n    \"MBEDTLS_SSL_IN_CONTENT_LEN\": 16384,\n    \"MBEDTLS_SSL_KEEP_PEER_CERTIFICATE\": true,\n    \"MBEDTLS_SSL_OUT_CONTENT_LEN\": 4096,\n    \"MBEDTLS_SSL_PROTO_DTLS\": false,\n    \"MBEDTLS_SSL_PROTO_GMTSSL1_1\": false,\n    \"MBEDTLS_SSL_PROTO_TLS1_2\": true,\n    \"MBEDTLS_SSL_PROTO_TLS1_3\": false,\n    \"MBEDTLS_SSL_RENEGOTIATION\": true,\n    \"MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH\": false,\n    \"MBEDTLS_THREADING_C\": false,\n    \"MBEDTLS_TLS_CLIENT\": true,\n    \"MBEDTLS_TLS_CLIENT_ONLY\": false,\n    \"MBEDTLS_TLS_DISABLED\": false,\n    \"MBEDTLS_TLS_ENABLED\": true,\n    \"MBEDTLS_TLS_SERVER\": true,\n    \"MBEDTLS_TLS_SERVER_AND_CLIENT\": true,\n    \"MBEDTLS_TLS_SERVER_ONLY\": false,\n    \"MBEDTLS_X509_CRL_PARSE_C\": true,\n    \"MBEDTLS_X509_CSR_PARSE_C\": true,\n    \"MBEDTLS_X509_TRUSTED_CERT_CALLBACK\": false,\n    \"MBEDTLS_XTEA_C\": false,\n    \"MCPWM_CTRL_FUNC_IN_IRAM\": false,\n    \"MCPWM_ENABLE_DEBUG_LOG\": false,\n    \"MCPWM_ISR_IRAM_SAFE\": false,\n    \"MCPWM_SUPPRESS_DEPRECATE_WARN\": false,\n    \"MMU_PAGE_MODE\": \"64KB\",\n    \"MMU_PAGE_SIZE\": 65536,\n    \"MMU_PAGE_SIZE_64KB\": true,\n    \"MOSI_GPIO\": 11,\n    \"MQTT_CUSTOM_OUTBOX\": false,\n    \"MQTT_MSG_ID_INCREMENTAL\": false,\n    \"MQTT_PROTOCOL_311\": true,\n    \"MQTT_PROTOCOL_5\": false,\n    \"MQTT_REPORT_DELETED_MESSAGES\": false,\n    \"MQTT_SKIP_PUBLISH_IF_DISCONNECTED\": false,\n    \"MQTT_TASK_CORE_SELECTION_ENABLED\": false,\n    \"MQTT_TRANSPORT_SSL\": true,\n    \"MQTT_TRANSPORT_WEBSOCKET\": true,\n    \"MQTT_TRANSPORT_WEBSOCKET_SECURE\": true,\n    \"MQTT_USE_CUSTOM_CONFIG\": false,\n    \"NEWLIB_NANO_FORMAT\": false,\n    \"NEWLIB_STDIN_LINE_ENDING_CR\": true,\n    \"NEWLIB_STDIN_LINE_ENDING_CRLF\": false,\n    \"NEWLIB_STDIN_LINE_ENDING_LF\": false,\n    \"NEWLIB_STDOUT_LINE_ENDING_CR\": false,\n    \"NEWLIB_STDOUT_LINE_ENDING_CRLF\": true,\n    \"NEWLIB_STDOUT_LINE_ENDING_LF\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_HRT\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_NONE\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_RTC\": false,\n    \"NEWLIB_TIME_SYSCALL_USE_RTC_HRT\": true,\n    \"NVS_ASSERT_ERROR_CHECK\": false,\n    \"OFFSETX\": 0,\n    \"OFFSETY\": 20,\n    \"OPENTHREAD_ENABLED\": false,\n    \"OPENTHREAD_MESH_LOCAL_PREFIX\": \"fd00:db8:a0:0::/64\",\n    \"OPENTHREAD_NETWORK_CHANNEL\": 15,\n    \"OPENTHREAD_NETWORK_EXTPANID\": \"dead00beef00cafe\",\n    \"OPENTHREAD_NETWORK_MASTERKEY\": \"00112233445566778899aabbccddeeff\",\n    \"OPENTHREAD_NETWORK_NAME\": \"OpenThread-ESP\",\n    \"OPENTHREAD_NETWORK_PANID\": 4660,\n    \"OPENTHREAD_NETWORK_PSKC\": \"104810e2315100afd6bc9215a6bfac53\",\n    \"OPENTHREAD_XTAL_ACCURACY\": 130,\n    \"PARTITION_TABLE_CUSTOM\": true,\n    \"PARTITION_TABLE_CUSTOM_FILENAME\": \"partitions.csv\",\n    \"PARTITION_TABLE_FILENAME\": \"partitions.csv\",\n    \"PARTITION_TABLE_MD5\": true,\n    \"PARTITION_TABLE_OFFSET\": 32768,\n    \"PARTITION_TABLE_SINGLE_APP\": false,\n    \"PARTITION_TABLE_SINGLE_APP_LARGE\": false,\n    \"PARTITION_TABLE_TWO_OTA\": false,\n    \"PCNT_CTRL_FUNC_IN_IRAM\": false,\n    \"PCNT_ENABLE_DEBUG_LOG\": false,\n    \"PCNT_ISR_IRAM_SAFE\": false,\n    \"PCNT_SUPPRESS_DEPRECATE_WARN\": false,\n    \"PERIPH_CTRL_FUNC_IN_IRAM\": true,\n    \"PM_ENABLE\": false,\n    \"PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP\": true,\n    \"PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP\": true,\n    \"PTHREAD_DEFAULT_CORE_0\": false,\n    \"PTHREAD_DEFAULT_CORE_1\": false,\n    \"PTHREAD_DEFAULT_CORE_NO_AFFINITY\": true,\n    \"PTHREAD_STACK_MIN\": 768,\n    \"PTHREAD_TASK_CORE_DEFAULT\": -1,\n    \"PTHREAD_TASK_NAME_DEFAULT\": \"pthread\",\n    \"PTHREAD_TASK_PRIO_DEFAULT\": 5,\n    \"PTHREAD_TASK_STACK_SIZE_DEFAULT\": 3072,\n    \"RESET_GPIO\": 8,\n    \"RINGBUF_PLACE_FUNCTIONS_INTO_FLASH\": false,\n    \"RMT_ENABLE_DEBUG_LOG\": false,\n    \"RMT_ISR_IRAM_SAFE\": false,\n    \"RMT_SUPPRESS_DEPRECATE_WARN\": false,\n    \"RTC_CLK_CAL_CYCLES\": 1024,\n    \"RTC_CLK_SRC_EXT_CRYS\": false,\n    \"RTC_CLK_SRC_EXT_OSC\": false,\n    \"RTC_CLK_SRC_INT_8MD256\": false,\n    \"RTC_CLK_SRC_INT_RC\": true,\n    \"SCLK_GPIO\": 12,\n    \"SDM_CTRL_FUNC_IN_IRAM\": false,\n    \"SDM_ENABLE_DEBUG_LOG\": false,\n    \"SDM_SUPPRESS_DEPRECATE_WARN\": false,\n    \"SECURE_BOOT\": false,\n    \"SECURE_BOOT_V2_PREFERRED\": true,\n    \"SECURE_BOOT_V2_RSA_SUPPORTED\": true,\n    \"SECURE_FLASH_ENC_ENABLED\": false,\n    \"SECURE_ROM_DL_MODE_ENABLED\": true,\n    \"SECURE_SIGNED_APPS_NO_SECURE_BOOT\": false,\n    \"SOC_ADC_ARBITER_SUPPORTED\": true,\n    \"SOC_ADC_ATTEN_NUM\": 4,\n    \"SOC_ADC_CALIBRATION_V1_SUPPORTED\": true,\n    \"SOC_ADC_DIGI_CONTROLLER_NUM\": 2,\n    \"SOC_ADC_DIGI_DATA_BYTES_PER_CONV\": 4,\n    \"SOC_ADC_DIGI_IIR_FILTER_NUM\": 2,\n    \"SOC_ADC_DIGI_MAX_BITWIDTH\": 12,\n    \"SOC_ADC_DIGI_MIN_BITWIDTH\": 12,\n    \"SOC_ADC_DIGI_RESULT_BYTES\": 4,\n    \"SOC_ADC_DIG_CTRL_SUPPORTED\": true,\n    \"SOC_ADC_DIG_IIR_FILTER_SUPPORTED\": true,\n    \"SOC_ADC_DMA_SUPPORTED\": true,\n    \"SOC_ADC_MAX_CHANNEL_NUM\": 10,\n    \"SOC_ADC_MONITOR_SUPPORTED\": true,\n    \"SOC_ADC_PATT_LEN_MAX\": 24,\n    \"SOC_ADC_PERIPH_NUM\": 2,\n    \"SOC_ADC_RTC_CTRL_SUPPORTED\": true,\n    \"SOC_ADC_RTC_MAX_BITWIDTH\": 12,\n    \"SOC_ADC_RTC_MIN_BITWIDTH\": 12,\n    \"SOC_ADC_SAMPLE_FREQ_THRES_HIGH\": 83333,\n    \"SOC_ADC_SAMPLE_FREQ_THRES_LOW\": 611,\n    \"SOC_ADC_SELF_HW_CALI_SUPPORTED\": true,\n    \"SOC_ADC_SUPPORTED\": true,\n    \"SOC_AES_GDMA\": true,\n    \"SOC_AES_SUPPORTED\": true,\n    \"SOC_AES_SUPPORT_AES_128\": true,\n    \"SOC_AES_SUPPORT_AES_256\": true,\n    \"SOC_AES_SUPPORT_DMA\": true,\n    \"SOC_APB_BACKUP_DMA\": true,\n    \"SOC_APPCPU_HAS_CLOCK_GATING_BUG\": true,\n    \"SOC_ASYNC_MEMCPY_SUPPORTED\": true,\n    \"SOC_BLE_50_SUPPORTED\": true,\n    \"SOC_BLE_DEVICE_PRIVACY_SUPPORTED\": true,\n    \"SOC_BLE_MESH_SUPPORTED\": true,\n    \"SOC_BLE_SUPPORTED\": true,\n    \"SOC_BLUFI_SUPPORTED\": true,\n    \"SOC_BOD_SUPPORTED\": true,\n    \"SOC_BROWNOUT_RESET_SUPPORTED\": true,\n    \"SOC_BT_SUPPORTED\": true,\n    \"SOC_CACHE_FREEZE_SUPPORTED\": true,\n    \"SOC_CACHE_SUPPORT_WRAP\": true,\n    \"SOC_CACHE_WRITEBACK_SUPPORTED\": true,\n    \"SOC_CCOMP_TIMER_SUPPORTED\": true,\n    \"SOC_CLK_RC_FAST_D256_SUPPORTED\": true,\n    \"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION\": true,\n    \"SOC_CLK_XTAL32K_SUPPORTED\": true,\n    \"SOC_COEX_HW_PTI\": true,\n    \"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED\": true,\n    \"SOC_CPU_BREAKPOINTS_NUM\": 2,\n    \"SOC_CPU_CORES_NUM\": 2,\n    \"SOC_CPU_HAS_FPU\": true,\n    \"SOC_CPU_INTR_NUM\": 32,\n    \"SOC_CPU_WATCHPOINTS_NUM\": 2,\n    \"SOC_CPU_WATCHPOINT_SIZE\": 64,\n    \"SOC_DEDICATED_GPIO_SUPPORTED\": true,\n    \"SOC_DEDIC_GPIO_IN_CHANNELS_NUM\": 8,\n    \"SOC_DEDIC_GPIO_OUT_AUTO_ENABLE\": true,\n    \"SOC_DEDIC_GPIO_OUT_CHANNELS_NUM\": 8,\n    \"SOC_DIG_SIGN_SUPPORTED\": true,\n    \"SOC_DS_KEY_CHECK_MAX_WAIT_US\": 1100,\n    \"SOC_DS_KEY_PARAM_MD_IV_LENGTH\": 16,\n    \"SOC_DS_SIGNATURE_MAX_BIT_LEN\": 4096,\n    \"SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK\": true,\n    \"SOC_EFUSE_DIS_DIRECT_BOOT\": true,\n    \"SOC_EFUSE_DIS_DOWNLOAD_DCACHE\": true,\n    \"SOC_EFUSE_DIS_DOWNLOAD_ICACHE\": true,\n    \"SOC_EFUSE_DIS_ICACHE\": true,\n    \"SOC_EFUSE_DIS_USB_JTAG\": true,\n    \"SOC_EFUSE_HARD_DIS_JTAG\": true,\n    \"SOC_EFUSE_KEY_PURPOSE_FIELD\": true,\n    \"SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS\": true,\n    \"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS\": 3,\n    \"SOC_EFUSE_SOFT_DIS_JTAG\": true,\n    \"SOC_EXTERNAL_COEX_LEADER_TX_LINE\": true,\n    \"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX\": 64,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_128\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_256\": true,\n    \"SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS\": true,\n    \"SOC_FLASH_ENC_SUPPORTED\": true,\n    \"SOC_GDMA_GROUPS\": true,\n    \"SOC_GDMA_PAIRS_PER_GROUP\": 5,\n    \"SOC_GDMA_SUPPORTED\": true,\n    \"SOC_GDMA_SUPPORT_PSRAM\": true,\n    \"SOC_GPIO_FILTER_CLK_SUPPORT_APB\": true,\n    \"SOC_GPIO_PIN_COUNT\": 49,\n    \"SOC_GPIO_PORT\": 1,\n    \"SOC_GPIO_SUPPORT_FORCE_HOLD\": true,\n    \"SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER\": true,\n    \"SOC_GPIO_SUPPORT_RTC_INDEPENDENT\": true,\n    \"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK\": 562949886312448,\n    \"SOC_GPIO_VALID_GPIO_MASK\": 562949953421311,\n    \"SOC_GPSPI_SUPPORTED\": true,\n    \"SOC_GPTIMER_SUPPORTED\": true,\n    \"SOC_HMAC_SUPPORTED\": true,\n    \"SOC_I2C_CMD_REG_NUM\": 8,\n    \"SOC_I2C_FIFO_LEN\": 32,\n    \"SOC_I2C_NUM\": 2,\n    \"SOC_I2C_SUPPORTED\": true,\n    \"SOC_I2C_SUPPORT_HW_CLR_BUS\": true,\n    \"SOC_I2C_SUPPORT_RTC\": true,\n    \"SOC_I2C_SUPPORT_SLAVE\": true,\n    \"SOC_I2C_SUPPORT_XTAL\": true,\n    \"SOC_I2S_HW_VERSION_2\": true,\n    \"SOC_I2S_NUM\": 2,\n    \"SOC_I2S_PDM_MAX_RX_LINES\": 4,\n    \"SOC_I2S_PDM_MAX_TX_LINES\": 2,\n    \"SOC_I2S_SUPPORTED\": true,\n    \"SOC_I2S_SUPPORTS_PCM\": true,\n    \"SOC_I2S_SUPPORTS_PDM\": true,\n    \"SOC_I2S_SUPPORTS_PDM_RX\": true,\n    \"SOC_I2S_SUPPORTS_PDM_TX\": true,\n    \"SOC_I2S_SUPPORTS_PLL_F160M\": true,\n    \"SOC_I2S_SUPPORTS_TDM\": true,\n    \"SOC_I2S_SUPPORTS_XTAL\": true,\n    \"SOC_LCDCAM_SUPPORTED\": true,\n    \"SOC_LCD_I80_BUSES\": 1,\n    \"SOC_LCD_I80_BUS_WIDTH\": 16,\n    \"SOC_LCD_I80_SUPPORTED\": true,\n    \"SOC_LCD_RGB_DATA_WIDTH\": 16,\n    \"SOC_LCD_RGB_PANELS\": 1,\n    \"SOC_LCD_RGB_SUPPORTED\": true,\n    \"SOC_LCD_SUPPORT_RGB_YUV_CONV\": true,\n    \"SOC_LEDC_CHANNEL_NUM\": 8,\n    \"SOC_LEDC_SUPPORTED\": true,\n    \"SOC_LEDC_SUPPORT_APB_CLOCK\": true,\n    \"SOC_LEDC_SUPPORT_FADE_STOP\": true,\n    \"SOC_LEDC_SUPPORT_XTAL_CLOCK\": true,\n    \"SOC_LEDC_TIMER_BIT_WIDTH\": 14,\n    \"SOC_MAC_BB_PD_MEM_SIZE\": 192,\n    \"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER\": 3,\n    \"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP\": true,\n    \"SOC_MCPWM_COMPARATORS_PER_OPERATOR\": 2,\n    \"SOC_MCPWM_GENERATORS_PER_OPERATOR\": 2,\n    \"SOC_MCPWM_GPIO_FAULTS_PER_GROUP\": 3,\n    \"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP\": 3,\n    \"SOC_MCPWM_GROUPS\": 2,\n    \"SOC_MCPWM_OPERATORS_PER_GROUP\": 3,\n    \"SOC_MCPWM_SUPPORTED\": true,\n    \"SOC_MCPWM_SWSYNC_CAN_PROPAGATE\": true,\n    \"SOC_MCPWM_TIMERS_PER_GROUP\": 3,\n    \"SOC_MCPWM_TRIGGERS_PER_OPERATOR\": 2,\n    \"SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE\": 16,\n    \"SOC_MEMPROT_MEM_ALIGN_SIZE\": 256,\n    \"SOC_MEMPROT_SUPPORTED\": true,\n    \"SOC_MEMSPI_IS_INDEPENDENT\": true,\n    \"SOC_MEMSPI_SRC_FREQ_120M\": true,\n    \"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED\": true,\n    \"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED\": true,\n    \"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED\": true,\n    \"SOC_MMU_LINEAR_ADDRESS_REGION_NUM\": 1,\n    \"SOC_MMU_PERIPH_NUM\": 1,\n    \"SOC_MPI_SUPPORTED\": true,\n    \"SOC_MPU_MIN_REGION_SIZE\": 536870912,\n    \"SOC_MPU_REGIONS_MAX_NUM\": 8,\n    \"SOC_PCNT_CHANNELS_PER_UNIT\": 2,\n    \"SOC_PCNT_GROUPS\": 1,\n    \"SOC_PCNT_SUPPORTED\": true,\n    \"SOC_PCNT_THRES_POINT_PER_UNIT\": 2,\n    \"SOC_PCNT_UNITS_PER_GROUP\": 4,\n    \"SOC_PHY_COMBO_MODULE\": true,\n    \"SOC_PHY_DIG_REGS_MEM_SIZE\": 21,\n    \"SOC_PM_CPU_RETENTION_BY_RTCCNTL\": true,\n    \"SOC_PM_MODEM_RETENTION_BY_BACKUPDMA\": true,\n    \"SOC_PM_SUPPORT_BT_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_CPU_PD\": true,\n    \"SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY\": true,\n    \"SOC_PM_SUPPORT_EXT0_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_EXT1_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_EXT_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_MAC_BB_PD\": true,\n    \"SOC_PM_SUPPORT_MODEM_PD\": true,\n    \"SOC_PM_SUPPORT_RC_FAST_PD\": true,\n    \"SOC_PM_SUPPORT_RTC_PERIPH_PD\": true,\n    \"SOC_PM_SUPPORT_TAGMEM_PD\": true,\n    \"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP\": true,\n    \"SOC_PM_SUPPORT_VDDSDIO_PD\": true,\n    \"SOC_PM_SUPPORT_WIFI_WAKEUP\": true,\n    \"SOC_PSRAM_DMA_CAPABLE\": true,\n    \"SOC_RISCV_COPROC_SUPPORTED\": true,\n    \"SOC_RMT_CHANNELS_PER_GROUP\": 8,\n    \"SOC_RMT_GROUPS\": 1,\n    \"SOC_RMT_MEM_WORDS_PER_CHANNEL\": 48,\n    \"SOC_RMT_RX_CANDIDATES_PER_GROUP\": 4,\n    \"SOC_RMT_SUPPORTED\": true,\n    \"SOC_RMT_SUPPORT_APB\": true,\n    \"SOC_RMT_SUPPORT_DMA\": true,\n    \"SOC_RMT_SUPPORT_RC_FAST\": true,\n    \"SOC_RMT_SUPPORT_RX_DEMODULATION\": true,\n    \"SOC_RMT_SUPPORT_RX_PINGPONG\": true,\n    \"SOC_RMT_SUPPORT_TX_ASYNC_STOP\": true,\n    \"SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY\": true,\n    \"SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP\": true,\n    \"SOC_RMT_SUPPORT_TX_LOOP_COUNT\": true,\n    \"SOC_RMT_SUPPORT_TX_SYNCHRO\": true,\n    \"SOC_RMT_SUPPORT_XTAL\": true,\n    \"SOC_RMT_TX_CANDIDATES_PER_GROUP\": 4,\n    \"SOC_RSA_MAX_BIT_LEN\": 4096,\n    \"SOC_RTCIO_HOLD_SUPPORTED\": true,\n    \"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED\": true,\n    \"SOC_RTCIO_PIN_COUNT\": 22,\n    \"SOC_RTCIO_WAKE_SUPPORTED\": true,\n    \"SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH\": 128,\n    \"SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM\": 549,\n    \"SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH\": 128,\n    \"SOC_RTC_FAST_MEM_SUPPORTED\": true,\n    \"SOC_RTC_MEM_SUPPORTED\": true,\n    \"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256\": true,\n    \"SOC_RTC_SLOW_MEM_SUPPORTED\": true,\n    \"SOC_SDMMC_HOST_SUPPORTED\": true,\n    \"SOC_SDMMC_NUM_SLOTS\": 2,\n    \"SOC_SDMMC_SUPPORT_XTAL_CLOCK\": true,\n    \"SOC_SDMMC_USE_GPIO_MATRIX\": true,\n    \"SOC_SDM_CHANNELS_PER_GROUP\": 8,\n    \"SOC_SDM_CLK_SUPPORT_APB\": true,\n    \"SOC_SDM_GROUPS\": true,\n    \"SOC_SDM_SUPPORTED\": true,\n    \"SOC_SECURE_BOOT_SUPPORTED\": true,\n    \"SOC_SECURE_BOOT_V2_RSA\": true,\n    \"SOC_SHA_DMA_MAX_BUFFER_SIZE\": 3968,\n    \"SOC_SHA_GDMA\": true,\n    \"SOC_SHA_SUPPORTED\": true,\n    \"SOC_SHA_SUPPORT_DMA\": true,\n    \"SOC_SHA_SUPPORT_RESUME\": true,\n    \"SOC_SHA_SUPPORT_SHA1\": true,\n    \"SOC_SHA_SUPPORT_SHA224\": true,\n    \"SOC_SHA_SUPPORT_SHA256\": true,\n    \"SOC_SHA_SUPPORT_SHA384\": true,\n    \"SOC_SHA_SUPPORT_SHA512\": true,\n    \"SOC_SHA_SUPPORT_SHA512_224\": true,\n    \"SOC_SHA_SUPPORT_SHA512_256\": true,\n    \"SOC_SHA_SUPPORT_SHA512_T\": true,\n    \"SOC_SPIRAM_SUPPORTED\": true,\n    \"SOC_SPIRAM_XIP_SUPPORTED\": true,\n    \"SOC_SPI_MAXIMUM_BUFFER_SIZE\": 64,\n    \"SOC_SPI_MAX_CS_NUM\": 6,\n    \"SOC_SPI_MAX_PRE_DIVIDER\": 16,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_RESUME\": true,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND\": true,\n    \"SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE\": true,\n    \"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE\": true,\n    \"SOC_SPI_MEM_SUPPORT_OPI_MODE\": true,\n    \"SOC_SPI_MEM_SUPPORT_SW_SUSPEND\": true,\n    \"SOC_SPI_MEM_SUPPORT_TIME_TUNING\": true,\n    \"SOC_SPI_MEM_SUPPORT_WRAP\": true,\n    \"SOC_SPI_PERIPH_NUM\": 3,\n    \"SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT\": true,\n    \"SOC_SPI_SLAVE_SUPPORT_SEG_TRANS\": true,\n    \"SOC_SPI_SUPPORT_CD_SIG\": true,\n    \"SOC_SPI_SUPPORT_CLK_APB\": true,\n    \"SOC_SPI_SUPPORT_CLK_XTAL\": true,\n    \"SOC_SPI_SUPPORT_CONTINUOUS_TRANS\": true,\n    \"SOC_SPI_SUPPORT_DDRCLK\": true,\n    \"SOC_SPI_SUPPORT_OCT\": true,\n    \"SOC_SPI_SUPPORT_SLAVE_HD_VER2\": true,\n    \"SOC_SUPPORTS_SECURE_DL_MODE\": true,\n    \"SOC_SUPPORT_COEXISTENCE\": true,\n    \"SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY\": true,\n    \"SOC_SYSTIMER_ALARM_MISS_COMPENSATE\": true,\n    \"SOC_SYSTIMER_ALARM_NUM\": 3,\n    \"SOC_SYSTIMER_BIT_WIDTH_HI\": 20,\n    \"SOC_SYSTIMER_BIT_WIDTH_LO\": 32,\n    \"SOC_SYSTIMER_COUNTER_NUM\": 2,\n    \"SOC_SYSTIMER_FIXED_DIVIDER\": true,\n    \"SOC_SYSTIMER_INT_LEVEL\": true,\n    \"SOC_SYSTIMER_SUPPORTED\": true,\n    \"SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC\": true,\n    \"SOC_TEMP_SENSOR_SUPPORTED\": true,\n    \"SOC_TIMER_GROUPS\": 2,\n    \"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH\": 54,\n    \"SOC_TIMER_GROUP_SUPPORT_APB\": true,\n    \"SOC_TIMER_GROUP_SUPPORT_XTAL\": true,\n    \"SOC_TIMER_GROUP_TIMERS_PER_GROUP\": 2,\n    \"SOC_TIMER_GROUP_TOTAL_TIMERS\": 4,\n    \"SOC_TOUCH_PAD_MEASURE_WAIT_MAX\": 255,\n    \"SOC_TOUCH_PAD_THRESHOLD_MAX\": 2097151,\n    \"SOC_TOUCH_PROXIMITY_CHANNEL_NUM\": 3,\n    \"SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED\": true,\n    \"SOC_TOUCH_SENSOR_NUM\": 15,\n    \"SOC_TOUCH_SENSOR_SUPPORTED\": true,\n    \"SOC_TOUCH_VERSION_2\": true,\n    \"SOC_TWAI_BRP_MAX\": 16384,\n    \"SOC_TWAI_BRP_MIN\": 2,\n    \"SOC_TWAI_CLK_SUPPORT_APB\": true,\n    \"SOC_TWAI_CONTROLLER_NUM\": 1,\n    \"SOC_TWAI_SUPPORTED\": true,\n    \"SOC_TWAI_SUPPORTS_RX_STATUS\": true,\n    \"SOC_UART_BITRATE_MAX\": 5000000,\n    \"SOC_UART_FIFO_LEN\": 128,\n    \"SOC_UART_NUM\": 3,\n    \"SOC_UART_REQUIRE_CORE_RESET\": true,\n    \"SOC_UART_SUPPORTED\": true,\n    \"SOC_UART_SUPPORT_APB_CLK\": true,\n    \"SOC_UART_SUPPORT_FSM_TX_WAIT_SEND\": true,\n    \"SOC_UART_SUPPORT_RTC_CLK\": true,\n    \"SOC_UART_SUPPORT_WAKEUP_INT\": true,\n    \"SOC_UART_SUPPORT_XTAL_CLK\": true,\n    \"SOC_ULP_FSM_SUPPORTED\": true,\n    \"SOC_ULP_HAS_ADC\": true,\n    \"SOC_ULP_SUPPORTED\": true,\n    \"SOC_USB_OTG_SUPPORTED\": true,\n    \"SOC_USB_PERIPH_NUM\": true,\n    \"SOC_USB_SERIAL_JTAG_SUPPORTED\": true,\n    \"SOC_WIFI_CSI_SUPPORT\": true,\n    \"SOC_WIFI_FTM_SUPPORT\": true,\n    \"SOC_WIFI_GCMP_SUPPORT\": true,\n    \"SOC_WIFI_HW_TSF\": true,\n    \"SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH\": 12,\n    \"SOC_WIFI_MESH_SUPPORT\": true,\n    \"SOC_WIFI_SUPPORTED\": true,\n    \"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW\": true,\n    \"SOC_WIFI_WAPI_SUPPORT\": true,\n    \"SOC_XTAL_SUPPORT_40M\": true,\n    \"SOC_XT_WDT_SUPPORTED\": true,\n    \"SPI2_HOST\": true,\n    \"SPI3_HOST\": false,\n    \"SPIFFS_API_DBG\": false,\n    \"SPIFFS_CACHE\": true,\n    \"SPIFFS_CACHE_DBG\": false,\n    \"SPIFFS_CACHE_STATS\": false,\n    \"SPIFFS_CACHE_WR\": true,\n    \"SPIFFS_CHECK_DBG\": false,\n    \"SPIFFS_DBG\": false,\n    \"SPIFFS_FOLLOW_SYMLINKS\": false,\n    \"SPIFFS_GC_DBG\": false,\n    \"SPIFFS_GC_MAX_RUNS\": 10,\n    \"SPIFFS_GC_STATS\": false,\n    \"SPIFFS_MAX_PARTITIONS\": 3,\n    \"SPIFFS_META_LENGTH\": 4,\n    \"SPIFFS_OBJ_NAME_LEN\": 32,\n    \"SPIFFS_PAGE_CHECK\": true,\n    \"SPIFFS_PAGE_SIZE\": 256,\n    \"SPIFFS_TEST_VISUALISATION\": false,\n    \"SPIFFS_USE_MAGIC\": true,\n    \"SPIFFS_USE_MAGIC_LENGTH\": true,\n    \"SPIFFS_USE_MTIME\": true,\n    \"SPIRAM\": false,\n    \"SPI_FLASH_BROWNOUT_RESET\": true,\n    \"SPI_FLASH_BROWNOUT_RESET_XMC\": true,\n    \"SPI_FLASH_BYPASS_BLOCK_ERASE\": false,\n    \"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED\": false,\n    \"SPI_FLASH_DANGEROUS_WRITE_ABORTS\": true,\n    \"SPI_FLASH_DANGEROUS_WRITE_ALLOWED\": false,\n    \"SPI_FLASH_DANGEROUS_WRITE_FAILS\": false,\n    \"SPI_FLASH_ENABLE_COUNTERS\": false,\n    \"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE\": true,\n    \"SPI_FLASH_ERASE_YIELD_DURATION_MS\": 20,\n    \"SPI_FLASH_ERASE_YIELD_TICKS\": 1,\n    \"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST\": false,\n    \"SPI_FLASH_ROM_DRIVER_PATCH\": true,\n    \"SPI_FLASH_ROM_IMPL\": false,\n    \"SPI_FLASH_SIZE_OVERRIDE\": false,\n    \"SPI_FLASH_SUPPORT_BOYA_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_GD_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_ISSI_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_MXIC_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_MXIC_OPI_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_TH_CHIP\": true,\n    \"SPI_FLASH_SUPPORT_WINBOND_CHIP\": true,\n    \"SPI_FLASH_VENDOR_BOYA_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_GD_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_ISSI_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_MXIC_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_TH_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_WINBOND_SUPPORTED\": true,\n    \"SPI_FLASH_VENDOR_XMC_SUPPORTED\": true,\n    \"SPI_FLASH_VERIFY_WRITE\": false,\n    \"SPI_FLASH_WRITE_CHUNK_SIZE\": 8192,\n    \"SPI_FLASH_YIELD_DURING_ERASE\": true,\n    \"SPI_MASTER_IN_IRAM\": false,\n    \"SPI_MASTER_ISR_IN_IRAM\": true,\n    \"SPI_SLAVE_IN_IRAM\": false,\n    \"SPI_SLAVE_ISR_IN_IRAM\": true,\n    \"TEMP_SENSOR_ENABLE_DEBUG_LOG\": false,\n    \"TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN\": false,\n    \"TWAI_ERRATA_FIX_LISTEN_ONLY_DOM\": true,\n    \"TWAI_ISR_IN_IRAM\": false,\n    \"UART_ISR_IN_IRAM\": false,\n    \"ULP_COPROC_ENABLED\": false,\n    \"UNITY_ENABLE_64BIT\": false,\n    \"UNITY_ENABLE_BACKTRACE_ON_FAIL\": false,\n    \"UNITY_ENABLE_COLOR\": false,\n    \"UNITY_ENABLE_DOUBLE\": true,\n    \"UNITY_ENABLE_FIXTURE\": false,\n    \"UNITY_ENABLE_FLOAT\": true,\n    \"UNITY_ENABLE_IDF_TEST_RUNNER\": true,\n    \"USB_HOST_CONTROL_TRANSFER_MAX_SIZE\": 256,\n    \"USB_HOST_DEBOUNCE_DELAY_MS\": 250,\n    \"USB_HOST_HW_BUFFER_BIAS_BALANCED\": true,\n    \"USB_HOST_HW_BUFFER_BIAS_IN\": false,\n    \"USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT\": false,\n    \"USB_HOST_RESET_HOLD_MS\": 30,\n    \"USB_HOST_RESET_RECOVERY_MS\": 30,\n    \"USB_HOST_SET_ADDR_RECOVERY_MS\": 10,\n    \"USB_OTG_SUPPORTED\": true,\n    \"VFS_MAX_COUNT\": 8,\n    \"VFS_SEMIHOSTFS_MAX_MOUNT_POINTS\": 1,\n    \"VFS_SUPPORT_DIR\": true,\n    \"VFS_SUPPORT_IO\": true,\n    \"VFS_SUPPORT_SELECT\": true,\n    \"VFS_SUPPORT_TERMIOS\": true,\n    \"VFS_SUPPRESS_SELECT_DEBUG_OUTPUT\": true,\n    \"WIDTH\": 240,\n    \"WIFI_PROV_AUTOSTOP_TIMEOUT\": 30,\n    \"WIFI_PROV_BLE_FORCE_ENCRYPTION\": false,\n    \"WIFI_PROV_SCAN_MAX_ENTRIES\": 16,\n    \"WIFI_PROV_STA_ALL_CHANNEL_SCAN\": true,\n    \"WIFI_PROV_STA_FAST_SCAN\": false,\n    \"WL_SECTOR_SIZE\": 4096,\n    \"WL_SECTOR_SIZE_4096\": true,\n    \"WL_SECTOR_SIZE_512\": false,\n    \"WS_BUFFER_SIZE\": 1024,\n    \"WS_DYNAMIC_BUFFER\": false,\n    \"WS_TRANSPORT\": true,\n    \"XTAL_FREQ\": 40,\n    \"XTAL_FREQ_40\": true\n}"
  },
  {
    "path": "Code/build/config.env",
    "content": "{\n    \"COMPONENT_KCONFIGS\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/Kconfig\",\n    \"COMPONENT_KCONFIGS_PROJBUILD\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild;C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/Kconfig.projbuild\",\n    \"COMPONENT_SDKCONFIG_RENAMES\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/sdkconfig.rename.esp32s3;C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/sdkconfig.rename;C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/sdkconfig.rename\",\n    \"IDF_TARGET\": \"esp32s3\",\n    \"IDF_ENV_FPGA\": \"\",\n    \"IDF_PATH\": \"C:/Espressif/frameworks/esp-idf-v5.1.2\",\n    \"COMPONENT_KCONFIGS_SOURCE_FILE\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/kconfigs.in\",\n    \"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/kconfigs_projbuild.in\"\n}\n"
  },
  {
    "path": "Code/build/detect_compiler_builtins.S",
    "content": ""
  },
  {
    "path": "Code/build/detect_compiler_builtins.c",
    "content": ""
  },
  {
    "path": "Code/build/detect_compiler_builtins.cpp",
    "content": ""
  },
  {
    "path": "Code/build/esp-idf/app_trace/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/app_update/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/bootloader/bootloader-flash_args.in",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin"
  },
  {
    "path": "Code/build/esp-idf/bootloader/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/bootloader_support/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/bt/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esptool_py/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/partition_table/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif_stack/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bt/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_server/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_psram/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/idf_test/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ieee802154/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/openthread/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/cmake_install.cmake\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/cmock/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/console/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/console\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/cxx/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/driver/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/efuse/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp-tls/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_adc/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_app_format/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_coex/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_common/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_eth/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_event/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_gdbstub/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_hid/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_http_client/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_http_server/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_https_ota/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_https_server/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_hw_support/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_lcd/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_local_ctrl/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_mm/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_netif/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_netif_stack/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif_stack\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_partition/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_phy/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_pm/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_psram/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_ringbuf/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_rom/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_system/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_system/ld/memory.ld",
    "content": "/*\n\n * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD\n\n *\n\n * SPDX-License-Identifier: Apache-2.0\n\n */\n/**\n\n *                    ESP32-S3 Linker Script Memory Layout\n\n * This file describes the memory layout (memory blocks) by virtual memory addresses.\n\n * This linker script is passed through the C preprocessor to include configuration options.\n\n * Please use preprocessor features sparingly!\n\n * Restrict to simple macros with numeric values, and/or #if/#endif blocks.\n\n */\n/*\n\n * Automatically generated file. DO NOT EDIT.\n\n * Espressif IoT Development Framework (ESP-IDF) 5.1.2 Configuration Header\n\n */\n       \n/* List of deprecated options */\n/*\n\n * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD\n\n *\n\n * SPDX-License-Identifier: Apache-2.0\n\n */\n/* CPU instruction prefetch padding size for flash mmap scenario */\n_esp_flash_mmap_prefetch_pad_size = 16;\n/* CPU instruction prefetch padding size for memory protection scenario */\n_esp_memprot_prefetch_pad_size = 16;\n/* Memory alignment size for PMS */\n_esp_memprot_align_size = 256;\n_esp_mmu_block_size = (0x10000);\n    /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */\n/*\n\n * 40370000 <- IRAM/Icache -> 40378000 <- D/IRAM (I) -> 403E0000\n\n *                            3FC88000 <- D/IRAM (D) -> 3FCF0000 <- DRAM/DCache -> 3FD00000\n\n *\n\n * Startup code uses the IRAM from 0x403B9000 to 0x403E0000, which is not available for static\n\n * memory, but can only be used after app starts.\n\n *\n\n * D cache use the memory from high address, so when it's configured to 16K/32K, the region\n\n * 0x3FCF000 ~ (3FD00000 - DATA_CACHE_SIZE) should be available. This region is not used as\n\n * static memory, leaving to the heap.\n\n */\nMEMORY\n{\n  /**\n\n   *  All these values assume the flash cache is on, and have the blocks this uses subtracted from the length\n\n   *  of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but\n\n   *  are connected to the data port of the CPU and eg allow byte-wise access.\n\n   */\n  /* IRAM for PRO CPU. */\n  iram0_0_seg (RX) : org = (0x40370000 + 0x4000), len = (((0x403CC700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000) + 0x8000 - 0x4000)\n  /* Flash mapped instruction data */\n  iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-0x20\n  /**\n\n   * (0x20 offset above is a convenience for the app binary image generation.\n\n   * Flash cache has 64KB pages. The .bin file which is flashed to the chip\n\n   * has a 0x18 byte file header, and each segment has a 0x08 byte segment\n\n   * header. Setting this offset makes it simple to meet the flash cache MMU's\n\n   * constraint that (paddr % 64KB == vaddr % 64KB).)\n\n   */\n  /**\n\n   * Shared data RAM, excluding memory reserved for ROM bss/data/stack.\n\n   * Enabling Bluetooth & Trace Memory features in menuconfig will decrease the amount of RAM available.\n\n   */\n  dram0_0_seg (RW) : org = (0x3FC88000), len = ((0x403CC700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000)\n  /* Flash mapped constant data */\n  drom0_0_seg (R) : org = 0x3C000020, len = 0x2000000-0x20\n  /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */\n  /**\n\n   * RTC fast memory (executable). Persists over deep sleep.\n\n   */\n  rtc_iram_seg(RWX) : org = 0x600fe000, len = 0x2000 - (0 + (24))\n  /* We reduced the size of rtc_iram_seg by RESERVE_RTC_MEM value.\n\n     It reserves the amount of RTC fast memory that we use for this memory segment.\n\n     This segment is intended for keeping:\n\n       - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files).\n\n       - (higher addr) bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on).\n\n     The aim of this is to keep data that will not be moved around and have a fixed address.\n\n  */\n  rtc_reserved_seg(RW) : org = 0x600fe000 + 0x2000 - (0 + (24)), len = (0 + (24))\n  /**\n\n   * RTC slow memory (data accessible). Persists over deep sleep.\n\n   * Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled.\n\n   */\n  rtc_slow_seg(RW) : org = 0x50000000 , len = 0x2000\n  /**\n\n   * `extern_ram_seg` and `drom0_0_seg` share the same bus and the address region.\n\n   * A dummy section is used to avoid overlap. See `.ext_ram.dummy` in `sections.ld.in`\n\n   */\n  extern_ram_seg(RWX) : org = 0x3c000020 , len = 0x2000000-0x20\n}\n_heap_start = _heap_low_start;\n/* Heap ends at top of dram0_0_seg */\n_heap_end = 0x40000000;\n_data_seg_org = ORIGIN(rtc_data_seg);\n/* RTC fast memory shares the same range for both data and instructions */\nREGION_ALIAS(\"rtc_data_seg\", rtc_iram_seg );\nREGION_ALIAS(\"rtc_data_location\", rtc_slow_seg );\nREGION_ALIAS(\"default_code_seg\", iram0_2_seg);\nREGION_ALIAS(\"default_rodata_seg\", drom0_0_seg);\n/**\n\n *  If rodata default segment is placed in `drom0_0_seg`, then flash's first rodata section must\n\n *  also be first in the segment.\n\n */\n  ASSERT(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg),\n         \".flash_rodata_dummy section must be placed at the beginning of the rodata segment.\")\n"
  },
  {
    "path": "Code/build/esp-idf/esp_system/ld/sections.ld",
    "content": "/* Automatically generated file; DO NOT EDIT */\n/* Espressif IoT Development Framework Linker Script */\n/* Generated from: C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esp_system\\ld\\esp32s3\\sections.ld.in */\n\n/*\n * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD\n *\n * SPDX-License-Identifier: Apache-2.0\n */\n\n/* Default entry point */\nENTRY(call_start_cpu0);\n\n_diram_i_start = 0x40378000;\n\nSECTIONS\n{\n  /**\n   * RTC fast memory holds RTC wake stub code,\n   * including from any source file named rtc_wake_stub*.c\n   */\n  .rtc.text :\n  {\n    . = ALIGN(4);\n    _rtc_fast_start = ABSOLUTE(.);\n    _rtc_text_start = ABSOLUTE(.);\n    *(.rtc.entry.text)\n\n    *(.rtc.literal .rtc.text .rtc.text.*)\n\n    *rtc_wake_stub*.*(.literal .text .literal.* .text.*)\n    *(.rtc_text_end_test)\n\n    /* 16B padding for possible CPU prefetch and 4B alignment for PMS split lines */\n    . += _esp_memprot_prefetch_pad_size;\n    . = ALIGN(4);\n\n    _rtc_text_end = ABSOLUTE(.);\n  } > rtc_iram_seg\n\n  /**\n   * This section located in RTC FAST Memory area.\n   * It holds data marked with RTC_FAST_ATTR attribute.\n   * See the file \"esp_attr.h\" for more information.\n   */\n  .rtc.force_fast :\n  {\n    . = ALIGN(4);\n    _rtc_force_fast_start = ABSOLUTE(.);\n\n    _coredump_rtc_fast_start = ABSOLUTE(.);\n    *(.rtc.fast.coredump .rtc.fast.coredump.*)\n    _coredump_rtc_fast_end = ABSOLUTE(.);\n\n    *(.rtc.force_fast .rtc.force_fast.*)\n    . = ALIGN(4) ;\n    _rtc_force_fast_end = ABSOLUTE(.);\n  } > rtc_data_seg\n\n  /**\n   * RTC data section holds RTC wake stub\n   * data/rodata, including from any source file\n   * named rtc_wake_stub*.c and the data marked with\n   * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes.\n   * The memory location of the data is dependent on\n   * CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM option.\n   */\n  .rtc.data :\n  {\n    _rtc_data_start = ABSOLUTE(.);\n\n    _coredump_rtc_start = ABSOLUTE(.);\n    *(.rtc.coredump .rtc.coredump.*)\n    _coredump_rtc_end = ABSOLUTE(.);\n    *(.rtc.data .rtc.data.*)\n    *(.rtc.rodata .rtc.rodata.*)\n\n    *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*)\n    _rtc_data_end = ABSOLUTE(.);\n  } > rtc_data_location\n\n  /* RTC bss, from any source file named rtc_wake_stub*.c */\n  .rtc.bss (NOLOAD) :\n  {\n    _rtc_bss_start = ABSOLUTE(.);\n    *rtc_wake_stub*.*(.bss .bss.*)\n    *rtc_wake_stub*.*(COMMON)\n\n    *(.rtc.bss)\n\n    _rtc_bss_end = ABSOLUTE(.);\n  } > rtc_data_location\n\n  /**\n   * This section holds data that should not be initialized at power up\n   * and will be retained during deep sleep.\n   * User data marked with RTC_NOINIT_ATTR will be placed\n   * into this section. See the file \"esp_attr.h\" for more information.\n\t * The memory location of the data is dependent on CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM option.\n   */\n  .rtc_noinit (NOLOAD):\n  {\n    . = ALIGN(4);\n    _rtc_noinit_start = ABSOLUTE(.);\n    *(.rtc_noinit .rtc_noinit.*)\n    . = ALIGN(4) ;\n    _rtc_noinit_end = ABSOLUTE(.);\n  } > rtc_data_location\n\n  /**\n   * This section located in RTC SLOW Memory area.\n   * It holds data marked with RTC_SLOW_ATTR attribute.\n   * See the file \"esp_attr.h\" for more information.\n   */\n  .rtc.force_slow :\n  {\n    . = ALIGN(4);\n    _rtc_force_slow_start = ABSOLUTE(.);\n    *(.rtc.force_slow .rtc.force_slow.*)\n    . = ALIGN(4) ;\n    _rtc_force_slow_end = ABSOLUTE(.);\n  } > rtc_slow_seg\n\n  /**\n   * This section holds RTC data that should have fixed addresses.\n   * The data are not initialized at power-up and are retained during deep sleep.\n   */\n  .rtc_reserved (NOLOAD):\n  {\n    . = ALIGN(4);\n    _rtc_reserved_start = ABSOLUTE(.);\n    /* New data can only be added here to ensure existing data are not moved.\n       Because data have adhered to the end of the segment and code is relied on it.\n       >> put new data here << */\n\n    *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*)\n    KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*))\n    _rtc_reserved_end = ABSOLUTE(.);\n  } > rtc_reserved_seg\n\n  _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start;\n  ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)),\n          \"RTC reserved segment data does not fit.\")\n\n  /* Get size of rtc slow data based on rtc_data_location alias */\n  _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location))\n                        ? (_rtc_force_slow_end - _rtc_data_start)\n                        : (_rtc_force_slow_end - _rtc_force_slow_start);\n\n  _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location))\n                        ? (_rtc_force_fast_end - _rtc_fast_start)\n                        : (_rtc_noinit_end - _rtc_fast_start);\n\n  ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)),\n          \"RTC_SLOW segment data does not fit.\")\n\n  ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)),\n          \"RTC_FAST segment data does not fit.\")\n\n  /* Send .iram0 code to iram */\n  .iram0.vectors :\n  {\n    _iram_start = ABSOLUTE(.);\n    /* Vectors go to IRAM */\n    _vector_table = ABSOLUTE(.);\n    . = 0x0;\n    KEEP(*(.WindowVectors.text));\n    . = 0x180;\n    KEEP(*(.Level2InterruptVector.text));\n    . = 0x1c0;\n    KEEP(*(.Level3InterruptVector.text));\n    . = 0x200;\n    KEEP(*(.Level4InterruptVector.text));\n    . = 0x240;\n    KEEP(*(.Level5InterruptVector.text));\n    . = 0x280;\n    KEEP(*(.DebugExceptionVector.text));\n    . = 0x2c0;\n    KEEP(*(.NMIExceptionVector.text));\n    . = 0x300;\n    KEEP(*(.KernelExceptionVector.text));\n    . = 0x340;\n    KEEP(*(.UserExceptionVector.text));\n    . = 0x3C0;\n    KEEP(*(.DoubleExceptionVector.text));\n    . = 0x400;\n    _invalid_pc_placeholder = ABSOLUTE(.);\n    *(.*Vector.literal)\n\n    *(.UserEnter.literal);\n    *(.UserEnter.text);\n    . = ALIGN (16);\n    *(.entry.text)\n    *(.init.literal)\n    *(.init)\n    _init_end = ABSOLUTE(.);\n  } > iram0_0_seg\n\n  .iram0.text :\n  {\n    /* Code marked as running out of IRAM */\n    _iram_text_start = ABSOLUTE(.);\n\n    *(.iram1 .iram1.*)\n    *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*)\n    *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*)\n    *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*)\n    *libdriver.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr)\n    *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post)\n    *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr)\n    *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved)\n    *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins)\n    *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset)\n    *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable)\n    *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable)\n    *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*)\n    *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable)\n    *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*)\n    *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*)\n    *libesp_ringbuf.a:(.literal .literal.* .text .text.*)\n    *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*)\n    *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.literal .literal.* .text .text.*)\n    *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*)\n    *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*)\n    *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*)\n    *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*)\n    *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort)\n    *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*)\n    *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper)\n    *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive)\n    *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap)\n    *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:idf_additions.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:idf_additions.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:idf_additions.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:idf_additions.*) .text.*)\n    *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*)\n    *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*)\n    *libgcov.a:(.literal .literal.* .text .text.*)\n    *libhal.a:cache_hal.*(.literal .literal.* .text .text.*)\n    *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*)\n    *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*)\n    *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*)\n    *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*)\n    *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value)\n    *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block)\n    *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs)\n    *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block)\n    *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block)\n    *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock)\n    *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock)\n    *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free)\n    *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl)\n    *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock)\n    *libheap.a:tlsf.*(.literal.tlsf_align_size .text.tlsf_align_size)\n    *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead)\n    *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size)\n    *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max)\n    *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min)\n    *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free)\n    *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool)\n    *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc)\n    *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign)\n    *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs)\n    *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc)\n    *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size)\n    *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write)\n    *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp)\n    *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock)\n    *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout)\n    *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock)\n    *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp)\n    *libnet80211.a:(.wifi0iram .wifi0iram.*)\n    *libnet80211.a:(.wifirxiram .wifirxiram.*)\n    *libnet80211.a:(.wifislprxiram .wifislprxiram.*)\n    *libnewlib.a:abort.*(.literal .literal.* .text .text.*)\n    *libnewlib.a:assert.*(.literal .literal.* .text .text.*)\n    *libnewlib.a:heap.*(.literal .literal.* .text .text.*)\n    *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*)\n    *libpp.a:(.wifi0iram .wifi0iram.*)\n    *libpp.a:(.wifiorslpiram .wifiorslpiram.*)\n    *libpp.a:(.wifirxiram .wifirxiram.*)\n    *libpp.a:(.wifislprxiram .wifislprxiram.*)\n    *librtc.a:(.literal .literal.* .text .text.*)\n    *libsoc.a:lldesc.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_mxic_opi.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_hpm_enable.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_oct_flash_init.*(.literal .literal.* .text .text.*)\n    *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*)\n    *libxt_hal.a:(.literal .literal.* .text .text.*)\n    *libxtensa.a:eri.*(.literal .literal.* .text .text.*)\n    *libxtensa.a:xtensa_intr_asm.*(.literal .literal.* .text .text.*)\n\n  } > iram0_0_seg\n\n  /**\n   * This section is required to skip .iram0.text area because iram0_0_seg and\n   * dram0_0_seg reflect the same address space on different buses.\n   */\n  .dram0.dummy (NOLOAD):\n  {\n    . = ORIGIN(dram0_0_seg) + MAX(_iram_end - _diram_i_start, 0);\n  } > dram0_0_seg\n\n  .dram0.data :\n  {\n    _data_start = ABSOLUTE(.);\n    *(.gnu.linkonce.d.*)\n    *(.data1)\n    *(.sdata)\n    *(.sdata.*)\n    *(.gnu.linkonce.s.*)\n    *(.gnu.linkonce.s2.*)\n    *(.jcr)\n\n    *(.data .data.*)\n    *(.dram1 .dram1.*)\n    _coredump_dram_start = ABSOLUTE(.);\n    *(.dram2.coredump .dram2.coredump.*)\n    _coredump_dram_end = ABSOLUTE(.);\n    *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_rom.a:esp_rom_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libfreertos.a:FreeRTOS-openocd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_mxic_opi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_hpm_enable.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_oct_flash_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n    *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*)\n\n    _data_end = ABSOLUTE(.);\n    . = ALIGN(4);\n  } > dram0_0_seg\n\n  /**\n   * This section holds data that should not be initialized at power up.\n   * The section located in Internal SRAM memory region. The macro _NOINIT\n   * can be used as attribute to place data into this section.\n   * See the \"esp_attr.h\" file for more information.\n   */\n  .noinit (NOLOAD):\n  {\n    . = ALIGN(4);\n    _noinit_start = ABSOLUTE(.);\n    *(.noinit .noinit.*)\n    . = ALIGN(4) ;\n    _noinit_end = ABSOLUTE(.);\n  } > dram0_0_seg\n\n  /* Shared RAM */\n  .dram0.bss (NOLOAD) :\n  {\n    . = ALIGN (8);\n    _bss_start = ABSOLUTE(.);\n\n    *(.bss .bss.*)\n    *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem)\n    *(.ext_ram.bss .ext_ram.bss.*)\n    *(COMMON)\n\n    *(.dynsbss)\n    *(.sbss)\n    *(.sbss.*)\n    *(.gnu.linkonce.sb.*)\n    *(.scommon)\n    *(.sbss2)\n    *(.sbss2.*)\n    *(.gnu.linkonce.sb2.*)\n    *(.dynbss)\n    *(.share.mem)\n    *(.gnu.linkonce.b.*)\n\n    . = ALIGN (8);\n    _bss_end = ABSOLUTE(.);\n  } > dram0_0_seg\n\n  ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), \"DRAM segment data does not fit.\")\n\n  .flash.text :\n  {\n    _stext = .;\n    _instruction_reserved_start = ABSOLUTE(.);  /* This is a symbol marking the flash.text start, this can be used for mmu driver to maintain virtual address */\n    _text_start = ABSOLUTE(.);\n\n    *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:timer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .text.*)\n    *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*)\n    *(.wifiextrairam .wifiextrairam.*)\n    *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*)\n    *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*)\n    *(.wifislpiram .wifislpiram.*)\n    *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*)\n    *libdriver.a:gptimer.*(.literal.gptimer_acquire_group_handle .literal.gptimer_del_timer .literal.gptimer_destroy .literal.gptimer_disable .literal.gptimer_enable .literal.gptimer_get_captured_count .literal.gptimer_get_raw_count .literal.gptimer_get_resolution .literal.gptimer_new_timer .literal.gptimer_register_event_callbacks .literal.gptimer_register_to_group .literal.gptimer_release_group_handle .literal.gptimer_select_periph_clock .literal.gptimer_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .literal.gptimer_unregister_from_group .literal.timer_ll_set_clock_prescale .literal.timer_ll_set_clock_source .text .text.gptimer_acquire_group_handle .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_register_to_group .text.gptimer_release_group_handle .text.gptimer_select_periph_clock .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group .text.timer_ll_set_clock_prescale .text.timer_ll_set_clock_source)\n    *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_instance_register .literal.esp_event_handler_instance_unregister .literal.esp_event_handler_register .literal.esp_event_handler_unregister .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_post .text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post)\n    *libesp_event.a:esp_event.*(.literal.base_node_add_handler .literal.base_node_remove_all_handler .literal.base_node_remove_handler .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_handler_register_with .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_loop_create .literal.esp_event_loop_delete .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_post_to .literal.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler)\n    *libesp_hw_support.a:cpu.*(.literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint)\n    *libesp_hw_support.a:esp_gpio_reserve.*(.text)\n    *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_clk_en_reg .literal.periph_ll_get_rst_en_mask .literal.periph_ll_get_rst_en_reg .literal.periph_ll_reset .literal.periph_module_disable .literal.periph_module_enable .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable)\n    *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_power_disable .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release)\n    *libesp_system.a:esp_system_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size)\n    *libesp_wifi.a:esp_adapter.*(.literal.esp_cpu_intr_disable .literal.esp_cpu_intr_enable .literal.esp_event_post_wrapper .literal.esp_phy_disable_wrapper .literal.esp_phy_enable_wrapper .literal.event_group_wait_bits_wrapper .literal.get_time_wrapper .literal.mutex_create_wrapper .literal.mutex_delete_wrapper .literal.queue_create_wrapper .literal.queue_recv_wrapper .literal.queue_send_to_back_wrapper .literal.queue_send_to_front_wrapper .literal.queue_send_wrapper .literal.recursive_mutex_create_wrapper .literal.set_intr_wrapper .literal.set_isr_wrapper .literal.task_create_pinned_to_core_wrapper .literal.task_create_wrapper .literal.wifi_clock_disable_wrapper .literal.wifi_clock_enable_wrapper .literal.wifi_create_queue .literal.wifi_create_queue_wrapper .literal.wifi_delete_queue .literal.wifi_delete_queue_wrapper .literal.wifi_reset_mac_wrapper .literal.wifi_thread_semphr_free .literal.wifi_thread_semphr_get_wrapper .text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.esp_cpu_intr_disable .text.esp_cpu_intr_enable .text.esp_event_post_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.queue_create_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper)\n    *libesp_wifi.a:wifi_netif.*(.literal.esp_wifi_create_if_driver .literal.esp_wifi_destroy_if_driver .literal.esp_wifi_get_if_mac .literal.esp_wifi_register_if_rxcb .literal.wifi_ap_receive .literal.wifi_driver_start .literal.wifi_free .literal.wifi_transmit .text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit)\n    *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*)\n    *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*)\n    *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .literal.timer_hal_set_counter_value .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value)\n    *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_block_owner .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl)\n    *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool)\n    *liblog.a:log.*(.literal.add_to_cache .literal.clear_log_level_list .literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.get_cached_log_level .literal.get_uncached_log_level .literal.heap_bubble_down .literal.heap_swap .literal.s_log_level_get_and_unlock .text .text.add_to_cache .text.clear_log_level_list .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.get_cached_log_level .text.get_uncached_log_level .text.heap_bubble_down .text.heap_swap .text.s_log_level_get_and_unlock)\n    *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp)\n\n    *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)\n    *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */\n    *(.fini.literal)\n    *(.fini)\n    *(.gnu.version)\n\n    /** CPU will try to prefetch up to 16 bytes of\n      * of instructions. This means that any configuration (e.g. MMU, PMS) must allow\n      * safe access to up to 16 bytes after the last real instruction, add\n      * dummy bytes to ensure this\n      */\n    . += _esp_flash_mmap_prefetch_pad_size;\n\n    _text_end = ABSOLUTE(.);\n    _instruction_reserved_end = ABSOLUTE(.);  /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */\n    _etext = .;\n\n    /**\n     * Similar to _iram_start, this symbol goes here so it is\n     * resolved by addr2line in preference to the first symbol in\n     * the flash.text segment.\n     */\n    _flash_cache_start = ABSOLUTE(0);\n  } > default_code_seg\n\n  /**\n   * This dummy section represents the .flash.text section but in default_rodata_seg.\n   * Thus, it must have its alignment and (at least) its size.\n   */\n  .flash_rodata_dummy (NOLOAD):\n  {\n    _flash_rodata_dummy_start = ABSOLUTE(.);\n    /* Start at the same alignment constraint than .flash.text */\n    . = ALIGN(ALIGNOF(.flash.text));\n    /* Create an empty gap as big as .flash.text section */\n    . = . + SIZEOF(.flash.text);\n    /* Prepare the alignment of the section above. Few bytes (0x20) must be\n     * added for the mapping header. */\n    . = ALIGN(_esp_mmu_block_size) + 0x20;\n  } > default_rodata_seg\n\n  .flash.appdesc : ALIGN(0x10)\n  {\n    _rodata_reserved_start = ABSOLUTE(.);  /* This is a symbol marking the flash.rodata start, this can be used for mmu driver to maintain virtual address */\n    _rodata_start = ABSOLUTE(.);\n\n    *(.rodata_desc .rodata_desc.*)               /* Should be the first.  App version info.        DO NOT PUT ANYTHING BEFORE IT! */\n    *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */\n\n    /* Create an empty gap within this section. Thanks to this, the end of this\n     * section will match .flah.rodata's begin address. Thus, both sections\n     * will be merged when creating the final bin image. */\n    . = ALIGN(ALIGNOF(.flash.rodata));\n  } >default_rodata_seg\n\n  .flash.rodata : ALIGN(0x10)\n  {\n    _flash_rodata_start = ABSOLUTE(.);\n\n    *(EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_oct_flash_init.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*)\n    *(.rodata_wlog_error .rodata_wlog_error.*)\n    *(.rodata_wlog_info .rodata_wlog_info.*)\n    *(.rodata_wlog_warning .rodata_wlog_warning.*)\n\n    *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */\n    *(.gnu.linkonce.r.*)\n    *(.rodata1)\n    __XT_EXCEPTION_TABLE_ = ABSOLUTE(.);\n    *(.xt_except_table)\n    *(.gcc_except_table .gcc_except_table.*)\n    *(.gnu.linkonce.e.*)\n    *(.gnu.version_r)\n    . = (. + 3) & ~ 3;\n    __eh_frame = ABSOLUTE(.);\n    KEEP(*(.eh_frame))\n    . = (. + 7) & ~ 3;\n    /* C++ constructor and destructor tables */\n    /* Don't include anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt */\n    __init_array_start = ABSOLUTE(.);\n    KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*)))\n    __init_array_end = ABSOLUTE(.);\n    KEEP (*crtbegin.*(.dtors))\n    KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors))\n    KEEP (*(SORT(.dtors.*)))\n    KEEP (*(.dtors))\n    /* C++ exception handlers table: */\n    __XT_EXCEPTION_DESCS_ = ABSOLUTE(.);\n    *(.xt_except_desc)\n    *(.gnu.linkonce.h.*)\n    __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.);\n    *(.xt_except_desc_end)\n    *(.dynamic)\n    *(.gnu.version_d)\n    /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */\n    soc_reserved_memory_region_start = ABSOLUTE(.);\n    KEEP (*(.reserved_memory_address))\n    soc_reserved_memory_region_end = ABSOLUTE(.);\n    /* System init functions registered via ESP_SYSTEM_INIT_FN */\n    _esp_system_init_fn_array_start = ABSOLUTE(.);\n    KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)))\n    _esp_system_init_fn_array_end = ABSOLUTE(.);\n    _rodata_end = ABSOLUTE(.);\n    /* Literals are also RO data. */\n    _lit4_start = ABSOLUTE(.);\n    *(*.lit4)\n    *(.lit4.*)\n    *(.gnu.linkonce.lit4.*)\n    _lit4_end = ABSOLUTE(.);\n    . = ALIGN(4);\n    _thread_local_start = ABSOLUTE(.);\n    *(.tdata)\n    *(.tdata.*)\n    *(.tbss)\n    *(.tbss.*)\n    _thread_local_end = ABSOLUTE(.);\n    . = ALIGN(4);\n  } > default_rodata_seg\n\n  _flash_rodata_align = ALIGNOF(.flash.rodata);\n\n  /*\n    This section is a place where we dump all the rodata which aren't used at runtime,\n    so as to avoid binary size increase\n  */\n  .flash.rodata_noload (NOLOAD) :\n  {\n    /*\n      This is a symbol marking the flash.rodata end, this can be used for mmu driver to maintain virtual address\n      We don't need to include the noload rodata in this section\n    */\n    _rodata_reserved_end = ABSOLUTE(.);\n    . = ALIGN (4);\n    *(.rodata_wlog_debug .rodata_wlog_debug.*)\n    *(.rodata_wlog_verbose .rodata_wlog_verbose.*)\n  } > default_rodata_seg\n\n  /**\n   * This section is required to skip flash rodata sections, because `extern_ram_seg`\n   * and `drom0_0_seg` are on the same bus\n   */\n  .ext_ram.dummy (NOLOAD):\n  {\n    . = ORIGIN(extern_ram_seg) + (_rodata_reserved_end - _flash_rodata_dummy_start);\n    . = ALIGN (0x10000);\n  } > extern_ram_seg\n\n  /* This section holds .ext_ram.bss data, and will be put in PSRAM */\n  .ext_ram.bss (NOLOAD) :\n  {\n    _ext_ram_bss_start = ABSOLUTE(.);\n    . = ALIGN(4);\n    _ext_ram_bss_end = ABSOLUTE(.);\n  } > extern_ram_seg\n\n  /* Marks the end of IRAM code segment */\n  .iram0.text_end (NOLOAD) :\n  {\n    /* iram_end_test section exists for use by memprot unit tests only */\n    *(.iram_end_test)\n    /* ESP32-S3 memprot requires 16B padding for possible CPU prefetch and 256B alignment for PMS split lines */\n    . += _esp_memprot_prefetch_pad_size;\n    . = ALIGN(_esp_memprot_align_size);\n    _iram_text_end = ABSOLUTE(.);\n  } > iram0_0_seg\n\n  .iram0.data :\n  {\n    . = ALIGN(4);\n    _iram_data_start = ABSOLUTE(.);\n\n    *(.iram.data .iram.data.*)\n    _coredump_iram_start = ABSOLUTE(.);\n    *(.iram2.coredump .iram2.coredump.*)\n    _coredump_iram_end = ABSOLUTE(.);\n\n    _iram_data_end = ABSOLUTE(.);\n  } > iram0_0_seg\n\n  .iram0.bss (NOLOAD) :\n  {\n    . = ALIGN(4);\n    _iram_bss_start = ABSOLUTE(.);\n\n    *(.iram.bss .iram.bss.*)\n\n    _iram_bss_end = ABSOLUTE(.);\n    . = ALIGN(4);\n    _iram_end = ABSOLUTE(.);\n   } > iram0_0_seg\n\n  /* Marks the end of data, bss and possibly rodata  */\n  .dram0.heap_start (NOLOAD) :\n  {\n    . = ALIGN (8);\n    /* Lowest possible start address for the heap */\n    _heap_low_start = ABSOLUTE(.);\n  } > dram0_0_seg\n\n  /** This section will be used by the debugger and disassembler to get more information\n    * about raw data present in the code.\n    * Indeed, it may be required to add some padding at some points in the code\n    * in order to align a branch/jump destination on a particular bound.\n    * Padding these instructions will generate null bytes that shall be\n    * interpreted as data, and not code by the debugger or disassembler.\n    * This section will only be present in the ELF file, not in the final binary\n    * For more details, check GCC-212\n    */\n  .xt.prop 0 :\n  {\n    KEEP (*(.xt.prop .gnu.linkonce.prop.*))\n  }\n\n  .xt.lit 0 :\n  {\n    KEEP (*(.xt.lit .gnu.linkonce.p.*))\n  }\n}\n\nASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)),\n          \"IRAM0 segment data does not fit.\")\n\nASSERT(((_heap_low_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)),\n          \"DRAM segment data does not fit.\")\n"
  },
  {
    "path": "Code/build/esp-idf/esp_system/port/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_timer/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esp_wifi/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/espcoredump/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esptool_py/app-flash_args.in",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x10000 $<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin"
  },
  {
    "path": "Code/build/esp-idf/esptool_py/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/esptool_py/flasher_args.json.in",
    "content": "{\n    \"write_flash_args\" : [ \"--flash_mode\", \"dio\",\n                           \"--flash_size\", \"2MB\",\n                           \"--flash_freq\", \"80m\" ],\n    \"flash_settings\" : {\n        \"flash_mode\": \"dio\",\n        \"flash_size\": \"2MB\",\n        \"flash_freq\": \"80m\"\n    },\n    \"flash_files\" : {\n        \"0x0\" : \"bootloader/bootloader.bin\",\n        \"0x10000\" : \"$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin\",\n        \"0x8000\" : \"partition_table/partition-table.bin\",\n        \"0x110000\" : \"storage.bin\"\n    },\n    \"bootloader\" : { \"offset\" : \"0x0\", \"file\" : \"bootloader/bootloader.bin\", \"encrypted\" : \"false\" },\n    \"app\" : { \"offset\" : \"0x10000\", \"file\" : \"$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin\", \"encrypted\" : \"false\" },\n    \"partition-table\" : { \"offset\" : \"0x8000\", \"file\" : \"partition_table/partition-table.bin\", \"encrypted\" : \"false\" },\n    \"storage\" : { \"offset\" : \"0x110000\", \"file\" : \"storage.bin\", \"encrypted\" : \"false\" },\n    \"extra_esptool_args\" : {\n        \"after\"  : \"hard_reset\",\n        \"before\" : \"default_reset\",\n        \"stub\"   : true,\n        \"chip\"   : \"esp32s3\"\n    }\n}\n"
  },
  {
    "path": "Code/build/esp-idf/fatfs/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/freertos/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/hal/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/heap/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/http_parser/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/idf_test/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/ieee802154/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/json/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/json\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/log/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/lwip/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/main/cmake_install.cmake",
    "content": "# Install script for directory: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for each subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake\")\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake\")\n\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/include\" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include/everest\" FILES_MATCHING REGEX \"/[^/]*\\\\.h$\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/lib\" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/include\" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/:C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m\" FILES_MATCHING REGEX \"/[^/]*\\\\.h$\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/lib\" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for each subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake\")\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake\")\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake\")\n\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/include/mbedtls\" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/aes.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/aria.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/asn1.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/asn1write.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/base64.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/bignum.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/build_info.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/camellia.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ccm.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/chacha20.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/check_config.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/cipher.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/cmac.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/config_psa.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/constant_time.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/debug.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/des.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/dhm.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ecdh.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ecp.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/entropy.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/error.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/gcm.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/hkdf.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/lms.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/md.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/md5.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/oid.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/pem.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/pk.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/platform.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/platform_time.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/platform_util.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/poly1305.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/private_access.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/psa_util.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/rsa.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/sha1.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/sha256.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/sha3.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/sha512.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ssl.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/threading.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/timing.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/version.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/x509.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h\"\n    )\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/include/psa\" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/build_info.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_compat.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_config.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_extra.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_legacy.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_platform.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_sizes.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_struct.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_types.h\"\n    \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include/psa/crypto_values.h\"\n    )\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/lib\" TYPE STATIC_LIBRARY FILES \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/lib\" TYPE STATIC_LIBRARY FILES \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a\")\nendif()\n\nif(CMAKE_INSTALL_COMPONENT STREQUAL \"Unspecified\" OR NOT CMAKE_INSTALL_COMPONENT)\n  file(INSTALL DESTINATION \"${CMAKE_INSTALL_PREFIX}/lib\" TYPE STATIC_LIBRARY FILES \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/library/error.c",
    "content": "/*\n *  Error message information\n *\n *  Copyright The Mbed TLS Contributors\n *  SPDX-License-Identifier: Apache-2.0\n *\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n *  not use this file except in compliance with the License.\n *  You may obtain a copy of the License at\n *\n *  http://www.apache.org/licenses/LICENSE-2.0\n *\n *  Unless required by applicable law or agreed to in writing, software\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n *  See the License for the specific language governing permissions and\n *  limitations under the License.\n */\n\n#include \"common.h\"\n\n#include \"mbedtls/error.h\"\n\n#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)\n\n#if defined(MBEDTLS_ERROR_C)\n\n#include \"mbedtls/platform.h\"\n\n#include <stdio.h>\n#include <string.h>\n\n#if defined(MBEDTLS_AES_C)\n#include \"mbedtls/aes.h\"\n#endif\n\n#if defined(MBEDTLS_ARIA_C)\n#include \"mbedtls/aria.h\"\n#endif\n\n#if defined(MBEDTLS_ASN1_PARSE_C)\n#include \"mbedtls/asn1.h\"\n#endif\n\n#if defined(MBEDTLS_BASE64_C)\n#include \"mbedtls/base64.h\"\n#endif\n\n#if defined(MBEDTLS_BIGNUM_C)\n#include \"mbedtls/bignum.h\"\n#endif\n\n#if defined(MBEDTLS_CAMELLIA_C)\n#include \"mbedtls/camellia.h\"\n#endif\n\n#if defined(MBEDTLS_CCM_C)\n#include \"mbedtls/ccm.h\"\n#endif\n\n#if defined(MBEDTLS_CHACHA20_C)\n#include \"mbedtls/chacha20.h\"\n#endif\n\n#if defined(MBEDTLS_CHACHAPOLY_C)\n#include \"mbedtls/chachapoly.h\"\n#endif\n\n#if defined(MBEDTLS_CIPHER_C)\n#include \"mbedtls/cipher.h\"\n#endif\n\n#if defined(MBEDTLS_CTR_DRBG_C)\n#include \"mbedtls/ctr_drbg.h\"\n#endif\n\n#if defined(MBEDTLS_DES_C)\n#include \"mbedtls/des.h\"\n#endif\n\n#if defined(MBEDTLS_DHM_C)\n#include \"mbedtls/dhm.h\"\n#endif\n\n#if defined(MBEDTLS_ECP_C)\n#include \"mbedtls/ecp.h\"\n#endif\n\n#if defined(MBEDTLS_ENTROPY_C)\n#include \"mbedtls/entropy.h\"\n#endif\n\n#if defined(MBEDTLS_ERROR_C)\n#include \"mbedtls/error.h\"\n#endif\n\n#if defined(MBEDTLS_PLATFORM_C)\n#include \"mbedtls/platform.h\"\n#endif\n\n#if defined(MBEDTLS_GCM_C)\n#include \"mbedtls/gcm.h\"\n#endif\n\n#if defined(MBEDTLS_HKDF_C)\n#include \"mbedtls/hkdf.h\"\n#endif\n\n#if defined(MBEDTLS_HMAC_DRBG_C)\n#include \"mbedtls/hmac_drbg.h\"\n#endif\n\n#if defined(MBEDTLS_LMS_C)\n#include \"mbedtls/lms.h\"\n#endif\n\n#if defined(MBEDTLS_MD_C)\n#include \"mbedtls/md.h\"\n#endif\n\n#if defined(MBEDTLS_NET_C)\n#include \"mbedtls/net_sockets.h\"\n#endif\n\n#if defined(MBEDTLS_OID_C)\n#include \"mbedtls/oid.h\"\n#endif\n\n#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)\n#include \"mbedtls/pem.h\"\n#endif\n\n#if defined(MBEDTLS_PK_C)\n#include \"mbedtls/pk.h\"\n#endif\n\n#if defined(MBEDTLS_PKCS12_C)\n#include \"mbedtls/pkcs12.h\"\n#endif\n\n#if defined(MBEDTLS_PKCS5_C)\n#include \"mbedtls/pkcs5.h\"\n#endif\n\n#if defined(MBEDTLS_PKCS7_C)\n#include \"mbedtls/pkcs7.h\"\n#endif\n\n#if defined(MBEDTLS_POLY1305_C)\n#include \"mbedtls/poly1305.h\"\n#endif\n\n#if defined(MBEDTLS_RSA_C)\n#include \"mbedtls/rsa.h\"\n#endif\n\n#if defined(MBEDTLS_SHA1_C)\n#include \"mbedtls/sha1.h\"\n#endif\n\n#if defined(MBEDTLS_SHA256_C)\n#include \"mbedtls/sha256.h\"\n#endif\n\n#if defined(MBEDTLS_SHA3_C)\n#include \"mbedtls/sha3.h\"\n#endif\n\n#if defined(MBEDTLS_SHA512_C)\n#include \"mbedtls/sha512.h\"\n#endif\n\n#if defined(MBEDTLS_SSL_TLS_C)\n#include \"mbedtls/ssl.h\"\n#endif\n\n#if defined(MBEDTLS_THREADING_C)\n#include \"mbedtls/threading.h\"\n#endif\n\n#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C)\n#include \"mbedtls/x509.h\"\n#endif\n\n\nconst char *mbedtls_high_level_strerr(int error_code)\n{\n    int high_level_error_code;\n\n    if (error_code < 0) {\n        error_code = -error_code;\n    }\n\n    /* Extract the high-level part from the error code. */\n    high_level_error_code = error_code & 0xFF80;\n\n    switch (high_level_error_code) {\n    /* Begin Auto-Generated Code. */\n    #if defined(MBEDTLS_CIPHER_C)\n        case -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE):\n            return( \"CIPHER - The selected feature is not available\" );\n        case -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA):\n            return( \"CIPHER - Bad input parameters\" );\n        case -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED):\n            return( \"CIPHER - Failed to allocate memory\" );\n        case -(MBEDTLS_ERR_CIPHER_INVALID_PADDING):\n            return( \"CIPHER - Input data contains invalid padding and is rejected\" );\n        case -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED):\n            return( \"CIPHER - Decryption of block requires a full block\" );\n        case -(MBEDTLS_ERR_CIPHER_AUTH_FAILED):\n            return( \"CIPHER - Authentication failed (for AEAD modes)\" );\n        case -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT):\n            return( \"CIPHER - The context is invalid. For example, because it was freed\" );\n#endif /* MBEDTLS_CIPHER_C */\n\n#if defined(MBEDTLS_DHM_C)\n        case -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA):\n            return( \"DHM - Bad input parameters\" );\n        case -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED):\n            return( \"DHM - Reading of the DHM parameters failed\" );\n        case -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED):\n            return( \"DHM - Making of the DHM parameters failed\" );\n        case -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED):\n            return( \"DHM - Reading of the public values failed\" );\n        case -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED):\n            return( \"DHM - Making of the public value failed\" );\n        case -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED):\n            return( \"DHM - Calculation of the DHM secret failed\" );\n        case -(MBEDTLS_ERR_DHM_INVALID_FORMAT):\n            return( \"DHM - The ASN.1 data is not formatted correctly\" );\n        case -(MBEDTLS_ERR_DHM_ALLOC_FAILED):\n            return( \"DHM - Allocation of memory failed\" );\n        case -(MBEDTLS_ERR_DHM_FILE_IO_ERROR):\n            return( \"DHM - Read or write of file failed\" );\n        case -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED):\n            return( \"DHM - Setting the modulus and generator failed\" );\n#endif /* MBEDTLS_DHM_C */\n\n#if defined(MBEDTLS_ECP_C)\n        case -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA):\n            return( \"ECP - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL):\n            return( \"ECP - The buffer is too small to write to\" );\n        case -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE):\n            return( \"ECP - The requested feature is not available, for example, the requested curve is not supported\" );\n        case -(MBEDTLS_ERR_ECP_VERIFY_FAILED):\n            return( \"ECP - The signature is not valid\" );\n        case -(MBEDTLS_ERR_ECP_ALLOC_FAILED):\n            return( \"ECP - Memory allocation failed\" );\n        case -(MBEDTLS_ERR_ECP_RANDOM_FAILED):\n            return( \"ECP - Generation of random value, such as ephemeral key, failed\" );\n        case -(MBEDTLS_ERR_ECP_INVALID_KEY):\n            return( \"ECP - Invalid private or public key\" );\n        case -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH):\n            return( \"ECP - The buffer contains a valid signature followed by more data\" );\n        case -(MBEDTLS_ERR_ECP_IN_PROGRESS):\n            return( \"ECP - Operation in progress, call again with the same parameters to continue\" );\n#endif /* MBEDTLS_ECP_C */\n\n#if defined(MBEDTLS_MD_C)\n        case -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE):\n            return( \"MD - The selected feature is not available\" );\n        case -(MBEDTLS_ERR_MD_BAD_INPUT_DATA):\n            return( \"MD - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_MD_ALLOC_FAILED):\n            return( \"MD - Failed to allocate memory\" );\n        case -(MBEDTLS_ERR_MD_FILE_IO_ERROR):\n            return( \"MD - Opening or reading of file failed\" );\n#endif /* MBEDTLS_MD_C */\n\n#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)\n        case -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT):\n            return( \"PEM - No PEM header or footer found\" );\n        case -(MBEDTLS_ERR_PEM_INVALID_DATA):\n            return( \"PEM - PEM string is not as expected\" );\n        case -(MBEDTLS_ERR_PEM_ALLOC_FAILED):\n            return( \"PEM - Failed to allocate memory\" );\n        case -(MBEDTLS_ERR_PEM_INVALID_ENC_IV):\n            return( \"PEM - RSA IV is not in hex-format\" );\n        case -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG):\n            return( \"PEM - Unsupported key encryption algorithm\" );\n        case -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED):\n            return( \"PEM - Private key password can't be empty\" );\n        case -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH):\n            return( \"PEM - Given private key password does not allow for correct decryption\" );\n        case -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE):\n            return( \"PEM - Unavailable feature, e.g. hashing/encryption combination\" );\n        case -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA):\n            return( \"PEM - Bad input parameters to function\" );\n#endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */\n\n#if defined(MBEDTLS_PK_C)\n        case -(MBEDTLS_ERR_PK_ALLOC_FAILED):\n            return( \"PK - Memory allocation failed\" );\n        case -(MBEDTLS_ERR_PK_TYPE_MISMATCH):\n            return( \"PK - Type mismatch, eg attempt to encrypt with an ECDSA key\" );\n        case -(MBEDTLS_ERR_PK_BAD_INPUT_DATA):\n            return( \"PK - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_PK_FILE_IO_ERROR):\n            return( \"PK - Read/write of file failed\" );\n        case -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION):\n            return( \"PK - Unsupported key version\" );\n        case -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT):\n            return( \"PK - Invalid key tag or value\" );\n        case -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG):\n            return( \"PK - Key algorithm is unsupported (only RSA and EC are supported)\" );\n        case -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED):\n            return( \"PK - Private key password can't be empty\" );\n        case -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH):\n            return( \"PK - Given private key password does not allow for correct decryption\" );\n        case -(MBEDTLS_ERR_PK_INVALID_PUBKEY):\n            return( \"PK - The pubkey tag or value is invalid (only RSA and EC are supported)\" );\n        case -(MBEDTLS_ERR_PK_INVALID_ALG):\n            return( \"PK - The algorithm tag or value is invalid\" );\n        case -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE):\n            return( \"PK - Elliptic curve is unsupported (only NIST curves are supported)\" );\n        case -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE):\n            return( \"PK - Unavailable feature, e.g. RSA disabled for RSA key\" );\n        case -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH):\n            return( \"PK - The buffer contains a valid signature followed by more data\" );\n        case -(MBEDTLS_ERR_PK_BUFFER_TOO_SMALL):\n            return( \"PK - The output buffer is too small\" );\n#endif /* MBEDTLS_PK_C */\n\n#if defined(MBEDTLS_PKCS12_C)\n        case -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA):\n            return( \"PKCS12 - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE):\n            return( \"PKCS12 - Feature not available, e.g. unsupported encryption scheme\" );\n        case -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT):\n            return( \"PKCS12 - PBE ASN.1 data not as expected\" );\n        case -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH):\n            return( \"PKCS12 - Given private key password does not allow for correct decryption\" );\n#endif /* MBEDTLS_PKCS12_C */\n\n#if defined(MBEDTLS_PKCS5_C)\n        case -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA):\n            return( \"PKCS5 - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT):\n            return( \"PKCS5 - Unexpected ASN.1 data\" );\n        case -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE):\n            return( \"PKCS5 - Requested encryption or digest alg not available\" );\n        case -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH):\n            return( \"PKCS5 - Given private key password does not allow for correct decryption\" );\n#endif /* MBEDTLS_PKCS5_C */\n\n#if defined(MBEDTLS_PKCS7_C)\n        case -(MBEDTLS_ERR_PKCS7_INVALID_FORMAT):\n            return( \"PKCS7 - The format is invalid, e.g. different type expected\" );\n        case -(MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE):\n            return( \"PKCS7 - Unavailable feature, e.g. anything other than signed data\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_VERSION):\n            return( \"PKCS7 - The PKCS #7 version element is invalid or cannot be parsed\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO):\n            return( \"PKCS7 - The PKCS #7 content info is invalid or cannot be parsed\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_ALG):\n            return( \"PKCS7 - The algorithm tag or value is invalid or cannot be parsed\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_CERT):\n            return( \"PKCS7 - The certificate tag or value is invalid or cannot be parsed\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE):\n            return( \"PKCS7 - Error parsing the signature\" );\n        case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO):\n            return( \"PKCS7 - Error parsing the signer's info\" );\n        case -(MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA):\n            return( \"PKCS7 - Input invalid\" );\n        case -(MBEDTLS_ERR_PKCS7_ALLOC_FAILED):\n            return( \"PKCS7 - Allocation of memory failed\" );\n        case -(MBEDTLS_ERR_PKCS7_VERIFY_FAIL):\n            return( \"PKCS7 - Verification Failed\" );\n        case -(MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID):\n            return( \"PKCS7 - The PKCS #7 date issued/expired dates are invalid\" );\n#endif /* MBEDTLS_PKCS7_C */\n\n#if defined(MBEDTLS_RSA_C)\n        case -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA):\n            return( \"RSA - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_RSA_INVALID_PADDING):\n            return( \"RSA - Input data contains invalid padding and is rejected\" );\n        case -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED):\n            return( \"RSA - Something failed during generation of a key\" );\n        case -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED):\n            return( \"RSA - Key failed to pass the validity check of the library\" );\n        case -(MBEDTLS_ERR_RSA_PUBLIC_FAILED):\n            return( \"RSA - The public key operation failed\" );\n        case -(MBEDTLS_ERR_RSA_PRIVATE_FAILED):\n            return( \"RSA - The private key operation failed\" );\n        case -(MBEDTLS_ERR_RSA_VERIFY_FAILED):\n            return( \"RSA - The PKCS#1 verification failed\" );\n        case -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE):\n            return( \"RSA - The output buffer for decryption is not large enough\" );\n        case -(MBEDTLS_ERR_RSA_RNG_FAILED):\n            return( \"RSA - The random generator failed to generate non-zeros\" );\n#endif /* MBEDTLS_RSA_C */\n\n#if defined(MBEDTLS_SSL_TLS_C)\n        case -(MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS):\n            return( \"SSL - A cryptographic operation is in progress. Try again later\" );\n        case -(MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE):\n            return( \"SSL - The requested feature is not available\" );\n        case -(MBEDTLS_ERR_SSL_BAD_INPUT_DATA):\n            return( \"SSL - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_SSL_INVALID_MAC):\n            return( \"SSL - Verification of the message MAC failed\" );\n        case -(MBEDTLS_ERR_SSL_INVALID_RECORD):\n            return( \"SSL - An invalid SSL record was received\" );\n        case -(MBEDTLS_ERR_SSL_CONN_EOF):\n            return( \"SSL - The connection indicated an EOF\" );\n        case -(MBEDTLS_ERR_SSL_DECODE_ERROR):\n            return( \"SSL - A message could not be parsed due to a syntactic error\" );\n        case -(MBEDTLS_ERR_SSL_NO_RNG):\n            return( \"SSL - No RNG was provided to the SSL module\" );\n        case -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE):\n            return( \"SSL - No client certification received from the client, but required by the authentication mode\" );\n        case -(MBEDTLS_ERR_SSL_UNSUPPORTED_EXTENSION):\n            return( \"SSL - Client received an extended server hello containing an unsupported extension\" );\n        case -(MBEDTLS_ERR_SSL_NO_APPLICATION_PROTOCOL):\n            return( \"SSL - No ALPN protocols supported that the client advertises\" );\n        case -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED):\n            return( \"SSL - The own private key or pre-shared key is not set, but needed\" );\n        case -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED):\n            return( \"SSL - No CA Chain is set, but required to operate\" );\n        case -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE):\n            return( \"SSL - An unexpected message was received from our peer\" );\n        case -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE):\n            return( \"SSL - A fatal alert message was received from our peer\" );\n        case -(MBEDTLS_ERR_SSL_UNRECOGNIZED_NAME):\n            return( \"SSL - No server could be identified matching the client's SNI\" );\n        case -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY):\n            return( \"SSL - The peer notified us that the connection is going to be closed\" );\n        case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE):\n            return( \"SSL - Processing of the Certificate handshake message failed\" );\n        case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET):\n            return( \"SSL - * Received NewSessionTicket Post Handshake Message. This error code is experimental and may be changed or removed without notice\" );\n        case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA):\n            return( \"SSL - Not possible to read early data\" );\n        case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA):\n            return( \"SSL - Not possible to write early data\" );\n        case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND):\n            return( \"SSL - Cache entry not found\" );\n        case -(MBEDTLS_ERR_SSL_ALLOC_FAILED):\n            return( \"SSL - Memory allocation failed\" );\n        case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED):\n            return( \"SSL - Hardware acceleration function returned with error\" );\n        case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH):\n            return( \"SSL - Hardware acceleration function skipped / left alone data\" );\n        case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION):\n            return( \"SSL - Handshake protocol not within min/max boundaries\" );\n        case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE):\n            return( \"SSL - The handshake negotiation failed\" );\n        case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED):\n            return( \"SSL - Session ticket has expired\" );\n        case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH):\n            return( \"SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)\" );\n        case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY):\n            return( \"SSL - Unknown identity received (eg, PSK identity)\" );\n        case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR):\n            return( \"SSL - Internal error (eg, unexpected failure in lower-level module)\" );\n        case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING):\n            return( \"SSL - A counter would wrap (eg, too many messages exchanged)\" );\n        case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO):\n            return( \"SSL - Unexpected message at ServerHello in renegotiation\" );\n        case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED):\n            return( \"SSL - DTLS client must retry for hello verification\" );\n        case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL):\n            return( \"SSL - A buffer is too small to receive or write a message\" );\n        case -(MBEDTLS_ERR_SSL_WANT_READ):\n            return( \"SSL - No data of requested type currently available on underlying transport\" );\n        case -(MBEDTLS_ERR_SSL_WANT_WRITE):\n            return( \"SSL - Connection requires a write call\" );\n        case -(MBEDTLS_ERR_SSL_TIMEOUT):\n            return( \"SSL - The operation timed out\" );\n        case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT):\n            return( \"SSL - The client initiated a reconnect from the same port\" );\n        case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD):\n            return( \"SSL - Record header looks valid but is not expected\" );\n        case -(MBEDTLS_ERR_SSL_NON_FATAL):\n            return( \"SSL - The alert message received indicates a non-fatal error\" );\n        case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER):\n            return( \"SSL - A field in a message was incorrect or inconsistent with other fields\" );\n        case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING):\n            return( \"SSL - Internal-only message signaling that further message-processing should be done\" );\n        case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS):\n            return( \"SSL - The asynchronous operation is not completed yet\" );\n        case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE):\n            return( \"SSL - Internal-only message signaling that a message arrived early\" );\n        case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID):\n            return( \"SSL - An encrypted DTLS-frame with an unexpected CID was received\" );\n        case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH):\n            return( \"SSL - An operation failed due to an unexpected version or configuration\" );\n        case -(MBEDTLS_ERR_SSL_BAD_CONFIG):\n            return( \"SSL - Invalid value in SSL config\" );\n#endif /* MBEDTLS_SSL_TLS_C */\n\n#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C)\n        case -(MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE):\n            return( \"X509 - Unavailable feature, e.g. RSA hashing/encryption combination\" );\n        case -(MBEDTLS_ERR_X509_UNKNOWN_OID):\n            return( \"X509 - Requested OID is unknown\" );\n        case -(MBEDTLS_ERR_X509_INVALID_FORMAT):\n            return( \"X509 - The CRT/CRL/CSR format is invalid, e.g. different type expected\" );\n        case -(MBEDTLS_ERR_X509_INVALID_VERSION):\n            return( \"X509 - The CRT/CRL/CSR version element is invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_SERIAL):\n            return( \"X509 - The serial tag or value is invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_ALG):\n            return( \"X509 - The algorithm tag or value is invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_NAME):\n            return( \"X509 - The name tag or value is invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_DATE):\n            return( \"X509 - The date tag or value is invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_SIGNATURE):\n            return( \"X509 - The signature tag or value invalid\" );\n        case -(MBEDTLS_ERR_X509_INVALID_EXTENSIONS):\n            return( \"X509 - The extension tag or value is invalid\" );\n        case -(MBEDTLS_ERR_X509_UNKNOWN_VERSION):\n            return( \"X509 - CRT/CRL/CSR has an unsupported version number\" );\n        case -(MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG):\n            return( \"X509 - Signature algorithm (oid) is unsupported\" );\n        case -(MBEDTLS_ERR_X509_SIG_MISMATCH):\n            return( \"X509 - Signature algorithms do not match. (see \\\\c ::mbedtls_x509_crt sig_oid)\" );\n        case -(MBEDTLS_ERR_X509_CERT_VERIFY_FAILED):\n            return( \"X509 - Certificate verification failed, e.g. CRL, CA or signature check failed\" );\n        case -(MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT):\n            return( \"X509 - Format not recognized as DER or PEM\" );\n        case -(MBEDTLS_ERR_X509_BAD_INPUT_DATA):\n            return( \"X509 - Input invalid\" );\n        case -(MBEDTLS_ERR_X509_ALLOC_FAILED):\n            return( \"X509 - Allocation of memory failed\" );\n        case -(MBEDTLS_ERR_X509_FILE_IO_ERROR):\n            return( \"X509 - Read/write of file failed\" );\n        case -(MBEDTLS_ERR_X509_BUFFER_TOO_SMALL):\n            return( \"X509 - Destination buffer is too small\" );\n        case -(MBEDTLS_ERR_X509_FATAL_ERROR):\n            return( \"X509 - A fatal error occurred, eg the chain is too long or the vrfy callback failed\" );\n#endif /* MBEDTLS_X509_USE_C || MBEDTLS_X509_CREATE_C */\n        /* End Auto-Generated Code. */\n\n        default:\n            break;\n    }\n\n    return NULL;\n}\n\nconst char *mbedtls_low_level_strerr(int error_code)\n{\n    int low_level_error_code;\n\n    if (error_code < 0) {\n        error_code = -error_code;\n    }\n\n    /* Extract the low-level part from the error code. */\n    low_level_error_code = error_code & ~0xFF80;\n\n    switch (low_level_error_code) {\n    /* Begin Auto-Generated Code. */\n    #if defined(MBEDTLS_AES_C)\n        case -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH):\n            return( \"AES - Invalid key length\" );\n        case -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH):\n            return( \"AES - Invalid data input length\" );\n        case -(MBEDTLS_ERR_AES_BAD_INPUT_DATA):\n            return( \"AES - Invalid input data\" );\n#endif /* MBEDTLS_AES_C */\n\n#if defined(MBEDTLS_ARIA_C)\n        case -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA):\n            return( \"ARIA - Bad input data\" );\n        case -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH):\n            return( \"ARIA - Invalid data input length\" );\n#endif /* MBEDTLS_ARIA_C */\n\n#if defined(MBEDTLS_ASN1_PARSE_C)\n        case -(MBEDTLS_ERR_ASN1_OUT_OF_DATA):\n            return( \"ASN1 - Out of data when parsing an ASN1 data structure\" );\n        case -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG):\n            return( \"ASN1 - ASN1 tag was of an unexpected value\" );\n        case -(MBEDTLS_ERR_ASN1_INVALID_LENGTH):\n            return( \"ASN1 - Error when trying to determine the length or invalid length\" );\n        case -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH):\n            return( \"ASN1 - Actual length differs from expected length\" );\n        case -(MBEDTLS_ERR_ASN1_INVALID_DATA):\n            return( \"ASN1 - Data is invalid\" );\n        case -(MBEDTLS_ERR_ASN1_ALLOC_FAILED):\n            return( \"ASN1 - Memory allocation failed\" );\n        case -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL):\n            return( \"ASN1 - Buffer too small when writing ASN.1 data structure\" );\n#endif /* MBEDTLS_ASN1_PARSE_C */\n\n#if defined(MBEDTLS_BASE64_C)\n        case -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL):\n            return( \"BASE64 - Output buffer too small\" );\n        case -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER):\n            return( \"BASE64 - Invalid character in input\" );\n#endif /* MBEDTLS_BASE64_C */\n\n#if defined(MBEDTLS_BIGNUM_C)\n        case -(MBEDTLS_ERR_MPI_FILE_IO_ERROR):\n            return( \"BIGNUM - An error occurred while reading from or writing to a file\" );\n        case -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA):\n            return( \"BIGNUM - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_MPI_INVALID_CHARACTER):\n            return( \"BIGNUM - There is an invalid character in the digit string\" );\n        case -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL):\n            return( \"BIGNUM - The buffer is too small to write to\" );\n        case -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE):\n            return( \"BIGNUM - The input arguments are negative or result in illegal output\" );\n        case -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO):\n            return( \"BIGNUM - The input argument for division is zero, which is not allowed\" );\n        case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE):\n            return( \"BIGNUM - The input arguments are not acceptable\" );\n        case -(MBEDTLS_ERR_MPI_ALLOC_FAILED):\n            return( \"BIGNUM - Memory allocation failed\" );\n#endif /* MBEDTLS_BIGNUM_C */\n\n#if defined(MBEDTLS_CAMELLIA_C)\n        case -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA):\n            return( \"CAMELLIA - Bad input data\" );\n        case -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH):\n            return( \"CAMELLIA - Invalid data input length\" );\n#endif /* MBEDTLS_CAMELLIA_C */\n\n#if defined(MBEDTLS_CCM_C)\n        case -(MBEDTLS_ERR_CCM_BAD_INPUT):\n            return( \"CCM - Bad input parameters to the function\" );\n        case -(MBEDTLS_ERR_CCM_AUTH_FAILED):\n            return( \"CCM - Authenticated decryption failed\" );\n#endif /* MBEDTLS_CCM_C */\n\n#if defined(MBEDTLS_CHACHA20_C)\n        case -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA):\n            return( \"CHACHA20 - Invalid input parameter(s)\" );\n#endif /* MBEDTLS_CHACHA20_C */\n\n#if defined(MBEDTLS_CHACHAPOLY_C)\n        case -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE):\n            return( \"CHACHAPOLY - The requested operation is not permitted in the current state\" );\n        case -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED):\n            return( \"CHACHAPOLY - Authenticated decryption failed: data was not authentic\" );\n#endif /* MBEDTLS_CHACHAPOLY_C */\n\n#if defined(MBEDTLS_CTR_DRBG_C)\n        case -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED):\n            return( \"CTR_DRBG - The entropy source failed\" );\n        case -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG):\n            return( \"CTR_DRBG - The requested random buffer length is too big\" );\n        case -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG):\n            return( \"CTR_DRBG - The input (entropy + additional data) is too large\" );\n        case -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR):\n            return( \"CTR_DRBG - Read or write error in file\" );\n#endif /* MBEDTLS_CTR_DRBG_C */\n\n#if defined(MBEDTLS_DES_C)\n        case -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH):\n            return( \"DES - The data input has an invalid length\" );\n#endif /* MBEDTLS_DES_C */\n\n#if defined(MBEDTLS_ENTROPY_C)\n        case -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED):\n            return( \"ENTROPY - Critical entropy source failure\" );\n        case -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES):\n            return( \"ENTROPY - No more sources can be added\" );\n        case -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED):\n            return( \"ENTROPY - No sources have been added to poll\" );\n        case -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE):\n            return( \"ENTROPY - No strong sources have been added to poll\" );\n        case -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR):\n            return( \"ENTROPY - Read/write error in file\" );\n#endif /* MBEDTLS_ENTROPY_C */\n\n#if defined(MBEDTLS_ERROR_C)\n        case -(MBEDTLS_ERR_ERROR_GENERIC_ERROR):\n            return( \"ERROR - Generic error\" );\n        case -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED):\n            return( \"ERROR - This is a bug in the library\" );\n#endif /* MBEDTLS_ERROR_C */\n\n#if defined(MBEDTLS_PLATFORM_C)\n        case -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED):\n            return( \"PLATFORM - Hardware accelerator failed\" );\n        case -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED):\n            return( \"PLATFORM - The requested feature is not supported by the platform\" );\n#endif /* MBEDTLS_PLATFORM_C */\n\n#if defined(MBEDTLS_GCM_C)\n        case -(MBEDTLS_ERR_GCM_AUTH_FAILED):\n            return( \"GCM - Authenticated decryption failed\" );\n        case -(MBEDTLS_ERR_GCM_BAD_INPUT):\n            return( \"GCM - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL):\n            return( \"GCM - An output buffer is too small\" );\n#endif /* MBEDTLS_GCM_C */\n\n#if defined(MBEDTLS_HKDF_C)\n        case -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA):\n            return( \"HKDF - Bad input parameters to function\" );\n#endif /* MBEDTLS_HKDF_C */\n\n#if defined(MBEDTLS_HMAC_DRBG_C)\n        case -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG):\n            return( \"HMAC_DRBG - Too many random requested in single call\" );\n        case -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG):\n            return( \"HMAC_DRBG - Input too large (Entropy + additional)\" );\n        case -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR):\n            return( \"HMAC_DRBG - Read/write error in file\" );\n        case -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED):\n            return( \"HMAC_DRBG - The entropy source failed\" );\n#endif /* MBEDTLS_HMAC_DRBG_C */\n\n#if defined(MBEDTLS_LMS_C)\n        case -(MBEDTLS_ERR_LMS_BAD_INPUT_DATA):\n            return( \"LMS - Bad data has been input to an LMS function\" );\n        case -(MBEDTLS_ERR_LMS_OUT_OF_PRIVATE_KEYS):\n            return( \"LMS - Specified LMS key has utilised all of its private keys\" );\n        case -(MBEDTLS_ERR_LMS_VERIFY_FAILED):\n            return( \"LMS - LMS signature verification failed\" );\n        case -(MBEDTLS_ERR_LMS_ALLOC_FAILED):\n            return( \"LMS - LMS failed to allocate space for a private key\" );\n        case -(MBEDTLS_ERR_LMS_BUFFER_TOO_SMALL):\n            return( \"LMS - Input/output buffer is too small to contain requited data\" );\n#endif /* MBEDTLS_LMS_C */\n\n#if defined(MBEDTLS_NET_C)\n        case -(MBEDTLS_ERR_NET_SOCKET_FAILED):\n            return( \"NET - Failed to open a socket\" );\n        case -(MBEDTLS_ERR_NET_CONNECT_FAILED):\n            return( \"NET - The connection to the given server / port failed\" );\n        case -(MBEDTLS_ERR_NET_BIND_FAILED):\n            return( \"NET - Binding of the socket failed\" );\n        case -(MBEDTLS_ERR_NET_LISTEN_FAILED):\n            return( \"NET - Could not listen on the socket\" );\n        case -(MBEDTLS_ERR_NET_ACCEPT_FAILED):\n            return( \"NET - Could not accept the incoming connection\" );\n        case -(MBEDTLS_ERR_NET_RECV_FAILED):\n            return( \"NET - Reading information from the socket failed\" );\n        case -(MBEDTLS_ERR_NET_SEND_FAILED):\n            return( \"NET - Sending information through the socket failed\" );\n        case -(MBEDTLS_ERR_NET_CONN_RESET):\n            return( \"NET - Connection was reset by peer\" );\n        case -(MBEDTLS_ERR_NET_UNKNOWN_HOST):\n            return( \"NET - Failed to get an IP address for the given hostname\" );\n        case -(MBEDTLS_ERR_NET_BUFFER_TOO_SMALL):\n            return( \"NET - Buffer is too small to hold the data\" );\n        case -(MBEDTLS_ERR_NET_INVALID_CONTEXT):\n            return( \"NET - The context is invalid, eg because it was free()ed\" );\n        case -(MBEDTLS_ERR_NET_POLL_FAILED):\n            return( \"NET - Polling the net context failed\" );\n        case -(MBEDTLS_ERR_NET_BAD_INPUT_DATA):\n            return( \"NET - Input invalid\" );\n#endif /* MBEDTLS_NET_C */\n\n#if defined(MBEDTLS_OID_C)\n        case -(MBEDTLS_ERR_OID_NOT_FOUND):\n            return( \"OID - OID is not found\" );\n        case -(MBEDTLS_ERR_OID_BUF_TOO_SMALL):\n            return( \"OID - output buffer is too small\" );\n#endif /* MBEDTLS_OID_C */\n\n#if defined(MBEDTLS_POLY1305_C)\n        case -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA):\n            return( \"POLY1305 - Invalid input parameter(s)\" );\n#endif /* MBEDTLS_POLY1305_C */\n\n#if defined(MBEDTLS_SHA1_C)\n        case -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA):\n            return( \"SHA1 - SHA-1 input data was malformed\" );\n#endif /* MBEDTLS_SHA1_C */\n\n#if defined(MBEDTLS_SHA256_C)\n        case -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA):\n            return( \"SHA256 - SHA-256 input data was malformed\" );\n#endif /* MBEDTLS_SHA256_C */\n\n#if defined(MBEDTLS_SHA3_C)\n        case -(MBEDTLS_ERR_SHA3_BAD_INPUT_DATA):\n            return( \"SHA3 - SHA-3 input data was malformed\" );\n#endif /* MBEDTLS_SHA3_C */\n\n#if defined(MBEDTLS_SHA512_C)\n        case -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA):\n            return( \"SHA512 - SHA-512 input data was malformed\" );\n#endif /* MBEDTLS_SHA512_C */\n\n#if defined(MBEDTLS_THREADING_C)\n        case -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA):\n            return( \"THREADING - Bad input parameters to function\" );\n        case -(MBEDTLS_ERR_THREADING_MUTEX_ERROR):\n            return( \"THREADING - Locking / unlocking / free failed with error code\" );\n#endif /* MBEDTLS_THREADING_C */\n        /* End Auto-Generated Code. */\n\n        default:\n            break;\n    }\n\n    return NULL;\n}\n\nvoid mbedtls_strerror(int ret, char *buf, size_t buflen)\n{\n    size_t len;\n    int use_ret;\n    const char *high_level_error_description = NULL;\n    const char *low_level_error_description = NULL;\n\n    if (buflen == 0) {\n        return;\n    }\n\n    memset(buf, 0x00, buflen);\n\n    if (ret < 0) {\n        ret = -ret;\n    }\n\n    if (ret & 0xFF80) {\n        use_ret = ret & 0xFF80;\n\n        // Translate high level error code.\n        high_level_error_description = mbedtls_high_level_strerr(ret);\n\n        if (high_level_error_description == NULL) {\n            mbedtls_snprintf(buf, buflen, \"UNKNOWN ERROR CODE (%04X)\", (unsigned int) use_ret);\n        } else {\n            mbedtls_snprintf(buf, buflen, \"%s\", high_level_error_description);\n        }\n\n#if defined(MBEDTLS_SSL_TLS_C)\n        // Early return in case of a fatal error - do not try to translate low\n        // level code.\n        if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) {\n            return;\n        }\n#endif /* MBEDTLS_SSL_TLS_C */\n    }\n\n    use_ret = ret & ~0xFF80;\n\n    if (use_ret == 0) {\n        return;\n    }\n\n    // If high level code is present, make a concatenation between both\n    // error strings.\n    //\n    len = strlen(buf);\n\n    if (len > 0) {\n        if (buflen - len < 5) {\n            return;\n        }\n\n        mbedtls_snprintf(buf + len, buflen - len, \" : \");\n\n        buf += len + 3;\n        buflen -= len + 3;\n    }\n\n    // Translate low level error code.\n    low_level_error_description = mbedtls_low_level_strerr(ret);\n\n    if (low_level_error_description == NULL) {\n        mbedtls_snprintf(buf, buflen, \"UNKNOWN ERROR CODE (%04X)\", (unsigned int) use_ret);\n    } else {\n        mbedtls_snprintf(buf, buflen, \"%s\", low_level_error_description);\n    }\n}\n\n#else /* MBEDTLS_ERROR_C */\n\n/*\n * Provide a dummy implementation when MBEDTLS_ERROR_C is not defined\n */\nvoid mbedtls_strerror(int ret, char *buf, size_t buflen)\n{\n    ((void) ret);\n\n    if (buflen > 0) {\n        buf[0] = '\\0';\n    }\n}\n\n#endif /* MBEDTLS_ERROR_C */\n\n#if defined(MBEDTLS_TEST_HOOKS)\nvoid (*mbedtls_test_hook_error_add)(int, int, const char *, int);\n#endif\n\n#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c",
    "content": "/*\n *  Functions to delegate cryptographic operations to an available\n *  and appropriate accelerator.\n *  Warning: This file is now auto-generated.\n */\n/*  Copyright The Mbed TLS Contributors\n *  SPDX-License-Identifier: Apache-2.0\n *\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n *  not use this file except in compliance with the License.\n *  You may obtain a copy of the License at\n *\n *  http://www.apache.org/licenses/LICENSE-2.0\n *\n *  Unless required by applicable law or agreed to in writing, software\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n *  See the License for the specific language governing permissions and\n *  limitations under the License.\n */\n\n\n/* BEGIN-common headers */\n#include \"common.h\"\n#include \"psa_crypto_aead.h\"\n#include \"psa_crypto_cipher.h\"\n#include \"psa_crypto_core.h\"\n#include \"psa_crypto_driver_wrappers_no_static.h\"\n#include \"psa_crypto_hash.h\"\n#include \"psa_crypto_mac.h\"\n#include \"psa_crypto_pake.h\"\n#include \"psa_crypto_rsa.h\"\n\n#include \"mbedtls/platform.h\"\n/* END-common headers */\n\n#if defined(MBEDTLS_PSA_CRYPTO_C)\n\n/* BEGIN-driver headers */\n/* Headers for mbedtls_test opaque driver */\n#if defined(PSA_CRYPTO_DRIVER_TEST)\n#include \"test/drivers/test_driver.h\"\n\n#endif\n/* Headers for mbedtls_test transparent driver */\n#if defined(PSA_CRYPTO_DRIVER_TEST)\n#include \"test/drivers/test_driver.h\"\n\n#endif\n/* Headers for p256 transparent driver */\n#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED)\n#include \"../3rdparty/p256-m/p256-m_driver_entrypoints.h\"\n\n#endif\n\n/* END-driver headers */\n\n/* Auto-generated values depending on which drivers are registered.\n * ID 0 is reserved for unallocated operations.\n * ID 1 is reserved for the Mbed TLS software driver. */\n/* BEGIN-driver id definition */\n#define PSA_CRYPTO_MBED_TLS_DRIVER_ID (1)\n#define MBEDTLS_TEST_OPAQUE_DRIVER_ID (2)\n#define MBEDTLS_TEST_TRANSPARENT_DRIVER_ID (3)\n#define P256_TRANSPARENT_DRIVER_ID (4)\n\n/* END-driver id */\n\n/* BEGIN-Common Macro definitions */\n\n/* END-Common Macro definitions */\n\n/* Support the 'old' SE interface when asked to */\n#if defined(MBEDTLS_PSA_CRYPTO_SE_C)\n/* PSA_CRYPTO_DRIVER_PRESENT is defined when either a new-style or old-style\n * SE driver is present, to avoid unused argument errors at compile time. */\n#ifndef PSA_CRYPTO_DRIVER_PRESENT\n#define PSA_CRYPTO_DRIVER_PRESENT\n#endif\n#include \"psa_crypto_se.h\"\n#endif\n\n/** Get the key buffer size required to store the key material of a key\n *  associated with an opaque driver.\n *\n * \\param[in] attributes  The key attributes.\n * \\param[out] key_buffer_size  Minimum buffer size to contain the key material\n *\n * \\retval #PSA_SUCCESS\n *         The minimum size for a buffer to contain the key material has been\n *         returned successfully.\n * \\retval #PSA_ERROR_NOT_SUPPORTED\n *         The type and/or the size in bits of the key or the combination of\n *         the two is not supported.\n * \\retval #PSA_ERROR_INVALID_ARGUMENT\n *         The key is declared with a lifetime not known to us.\n */\npsa_status_t psa_driver_wrapper_get_key_buffer_size(\n    const psa_key_attributes_t *attributes,\n    size_t *key_buffer_size )\n{\n    psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );\n    psa_key_type_t key_type = attributes->core.type;\n    size_t key_bits = attributes->core.bits;\n\n    *key_buffer_size = 0;\n    switch( location )\n    {\n#if defined(PSA_CRYPTO_DRIVER_TEST)\n        case PSA_CRYPTO_TEST_DRIVER_LOCATION:\n#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)\n            /* Emulate property 'builtin_key_size' */\n            if( psa_key_id_is_builtin(\n                    MBEDTLS_SVC_KEY_ID_GET_KEY_ID(\n                        psa_get_key_id( attributes ) ) ) )\n            {\n                *key_buffer_size = sizeof( psa_drv_slot_number_t );\n                return( PSA_SUCCESS );\n            }\n#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */\n            *key_buffer_size = mbedtls_test_opaque_size_function( key_type,\n                                                                  key_bits );\n            return( ( *key_buffer_size != 0 ) ?\n                    PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED );\n#endif /* PSA_CRYPTO_DRIVER_TEST */\n\n        default:\n            (void)key_type;\n            (void)key_bits;\n            return( PSA_ERROR_INVALID_ARGUMENT );\n    }\n}\n\npsa_status_t psa_driver_wrapper_export_public_key(\n    const psa_key_attributes_t *attributes,\n    const uint8_t *key_buffer, size_t key_buffer_size,\n    uint8_t *data, size_t data_size, size_t *data_length )\n\n{\n\n    psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;\n    psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(\n                                      psa_get_key_lifetime( attributes ) );\n\n    /* Try dynamically-registered SE interface first */\n#if defined(MBEDTLS_PSA_CRYPTO_SE_C)\n    const psa_drv_se_t *drv;\n    psa_drv_se_context_t *drv_context;\n\n    if( psa_get_se_driver( attributes->core.lifetime, &drv, &drv_context ) )\n    {\n        if( ( drv->key_management == NULL ) ||\n            ( drv->key_management->p_export_public == NULL ) )\n        {\n            return( PSA_ERROR_NOT_SUPPORTED );\n        }\n\n        return( drv->key_management->p_export_public(\n                    drv_context,\n                    *( (psa_key_slot_number_t *)key_buffer ),\n                    data, data_size, data_length ) );\n    }\n#endif /* MBEDTLS_PSA_CRYPTO_SE_C */\n\n    switch( location )\n    {\n        case PSA_KEY_LOCATION_LOCAL_STORAGE:\n            /* Key is stored in the slot in export representation, so\n             * cycle through all known transparent accelerators */\n#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)\n\n#if (defined(PSA_CRYPTO_DRIVER_TEST) )\n            status = mbedtls_test_transparent_export_public_key\n                (attributes,\n                                key_buffer,\n                                key_buffer_size,\n                                data,\n                                data_size,\n                                data_length\n            );\n\n            if( status != PSA_ERROR_NOT_SUPPORTED )\n                return( status );\n#endif\n\n#if (defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) )\n            status = p256_transparent_export_public_key\n                (attributes,\n                                key_buffer,\n                                key_buffer_size,\n                                data,\n                                data_size,\n                                data_length\n            );\n\n            if( status != PSA_ERROR_NOT_SUPPORTED )\n                return( status );\n#endif\n\n\n#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */\n            /* Fell through, meaning no accelerator supports this operation */\n            return( psa_export_public_key_internal( attributes,\n                                                    key_buffer,\n                                                    key_buffer_size,\n                                                    data,\n                                                    data_size,\n                                                    data_length ) );\n\n        /* Add cases for opaque driver here */\n#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT)\n\n#if (defined(PSA_CRYPTO_DRIVER_TEST) )\n        case 0x7fffff:\n            return( mbedtls_test_opaque_export_public_key\n            (attributes,\n                            key_buffer,\n                            key_buffer_size,\n                            data,\n                            data_size,\n                            data_length\n        ));\n#endif\n\n\n#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */\n        default:\n            /* Key is declared with a lifetime not known to us */\n            return( status );\n    }\n\n}\n\npsa_status_t psa_driver_wrapper_get_builtin_key(\n    psa_drv_slot_number_t slot_number,\n    psa_key_attributes_t *attributes,\n    uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length )\n{\n\n    psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime );\n    switch( location )\n    {\n#if defined(PSA_CRYPTO_DRIVER_TEST)\n\n#if (defined(PSA_CRYPTO_DRIVER_TEST) )\n        case 0x7fffff:\n            return( mbedtls_test_opaque_get_builtin_key\n            (slot_number,\n                            attributes,\n                            key_buffer,\n                            key_buffer_size,\n                            key_buffer_length\n        ));\n#endif\n\n\n#endif /* PSA_CRYPTO_DRIVER_TEST */\n        default:\n            (void) slot_number;\n            (void) key_buffer;\n            (void) key_buffer_size;\n            (void) key_buffer_length;\n            return( PSA_ERROR_DOES_NOT_EXIST );\n    }\n\n}\n\n#endif /* MBEDTLS_PSA_CRYPTO_C */\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c",
    "content": "/* Automatically generated by generate_ssl_debug_helpers.py. DO NOT EDIT. */\n\n/**\n * \\file ssl_debug_helpers_generated.c\n *\n * \\brief Automatically generated helper functions for debugging\n */\n/*\n *  Copyright The Mbed TLS Contributors\n *  SPDX-License-Identifier: Apache-2.0\n *\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n *  not use this file except in compliance with the License.\n *  You may obtain a copy of the License at\n *\n *  http://www.apache.org/licenses/LICENSE-2.0\n *\n *  Unless required by applicable law or agreed to in writing, software\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n *  See the License for the specific language governing permissions and\n *  limitations under the License.\n */\n\n#include \"common.h\"\n\n#if defined(MBEDTLS_DEBUG_C)\n\n#include \"ssl_debug_helpers.h\"\n\n\nconst char *mbedtls_ssl_named_group_to_str( uint16_t in )\n{\n    switch( in )\n    {\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192K1:\n        return \"secp192k1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192R1:\n        return \"secp192r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224K1:\n        return \"secp224k1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224R1:\n        return \"secp224r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256K1:\n        return \"secp256k1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1:\n        return \"secp256r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1:\n        return \"secp384r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1:\n        return \"secp521r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_BP256R1:\n        return \"bp256r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_BP384R1:\n        return \"bp384r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_BP512R1:\n        return \"bp512r1\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_X25519:\n        return \"x25519\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_X448:\n        return \"x448\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE2048:\n        return \"ffdhe2048\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE3072:\n        return \"ffdhe3072\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE4096:\n        return \"ffdhe4096\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE6144:\n        return \"ffdhe6144\";\n    case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE8192:\n        return \"ffdhe8192\";\n    };\n\n    return \"UNKOWN\";\n}\nconst char *mbedtls_ssl_sig_alg_to_str( uint16_t in )\n{\n    switch( in )\n    {\n    case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256:\n        return \"rsa_pkcs1_sha256\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384:\n        return \"rsa_pkcs1_sha384\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512:\n        return \"rsa_pkcs1_sha512\";\n    case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256:\n        return \"ecdsa_secp256r1_sha256\";\n    case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384:\n        return \"ecdsa_secp384r1_sha384\";\n    case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512:\n        return \"ecdsa_secp521r1_sha512\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256:\n        return \"rsa_pss_rsae_sha256\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384:\n        return \"rsa_pss_rsae_sha384\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512:\n        return \"rsa_pss_rsae_sha512\";\n    case MBEDTLS_TLS1_3_SIG_ED25519:\n        return \"ed25519\";\n    case MBEDTLS_TLS1_3_SIG_ED448:\n        return \"ed448\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA256:\n        return \"rsa_pss_pss_sha256\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA384:\n        return \"rsa_pss_pss_sha384\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA512:\n        return \"rsa_pss_pss_sha512\";\n    case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA1:\n        return \"rsa_pkcs1_sha1\";\n    case MBEDTLS_TLS1_3_SIG_ECDSA_SHA1:\n        return \"ecdsa_sha1\";\n    case MBEDTLS_TLS1_3_SIG_NONE:\n        return \"none\";\n    };\n\n    return \"UNKNOWN\";\n}\nconst char *mbedtls_ssl_states_str( mbedtls_ssl_states in )\n{\n    switch (in) {\n        case MBEDTLS_SSL_HELLO_REQUEST:\n            return \"MBEDTLS_SSL_HELLO_REQUEST\";\n        case MBEDTLS_SSL_CLIENT_HELLO:\n            return \"MBEDTLS_SSL_CLIENT_HELLO\";\n        case MBEDTLS_SSL_SERVER_HELLO:\n            return \"MBEDTLS_SSL_SERVER_HELLO\";\n        case MBEDTLS_SSL_SERVER_CERTIFICATE:\n            return \"MBEDTLS_SSL_SERVER_CERTIFICATE\";\n        case MBEDTLS_SSL_SERVER_KEY_EXCHANGE:\n            return \"MBEDTLS_SSL_SERVER_KEY_EXCHANGE\";\n        case MBEDTLS_SSL_CERTIFICATE_REQUEST:\n            return \"MBEDTLS_SSL_CERTIFICATE_REQUEST\";\n        case MBEDTLS_SSL_SERVER_HELLO_DONE:\n            return \"MBEDTLS_SSL_SERVER_HELLO_DONE\";\n        case MBEDTLS_SSL_CLIENT_CERTIFICATE:\n            return \"MBEDTLS_SSL_CLIENT_CERTIFICATE\";\n        case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE:\n            return \"MBEDTLS_SSL_CLIENT_KEY_EXCHANGE\";\n        case MBEDTLS_SSL_CERTIFICATE_VERIFY:\n            return \"MBEDTLS_SSL_CERTIFICATE_VERIFY\";\n        case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC:\n            return \"MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC\";\n        case MBEDTLS_SSL_CLIENT_FINISHED:\n            return \"MBEDTLS_SSL_CLIENT_FINISHED\";\n        case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC:\n            return \"MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC\";\n        case MBEDTLS_SSL_SERVER_FINISHED:\n            return \"MBEDTLS_SSL_SERVER_FINISHED\";\n        case MBEDTLS_SSL_FLUSH_BUFFERS:\n            return \"MBEDTLS_SSL_FLUSH_BUFFERS\";\n        case MBEDTLS_SSL_HANDSHAKE_WRAPUP:\n            return \"MBEDTLS_SSL_HANDSHAKE_WRAPUP\";\n        case MBEDTLS_SSL_NEW_SESSION_TICKET:\n            return \"MBEDTLS_SSL_NEW_SESSION_TICKET\";\n        case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT:\n            return \"MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT\";\n        case MBEDTLS_SSL_HELLO_RETRY_REQUEST:\n            return \"MBEDTLS_SSL_HELLO_RETRY_REQUEST\";\n        case MBEDTLS_SSL_ENCRYPTED_EXTENSIONS:\n            return \"MBEDTLS_SSL_ENCRYPTED_EXTENSIONS\";\n        case MBEDTLS_SSL_END_OF_EARLY_DATA:\n            return \"MBEDTLS_SSL_END_OF_EARLY_DATA\";\n        case MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY:\n            return \"MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY\";\n        case MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED:\n            return \"MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED\";\n        case MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO:\n            return \"MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO\";\n        case MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO:\n            return \"MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO\";\n        case MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO:\n            return \"MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO\";\n        case MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST:\n            return \"MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST\";\n        case MBEDTLS_SSL_HANDSHAKE_OVER:\n            return \"MBEDTLS_SSL_HANDSHAKE_OVER\";\n        case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET:\n            return \"MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET\";\n        case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH:\n            return \"MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH\";\n        default:\n            return \"UNKNOWN_VALUE\";\n    }\n}\n\nconst char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in )\n{\n    switch (in) {\n        case MBEDTLS_SSL_VERSION_UNKNOWN:\n            return \"MBEDTLS_SSL_VERSION_UNKNOWN\";\n        case MBEDTLS_SSL_VERSION_TLS1_2:\n            return \"MBEDTLS_SSL_VERSION_TLS1_2\";\n        case MBEDTLS_SSL_VERSION_TLS1_3:\n            return \"MBEDTLS_SSL_VERSION_TLS1_3\";\n        default:\n            return \"UNKNOWN_VALUE\";\n    }\n}\n\nconst char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in )\n{\n    switch (in) {\n        case MBEDTLS_SSL_TLS_PRF_NONE:\n            return \"MBEDTLS_SSL_TLS_PRF_NONE\";\n        case MBEDTLS_SSL_TLS_PRF_SHA384:\n            return \"MBEDTLS_SSL_TLS_PRF_SHA384\";\n        case MBEDTLS_SSL_TLS_PRF_SHA256:\n            return \"MBEDTLS_SSL_TLS_PRF_SHA256\";\n        case MBEDTLS_SSL_HKDF_EXPAND_SHA384:\n            return \"MBEDTLS_SSL_HKDF_EXPAND_SHA384\";\n        case MBEDTLS_SSL_HKDF_EXPAND_SHA256:\n            return \"MBEDTLS_SSL_HKDF_EXPAND_SHA256\";\n        default:\n            return \"UNKNOWN_VALUE\";\n    }\n}\n\nconst char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in )\n{\n    switch (in) {\n        case MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET\";\n#if defined(MBEDTLS_SSL_PROTO_TLS1_3)\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET\";\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET\";\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET\";\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET\";\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET\";\n        case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET:\n            return \"MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET\";\n#endif\n        default:\n            return \"UNKNOWN_VALUE\";\n    }\n}\n\n\n\n#endif /* MBEDTLS_DEBUG_C */\n/* End of automatically generated file. */\n\n"
  },
  {
    "path": "Code/build/esp-idf/mbedtls/mbedtls/library/version_features.c",
    "content": "/*\n *  Version feature information\n *\n *  Copyright The Mbed TLS Contributors\n *  SPDX-License-Identifier: Apache-2.0\n *\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n *  not use this file except in compliance with the License.\n *  You may obtain a copy of the License at\n *\n *  http://www.apache.org/licenses/LICENSE-2.0\n *\n *  Unless required by applicable law or agreed to in writing, software\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n *  See the License for the specific language governing permissions and\n *  limitations under the License.\n */\n\n#include \"common.h\"\n\n#if defined(MBEDTLS_VERSION_C)\n\n#include \"mbedtls/version.h\"\n\n#include <string.h>\n\nstatic const char * const features[] = {\n#if defined(MBEDTLS_VERSION_FEATURES)\n    #if defined(MBEDTLS_HAVE_ASM)\n    \"HAVE_ASM\", //no-check-names\n#endif /* MBEDTLS_HAVE_ASM */\n#if defined(MBEDTLS_NO_UDBL_DIVISION)\n    \"NO_UDBL_DIVISION\", //no-check-names\n#endif /* MBEDTLS_NO_UDBL_DIVISION */\n#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION)\n    \"NO_64BIT_MULTIPLICATION\", //no-check-names\n#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */\n#if defined(MBEDTLS_HAVE_SSE2)\n    \"HAVE_SSE2\", //no-check-names\n#endif /* MBEDTLS_HAVE_SSE2 */\n#if defined(MBEDTLS_HAVE_TIME)\n    \"HAVE_TIME\", //no-check-names\n#endif /* MBEDTLS_HAVE_TIME */\n#if defined(MBEDTLS_HAVE_TIME_DATE)\n    \"HAVE_TIME_DATE\", //no-check-names\n#endif /* MBEDTLS_HAVE_TIME_DATE */\n#if defined(MBEDTLS_PLATFORM_MEMORY)\n    \"PLATFORM_MEMORY\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_MEMORY */\n#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS)\n    \"PLATFORM_NO_STD_FUNCTIONS\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */\n#if defined(MBEDTLS_PLATFORM_SETBUF_ALT)\n    \"PLATFORM_SETBUF_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */\n#if defined(MBEDTLS_PLATFORM_EXIT_ALT)\n    \"PLATFORM_EXIT_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_EXIT_ALT */\n#if defined(MBEDTLS_PLATFORM_TIME_ALT)\n    \"PLATFORM_TIME_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_TIME_ALT */\n#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT)\n    \"PLATFORM_FPRINTF_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */\n#if defined(MBEDTLS_PLATFORM_PRINTF_ALT)\n    \"PLATFORM_PRINTF_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */\n#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT)\n    \"PLATFORM_SNPRINTF_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */\n#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT)\n    \"PLATFORM_VSNPRINTF_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */\n#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT)\n    \"PLATFORM_NV_SEED_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */\n#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT)\n    \"PLATFORM_SETUP_TEARDOWN_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */\n#if defined(MBEDTLS_PLATFORM_MS_TIME_ALT)\n    \"PLATFORM_MS_TIME_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_MS_TIME_ALT */\n#if defined(MBEDTLS_PLATFORM_GMTIME_R_ALT)\n    \"PLATFORM_GMTIME_R_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_GMTIME_R_ALT */\n#if defined(MBEDTLS_PLATFORM_ZEROIZE_ALT)\n    \"PLATFORM_ZEROIZE_ALT\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */\n#if defined(MBEDTLS_DEPRECATED_WARNING)\n    \"DEPRECATED_WARNING\", //no-check-names\n#endif /* MBEDTLS_DEPRECATED_WARNING */\n#if defined(MBEDTLS_DEPRECATED_REMOVED)\n    \"DEPRECATED_REMOVED\", //no-check-names\n#endif /* MBEDTLS_DEPRECATED_REMOVED */\n#if defined(MBEDTLS_TIMING_ALT)\n    \"TIMING_ALT\", //no-check-names\n#endif /* MBEDTLS_TIMING_ALT */\n#if defined(MBEDTLS_AES_ALT)\n    \"AES_ALT\", //no-check-names\n#endif /* MBEDTLS_AES_ALT */\n#if defined(MBEDTLS_ARIA_ALT)\n    \"ARIA_ALT\", //no-check-names\n#endif /* MBEDTLS_ARIA_ALT */\n#if defined(MBEDTLS_CAMELLIA_ALT)\n    \"CAMELLIA_ALT\", //no-check-names\n#endif /* MBEDTLS_CAMELLIA_ALT */\n#if defined(MBEDTLS_CCM_ALT)\n    \"CCM_ALT\", //no-check-names\n#endif /* MBEDTLS_CCM_ALT */\n#if defined(MBEDTLS_CHACHA20_ALT)\n    \"CHACHA20_ALT\", //no-check-names\n#endif /* MBEDTLS_CHACHA20_ALT */\n#if defined(MBEDTLS_CHACHAPOLY_ALT)\n    \"CHACHAPOLY_ALT\", //no-check-names\n#endif /* MBEDTLS_CHACHAPOLY_ALT */\n#if defined(MBEDTLS_CMAC_ALT)\n    \"CMAC_ALT\", //no-check-names\n#endif /* MBEDTLS_CMAC_ALT */\n#if defined(MBEDTLS_DES_ALT)\n    \"DES_ALT\", //no-check-names\n#endif /* MBEDTLS_DES_ALT */\n#if defined(MBEDTLS_DHM_ALT)\n    \"DHM_ALT\", //no-check-names\n#endif /* MBEDTLS_DHM_ALT */\n#if defined(MBEDTLS_ECJPAKE_ALT)\n    \"ECJPAKE_ALT\", //no-check-names\n#endif /* MBEDTLS_ECJPAKE_ALT */\n#if defined(MBEDTLS_GCM_ALT)\n    \"GCM_ALT\", //no-check-names\n#endif /* MBEDTLS_GCM_ALT */\n#if defined(MBEDTLS_NIST_KW_ALT)\n    \"NIST_KW_ALT\", //no-check-names\n#endif /* MBEDTLS_NIST_KW_ALT */\n#if defined(MBEDTLS_MD5_ALT)\n    \"MD5_ALT\", //no-check-names\n#endif /* MBEDTLS_MD5_ALT */\n#if defined(MBEDTLS_POLY1305_ALT)\n    \"POLY1305_ALT\", //no-check-names\n#endif /* MBEDTLS_POLY1305_ALT */\n#if defined(MBEDTLS_RIPEMD160_ALT)\n    \"RIPEMD160_ALT\", //no-check-names\n#endif /* MBEDTLS_RIPEMD160_ALT */\n#if defined(MBEDTLS_RSA_ALT)\n    \"RSA_ALT\", //no-check-names\n#endif /* MBEDTLS_RSA_ALT */\n#if defined(MBEDTLS_SHA1_ALT)\n    \"SHA1_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA1_ALT */\n#if defined(MBEDTLS_SHA256_ALT)\n    \"SHA256_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA256_ALT */\n#if defined(MBEDTLS_SHA512_ALT)\n    \"SHA512_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA512_ALT */\n#if defined(MBEDTLS_ECP_ALT)\n    \"ECP_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_ALT */\n#if defined(MBEDTLS_MD5_PROCESS_ALT)\n    \"MD5_PROCESS_ALT\", //no-check-names\n#endif /* MBEDTLS_MD5_PROCESS_ALT */\n#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT)\n    \"RIPEMD160_PROCESS_ALT\", //no-check-names\n#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */\n#if defined(MBEDTLS_SHA1_PROCESS_ALT)\n    \"SHA1_PROCESS_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA1_PROCESS_ALT */\n#if defined(MBEDTLS_SHA256_PROCESS_ALT)\n    \"SHA256_PROCESS_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA256_PROCESS_ALT */\n#if defined(MBEDTLS_SHA512_PROCESS_ALT)\n    \"SHA512_PROCESS_ALT\", //no-check-names\n#endif /* MBEDTLS_SHA512_PROCESS_ALT */\n#if defined(MBEDTLS_DES_SETKEY_ALT)\n    \"DES_SETKEY_ALT\", //no-check-names\n#endif /* MBEDTLS_DES_SETKEY_ALT */\n#if defined(MBEDTLS_DES_CRYPT_ECB_ALT)\n    \"DES_CRYPT_ECB_ALT\", //no-check-names\n#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */\n#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT)\n    \"DES3_CRYPT_ECB_ALT\", //no-check-names\n#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */\n#if defined(MBEDTLS_AES_SETKEY_ENC_ALT)\n    \"AES_SETKEY_ENC_ALT\", //no-check-names\n#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */\n#if defined(MBEDTLS_AES_SETKEY_DEC_ALT)\n    \"AES_SETKEY_DEC_ALT\", //no-check-names\n#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */\n#if defined(MBEDTLS_AES_ENCRYPT_ALT)\n    \"AES_ENCRYPT_ALT\", //no-check-names\n#endif /* MBEDTLS_AES_ENCRYPT_ALT */\n#if defined(MBEDTLS_AES_DECRYPT_ALT)\n    \"AES_DECRYPT_ALT\", //no-check-names\n#endif /* MBEDTLS_AES_DECRYPT_ALT */\n#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT)\n    \"ECDH_GEN_PUBLIC_ALT\", //no-check-names\n#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */\n#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT)\n    \"ECDH_COMPUTE_SHARED_ALT\", //no-check-names\n#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */\n#if defined(MBEDTLS_ECDSA_VERIFY_ALT)\n    \"ECDSA_VERIFY_ALT\", //no-check-names\n#endif /* MBEDTLS_ECDSA_VERIFY_ALT */\n#if defined(MBEDTLS_ECDSA_SIGN_ALT)\n    \"ECDSA_SIGN_ALT\", //no-check-names\n#endif /* MBEDTLS_ECDSA_SIGN_ALT */\n#if defined(MBEDTLS_ECDSA_GENKEY_ALT)\n    \"ECDSA_GENKEY_ALT\", //no-check-names\n#endif /* MBEDTLS_ECDSA_GENKEY_ALT */\n#if defined(MBEDTLS_ECP_INTERNAL_ALT)\n    \"ECP_INTERNAL_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_INTERNAL_ALT */\n#if defined(MBEDTLS_ECP_NO_FALLBACK)\n    \"ECP_NO_FALLBACK\", //no-check-names\n#endif /* MBEDTLS_ECP_NO_FALLBACK */\n#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT)\n    \"ECP_RANDOMIZE_JAC_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */\n#if defined(MBEDTLS_ECP_ADD_MIXED_ALT)\n    \"ECP_ADD_MIXED_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */\n#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT)\n    \"ECP_DOUBLE_JAC_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */\n#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT)\n    \"ECP_NORMALIZE_JAC_MANY_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */\n#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT)\n    \"ECP_NORMALIZE_JAC_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */\n#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT)\n    \"ECP_DOUBLE_ADD_MXZ_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */\n#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)\n    \"ECP_RANDOMIZE_MXZ_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */\n#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT)\n    \"ECP_NORMALIZE_MXZ_ALT\", //no-check-names\n#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */\n#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT)\n    \"ENTROPY_HARDWARE_ALT\", //no-check-names\n#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */\n#if defined(MBEDTLS_AES_ROM_TABLES)\n    \"AES_ROM_TABLES\", //no-check-names\n#endif /* MBEDTLS_AES_ROM_TABLES */\n#if defined(MBEDTLS_AES_FEWER_TABLES)\n    \"AES_FEWER_TABLES\", //no-check-names\n#endif /* MBEDTLS_AES_FEWER_TABLES */\n#if defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH)\n    \"AES_ONLY_128_BIT_KEY_LENGTH\", //no-check-names\n#endif /* MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */\n#if defined(MBEDTLS_AES_USE_HARDWARE_ONLY)\n    \"AES_USE_HARDWARE_ONLY\", //no-check-names\n#endif /* MBEDTLS_AES_USE_HARDWARE_ONLY */\n#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY)\n    \"CAMELLIA_SMALL_MEMORY\", //no-check-names\n#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */\n#if defined(MBEDTLS_CHECK_RETURN_WARNING)\n    \"CHECK_RETURN_WARNING\", //no-check-names\n#endif /* MBEDTLS_CHECK_RETURN_WARNING */\n#if defined(MBEDTLS_CIPHER_MODE_CBC)\n    \"CIPHER_MODE_CBC\", //no-check-names\n#endif /* MBEDTLS_CIPHER_MODE_CBC */\n#if defined(MBEDTLS_CIPHER_MODE_CFB)\n    \"CIPHER_MODE_CFB\", //no-check-names\n#endif /* MBEDTLS_CIPHER_MODE_CFB */\n#if defined(MBEDTLS_CIPHER_MODE_CTR)\n    \"CIPHER_MODE_CTR\", //no-check-names\n#endif /* MBEDTLS_CIPHER_MODE_CTR */\n#if defined(MBEDTLS_CIPHER_MODE_OFB)\n    \"CIPHER_MODE_OFB\", //no-check-names\n#endif /* MBEDTLS_CIPHER_MODE_OFB */\n#if defined(MBEDTLS_CIPHER_MODE_XTS)\n    \"CIPHER_MODE_XTS\", //no-check-names\n#endif /* MBEDTLS_CIPHER_MODE_XTS */\n#if defined(MBEDTLS_CIPHER_NULL_CIPHER)\n    \"CIPHER_NULL_CIPHER\", //no-check-names\n#endif /* MBEDTLS_CIPHER_NULL_CIPHER */\n#if defined(MBEDTLS_CIPHER_PADDING_PKCS7)\n    \"CIPHER_PADDING_PKCS7\", //no-check-names\n#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */\n#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS)\n    \"CIPHER_PADDING_ONE_AND_ZEROS\", //no-check-names\n#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */\n#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN)\n    \"CIPHER_PADDING_ZEROS_AND_LEN\", //no-check-names\n#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */\n#if defined(MBEDTLS_CIPHER_PADDING_ZEROS)\n    \"CIPHER_PADDING_ZEROS\", //no-check-names\n#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */\n#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY)\n    \"CTR_DRBG_USE_128_BIT_KEY\", //no-check-names\n#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */\n#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)\n    \"ECDH_VARIANT_EVEREST_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)\n    \"ECP_DP_SECP192R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)\n    \"ECP_DP_SECP224R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)\n    \"ECP_DP_SECP256R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)\n    \"ECP_DP_SECP384R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)\n    \"ECP_DP_SECP521R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)\n    \"ECP_DP_SECP192K1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)\n    \"ECP_DP_SECP224K1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)\n    \"ECP_DP_SECP256K1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)\n    \"ECP_DP_BP256R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)\n    \"ECP_DP_BP384R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)\n    \"ECP_DP_BP512R1_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */\n#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)\n    \"ECP_DP_CURVE25519_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */\n#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)\n    \"ECP_DP_CURVE448_ENABLED\", //no-check-names\n#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */\n#if defined(MBEDTLS_ECP_NIST_OPTIM)\n    \"ECP_NIST_OPTIM\", //no-check-names\n#endif /* MBEDTLS_ECP_NIST_OPTIM */\n#if defined(MBEDTLS_ECP_RESTARTABLE)\n    \"ECP_RESTARTABLE\", //no-check-names\n#endif /* MBEDTLS_ECP_RESTARTABLE */\n#if defined(MBEDTLS_ECP_WITH_MPI_UINT)\n    \"ECP_WITH_MPI_UINT\", //no-check-names\n#endif /* MBEDTLS_ECP_WITH_MPI_UINT */\n#if defined(MBEDTLS_ECDSA_DETERMINISTIC)\n    \"ECDSA_DETERMINISTIC\", //no-check-names\n#endif /* MBEDTLS_ECDSA_DETERMINISTIC */\n#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)\n    \"KEY_EXCHANGE_PSK_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)\n    \"KEY_EXCHANGE_DHE_PSK_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)\n    \"KEY_EXCHANGE_ECDHE_PSK_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)\n    \"KEY_EXCHANGE_RSA_PSK_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)\n    \"KEY_EXCHANGE_RSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED)\n    \"KEY_EXCHANGE_DHE_RSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED)\n    \"KEY_EXCHANGE_ECDHE_RSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)\n    \"KEY_EXCHANGE_ECDHE_ECDSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)\n    \"KEY_EXCHANGE_ECDH_ECDSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED)\n    \"KEY_EXCHANGE_ECDH_RSA_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */\n#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)\n    \"KEY_EXCHANGE_ECJPAKE_ENABLED\", //no-check-names\n#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */\n#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED)\n    \"PK_PARSE_EC_EXTENDED\", //no-check-names\n#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */\n#if defined(MBEDTLS_PK_PARSE_EC_COMPRESSED)\n    \"PK_PARSE_EC_COMPRESSED\", //no-check-names\n#endif /* MBEDTLS_PK_PARSE_EC_COMPRESSED */\n#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)\n    \"ERROR_STRERROR_DUMMY\", //no-check-names\n#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */\n#if defined(MBEDTLS_GENPRIME)\n    \"GENPRIME\", //no-check-names\n#endif /* MBEDTLS_GENPRIME */\n#if defined(MBEDTLS_FS_IO)\n    \"FS_IO\", //no-check-names\n#endif /* MBEDTLS_FS_IO */\n#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES)\n    \"NO_DEFAULT_ENTROPY_SOURCES\", //no-check-names\n#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */\n#if defined(MBEDTLS_NO_PLATFORM_ENTROPY)\n    \"NO_PLATFORM_ENTROPY\", //no-check-names\n#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */\n#if defined(MBEDTLS_ENTROPY_FORCE_SHA256)\n    \"ENTROPY_FORCE_SHA256\", //no-check-names\n#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */\n#if defined(MBEDTLS_ENTROPY_NV_SEED)\n    \"ENTROPY_NV_SEED\", //no-check-names\n#endif /* MBEDTLS_ENTROPY_NV_SEED */\n#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER)\n    \"PSA_CRYPTO_KEY_ID_ENCODES_OWNER\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */\n#if defined(MBEDTLS_MEMORY_DEBUG)\n    \"MEMORY_DEBUG\", //no-check-names\n#endif /* MBEDTLS_MEMORY_DEBUG */\n#if defined(MBEDTLS_MEMORY_BACKTRACE)\n    \"MEMORY_BACKTRACE\", //no-check-names\n#endif /* MBEDTLS_MEMORY_BACKTRACE */\n#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)\n    \"PK_RSA_ALT_SUPPORT\", //no-check-names\n#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */\n#if defined(MBEDTLS_PKCS1_V15)\n    \"PKCS1_V15\", //no-check-names\n#endif /* MBEDTLS_PKCS1_V15 */\n#if defined(MBEDTLS_PKCS1_V21)\n    \"PKCS1_V21\", //no-check-names\n#endif /* MBEDTLS_PKCS1_V21 */\n#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)\n    \"PSA_CRYPTO_BUILTIN_KEYS\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */\n#if defined(MBEDTLS_PSA_CRYPTO_CLIENT)\n    \"PSA_CRYPTO_CLIENT\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */\n#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)\n    \"PSA_CRYPTO_EXTERNAL_RNG\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */\n#if defined(MBEDTLS_PSA_CRYPTO_SPM)\n    \"PSA_CRYPTO_SPM\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_SPM */\n#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED)\n    \"PSA_P256M_DRIVER_ENABLED\", //no-check-names\n#endif /* MBEDTLS_PSA_P256M_DRIVER_ENABLED */\n#if defined(MBEDTLS_PSA_INJECT_ENTROPY)\n    \"PSA_INJECT_ENTROPY\", //no-check-names\n#endif /* MBEDTLS_PSA_INJECT_ENTROPY */\n#if defined(MBEDTLS_RSA_NO_CRT)\n    \"RSA_NO_CRT\", //no-check-names\n#endif /* MBEDTLS_RSA_NO_CRT */\n#if defined(MBEDTLS_SELF_TEST)\n    \"SELF_TEST\", //no-check-names\n#endif /* MBEDTLS_SELF_TEST */\n#if defined(MBEDTLS_SHA256_SMALLER)\n    \"SHA256_SMALLER\", //no-check-names\n#endif /* MBEDTLS_SHA256_SMALLER */\n#if defined(MBEDTLS_SHA512_SMALLER)\n    \"SHA512_SMALLER\", //no-check-names\n#endif /* MBEDTLS_SHA512_SMALLER */\n#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES)\n    \"SSL_ALL_ALERT_MESSAGES\", //no-check-names\n#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */\n#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)\n    \"SSL_DTLS_CONNECTION_ID\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */\n#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT)\n    \"SSL_DTLS_CONNECTION_ID_COMPAT\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */\n#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)\n    \"SSL_ASYNC_PRIVATE\", //no-check-names\n#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */\n#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)\n    \"SSL_CONTEXT_SERIALIZATION\", //no-check-names\n#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */\n#if defined(MBEDTLS_SSL_DEBUG_ALL)\n    \"SSL_DEBUG_ALL\", //no-check-names\n#endif /* MBEDTLS_SSL_DEBUG_ALL */\n#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)\n    \"SSL_ENCRYPT_THEN_MAC\", //no-check-names\n#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */\n#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)\n    \"SSL_EXTENDED_MASTER_SECRET\", //no-check-names\n#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */\n#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)\n    \"SSL_KEEP_PEER_CERTIFICATE\", //no-check-names\n#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */\n#if defined(MBEDTLS_SSL_RENEGOTIATION)\n    \"SSL_RENEGOTIATION\", //no-check-names\n#endif /* MBEDTLS_SSL_RENEGOTIATION */\n#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)\n    \"SSL_MAX_FRAGMENT_LENGTH\", //no-check-names\n#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */\n#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT)\n    \"SSL_RECORD_SIZE_LIMIT\", //no-check-names\n#endif /* MBEDTLS_SSL_RECORD_SIZE_LIMIT */\n#if defined(MBEDTLS_SSL_PROTO_TLS1_2)\n    \"SSL_PROTO_TLS1_2\", //no-check-names\n#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */\n#if defined(MBEDTLS_SSL_PROTO_TLS1_3)\n    \"SSL_PROTO_TLS1_3\", //no-check-names\n#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */\n#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE)\n    \"SSL_TLS1_3_COMPATIBILITY_MODE\", //no-check-names\n#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */\n#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED)\n    \"SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED\", //no-check-names\n#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED */\n#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED)\n    \"SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED\", //no-check-names\n#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED */\n#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED)\n    \"SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED\", //no-check-names\n#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED */\n#if defined(MBEDTLS_SSL_EARLY_DATA)\n    \"SSL_EARLY_DATA\", //no-check-names\n#endif /* MBEDTLS_SSL_EARLY_DATA */\n#if defined(MBEDTLS_SSL_PROTO_DTLS)\n    \"SSL_PROTO_DTLS\", //no-check-names\n#endif /* MBEDTLS_SSL_PROTO_DTLS */\n#if defined(MBEDTLS_SSL_ALPN)\n    \"SSL_ALPN\", //no-check-names\n#endif /* MBEDTLS_SSL_ALPN */\n#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)\n    \"SSL_DTLS_ANTI_REPLAY\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */\n#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)\n    \"SSL_DTLS_HELLO_VERIFY\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */\n#if defined(MBEDTLS_SSL_DTLS_SRTP)\n    \"SSL_DTLS_SRTP\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_SRTP */\n#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE)\n    \"SSL_DTLS_CLIENT_PORT_REUSE\", //no-check-names\n#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */\n#if defined(MBEDTLS_SSL_SESSION_TICKETS)\n    \"SSL_SESSION_TICKETS\", //no-check-names\n#endif /* MBEDTLS_SSL_SESSION_TICKETS */\n#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)\n    \"SSL_SERVER_NAME_INDICATION\", //no-check-names\n#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */\n#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)\n    \"SSL_VARIABLE_BUFFER_LENGTH\", //no-check-names\n#endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */\n#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN)\n    \"TEST_CONSTANT_FLOW_MEMSAN\", //no-check-names\n#endif /* MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN */\n#if defined(MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND)\n    \"TEST_CONSTANT_FLOW_VALGRIND\", //no-check-names\n#endif /* MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND */\n#if defined(MBEDTLS_TEST_HOOKS)\n    \"TEST_HOOKS\", //no-check-names\n#endif /* MBEDTLS_TEST_HOOKS */\n#if defined(MBEDTLS_THREADING_ALT)\n    \"THREADING_ALT\", //no-check-names\n#endif /* MBEDTLS_THREADING_ALT */\n#if defined(MBEDTLS_THREADING_PTHREAD)\n    \"THREADING_PTHREAD\", //no-check-names\n#endif /* MBEDTLS_THREADING_PTHREAD */\n#if defined(MBEDTLS_USE_PSA_CRYPTO)\n    \"USE_PSA_CRYPTO\", //no-check-names\n#endif /* MBEDTLS_USE_PSA_CRYPTO */\n#if defined(MBEDTLS_PSA_CRYPTO_CONFIG)\n    \"PSA_CRYPTO_CONFIG\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_CONFIG */\n#if defined(MBEDTLS_VERSION_FEATURES)\n    \"VERSION_FEATURES\", //no-check-names\n#endif /* MBEDTLS_VERSION_FEATURES */\n#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)\n    \"X509_TRUSTED_CERTIFICATE_CALLBACK\", //no-check-names\n#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */\n#if defined(MBEDTLS_X509_REMOVE_INFO)\n    \"X509_REMOVE_INFO\", //no-check-names\n#endif /* MBEDTLS_X509_REMOVE_INFO */\n#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)\n    \"X509_RSASSA_PSS_SUPPORT\", //no-check-names\n#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */\n#if defined(MBEDTLS_AESNI_C)\n    \"AESNI_C\", //no-check-names\n#endif /* MBEDTLS_AESNI_C */\n#if defined(MBEDTLS_AESCE_C)\n    \"AESCE_C\", //no-check-names\n#endif /* MBEDTLS_AESCE_C */\n#if defined(MBEDTLS_AES_C)\n    \"AES_C\", //no-check-names\n#endif /* MBEDTLS_AES_C */\n#if defined(MBEDTLS_ASN1_PARSE_C)\n    \"ASN1_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_ASN1_PARSE_C */\n#if defined(MBEDTLS_ASN1_WRITE_C)\n    \"ASN1_WRITE_C\", //no-check-names\n#endif /* MBEDTLS_ASN1_WRITE_C */\n#if defined(MBEDTLS_BASE64_C)\n    \"BASE64_C\", //no-check-names\n#endif /* MBEDTLS_BASE64_C */\n#if defined(MBEDTLS_BIGNUM_C)\n    \"BIGNUM_C\", //no-check-names\n#endif /* MBEDTLS_BIGNUM_C */\n#if defined(MBEDTLS_CAMELLIA_C)\n    \"CAMELLIA_C\", //no-check-names\n#endif /* MBEDTLS_CAMELLIA_C */\n#if defined(MBEDTLS_ARIA_C)\n    \"ARIA_C\", //no-check-names\n#endif /* MBEDTLS_ARIA_C */\n#if defined(MBEDTLS_CCM_C)\n    \"CCM_C\", //no-check-names\n#endif /* MBEDTLS_CCM_C */\n#if defined(MBEDTLS_CHACHA20_C)\n    \"CHACHA20_C\", //no-check-names\n#endif /* MBEDTLS_CHACHA20_C */\n#if defined(MBEDTLS_CHACHAPOLY_C)\n    \"CHACHAPOLY_C\", //no-check-names\n#endif /* MBEDTLS_CHACHAPOLY_C */\n#if defined(MBEDTLS_CIPHER_C)\n    \"CIPHER_C\", //no-check-names\n#endif /* MBEDTLS_CIPHER_C */\n#if defined(MBEDTLS_CMAC_C)\n    \"CMAC_C\", //no-check-names\n#endif /* MBEDTLS_CMAC_C */\n#if defined(MBEDTLS_CTR_DRBG_C)\n    \"CTR_DRBG_C\", //no-check-names\n#endif /* MBEDTLS_CTR_DRBG_C */\n#if defined(MBEDTLS_DEBUG_C)\n    \"DEBUG_C\", //no-check-names\n#endif /* MBEDTLS_DEBUG_C */\n#if defined(MBEDTLS_DES_C)\n    \"DES_C\", //no-check-names\n#endif /* MBEDTLS_DES_C */\n#if defined(MBEDTLS_DHM_C)\n    \"DHM_C\", //no-check-names\n#endif /* MBEDTLS_DHM_C */\n#if defined(MBEDTLS_ECDH_C)\n    \"ECDH_C\", //no-check-names\n#endif /* MBEDTLS_ECDH_C */\n#if defined(MBEDTLS_ECDSA_C)\n    \"ECDSA_C\", //no-check-names\n#endif /* MBEDTLS_ECDSA_C */\n#if defined(MBEDTLS_ECJPAKE_C)\n    \"ECJPAKE_C\", //no-check-names\n#endif /* MBEDTLS_ECJPAKE_C */\n#if defined(MBEDTLS_ECP_C)\n    \"ECP_C\", //no-check-names\n#endif /* MBEDTLS_ECP_C */\n#if defined(MBEDTLS_ENTROPY_C)\n    \"ENTROPY_C\", //no-check-names\n#endif /* MBEDTLS_ENTROPY_C */\n#if defined(MBEDTLS_ERROR_C)\n    \"ERROR_C\", //no-check-names\n#endif /* MBEDTLS_ERROR_C */\n#if defined(MBEDTLS_GCM_C)\n    \"GCM_C\", //no-check-names\n#endif /* MBEDTLS_GCM_C */\n#if defined(MBEDTLS_HKDF_C)\n    \"HKDF_C\", //no-check-names\n#endif /* MBEDTLS_HKDF_C */\n#if defined(MBEDTLS_HMAC_DRBG_C)\n    \"HMAC_DRBG_C\", //no-check-names\n#endif /* MBEDTLS_HMAC_DRBG_C */\n#if defined(MBEDTLS_LMS_C)\n    \"LMS_C\", //no-check-names\n#endif /* MBEDTLS_LMS_C */\n#if defined(MBEDTLS_LMS_PRIVATE)\n    \"LMS_PRIVATE\", //no-check-names\n#endif /* MBEDTLS_LMS_PRIVATE */\n#if defined(MBEDTLS_NIST_KW_C)\n    \"NIST_KW_C\", //no-check-names\n#endif /* MBEDTLS_NIST_KW_C */\n#if defined(MBEDTLS_MD_C)\n    \"MD_C\", //no-check-names\n#endif /* MBEDTLS_MD_C */\n#if defined(MBEDTLS_MD5_C)\n    \"MD5_C\", //no-check-names\n#endif /* MBEDTLS_MD5_C */\n#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)\n    \"MEMORY_BUFFER_ALLOC_C\", //no-check-names\n#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */\n#if defined(MBEDTLS_NET_C)\n    \"NET_C\", //no-check-names\n#endif /* MBEDTLS_NET_C */\n#if defined(MBEDTLS_OID_C)\n    \"OID_C\", //no-check-names\n#endif /* MBEDTLS_OID_C */\n#if defined(MBEDTLS_PADLOCK_C)\n    \"PADLOCK_C\", //no-check-names\n#endif /* MBEDTLS_PADLOCK_C */\n#if defined(MBEDTLS_PEM_PARSE_C)\n    \"PEM_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_PEM_PARSE_C */\n#if defined(MBEDTLS_PEM_WRITE_C)\n    \"PEM_WRITE_C\", //no-check-names\n#endif /* MBEDTLS_PEM_WRITE_C */\n#if defined(MBEDTLS_PK_C)\n    \"PK_C\", //no-check-names\n#endif /* MBEDTLS_PK_C */\n#if defined(MBEDTLS_PK_PARSE_C)\n    \"PK_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_PK_PARSE_C */\n#if defined(MBEDTLS_PK_WRITE_C)\n    \"PK_WRITE_C\", //no-check-names\n#endif /* MBEDTLS_PK_WRITE_C */\n#if defined(MBEDTLS_PKCS5_C)\n    \"PKCS5_C\", //no-check-names\n#endif /* MBEDTLS_PKCS5_C */\n#if defined(MBEDTLS_PKCS7_C)\n    \"PKCS7_C\", //no-check-names\n#endif /* MBEDTLS_PKCS7_C */\n#if defined(MBEDTLS_PKCS12_C)\n    \"PKCS12_C\", //no-check-names\n#endif /* MBEDTLS_PKCS12_C */\n#if defined(MBEDTLS_PLATFORM_C)\n    \"PLATFORM_C\", //no-check-names\n#endif /* MBEDTLS_PLATFORM_C */\n#if defined(MBEDTLS_POLY1305_C)\n    \"POLY1305_C\", //no-check-names\n#endif /* MBEDTLS_POLY1305_C */\n#if defined(MBEDTLS_PSA_CRYPTO_C)\n    \"PSA_CRYPTO_C\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_C */\n#if defined(MBEDTLS_PSA_CRYPTO_SE_C)\n    \"PSA_CRYPTO_SE_C\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_SE_C */\n#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)\n    \"PSA_CRYPTO_STORAGE_C\", //no-check-names\n#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */\n#if defined(MBEDTLS_PSA_ITS_FILE_C)\n    \"PSA_ITS_FILE_C\", //no-check-names\n#endif /* MBEDTLS_PSA_ITS_FILE_C */\n#if defined(MBEDTLS_RIPEMD160_C)\n    \"RIPEMD160_C\", //no-check-names\n#endif /* MBEDTLS_RIPEMD160_C */\n#if defined(MBEDTLS_RSA_C)\n    \"RSA_C\", //no-check-names\n#endif /* MBEDTLS_RSA_C */\n#if defined(MBEDTLS_SHA1_C)\n    \"SHA1_C\", //no-check-names\n#endif /* MBEDTLS_SHA1_C */\n#if defined(MBEDTLS_SHA224_C)\n    \"SHA224_C\", //no-check-names\n#endif /* MBEDTLS_SHA224_C */\n#if defined(MBEDTLS_SHA256_C)\n    \"SHA256_C\", //no-check-names\n#endif /* MBEDTLS_SHA256_C */\n#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT)\n    \"SHA256_USE_A64_CRYPTO_IF_PRESENT\", //no-check-names\n#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT */\n#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY)\n    \"SHA256_USE_A64_CRYPTO_ONLY\", //no-check-names\n#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY */\n#if defined(MBEDTLS_SHA384_C)\n    \"SHA384_C\", //no-check-names\n#endif /* MBEDTLS_SHA384_C */\n#if defined(MBEDTLS_SHA512_C)\n    \"SHA512_C\", //no-check-names\n#endif /* MBEDTLS_SHA512_C */\n#if defined(MBEDTLS_SHA3_C)\n    \"SHA3_C\", //no-check-names\n#endif /* MBEDTLS_SHA3_C */\n#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT)\n    \"SHA512_USE_A64_CRYPTO_IF_PRESENT\", //no-check-names\n#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT */\n#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY)\n    \"SHA512_USE_A64_CRYPTO_ONLY\", //no-check-names\n#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */\n#if defined(MBEDTLS_SSL_CACHE_C)\n    \"SSL_CACHE_C\", //no-check-names\n#endif /* MBEDTLS_SSL_CACHE_C */\n#if defined(MBEDTLS_SSL_COOKIE_C)\n    \"SSL_COOKIE_C\", //no-check-names\n#endif /* MBEDTLS_SSL_COOKIE_C */\n#if defined(MBEDTLS_SSL_TICKET_C)\n    \"SSL_TICKET_C\", //no-check-names\n#endif /* MBEDTLS_SSL_TICKET_C */\n#if defined(MBEDTLS_SSL_CLI_C)\n    \"SSL_CLI_C\", //no-check-names\n#endif /* MBEDTLS_SSL_CLI_C */\n#if defined(MBEDTLS_SSL_SRV_C)\n    \"SSL_SRV_C\", //no-check-names\n#endif /* MBEDTLS_SSL_SRV_C */\n#if defined(MBEDTLS_SSL_TLS_C)\n    \"SSL_TLS_C\", //no-check-names\n#endif /* MBEDTLS_SSL_TLS_C */\n#if defined(MBEDTLS_THREADING_C)\n    \"THREADING_C\", //no-check-names\n#endif /* MBEDTLS_THREADING_C */\n#if defined(MBEDTLS_TIMING_C)\n    \"TIMING_C\", //no-check-names\n#endif /* MBEDTLS_TIMING_C */\n#if defined(MBEDTLS_VERSION_C)\n    \"VERSION_C\", //no-check-names\n#endif /* MBEDTLS_VERSION_C */\n#if defined(MBEDTLS_X509_USE_C)\n    \"X509_USE_C\", //no-check-names\n#endif /* MBEDTLS_X509_USE_C */\n#if defined(MBEDTLS_X509_CRT_PARSE_C)\n    \"X509_CRT_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CRT_PARSE_C */\n#if defined(MBEDTLS_X509_CRL_PARSE_C)\n    \"X509_CRL_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CRL_PARSE_C */\n#if defined(MBEDTLS_X509_CSR_PARSE_C)\n    \"X509_CSR_PARSE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CSR_PARSE_C */\n#if defined(MBEDTLS_X509_CREATE_C)\n    \"X509_CREATE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CREATE_C */\n#if defined(MBEDTLS_X509_CRT_WRITE_C)\n    \"X509_CRT_WRITE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CRT_WRITE_C */\n#if defined(MBEDTLS_X509_CSR_WRITE_C)\n    \"X509_CSR_WRITE_C\", //no-check-names\n#endif /* MBEDTLS_X509_CSR_WRITE_C */\n#endif /* MBEDTLS_VERSION_FEATURES */\n    NULL\n};\n\nint mbedtls_version_check_feature(const char *feature)\n{\n    const char * const *idx = features;\n\n    if (*idx == NULL) {\n        return -2;\n    }\n\n    if (feature == NULL) {\n        return -1;\n    }\n\n    if (strncmp(feature, \"MBEDTLS_\", 8)) {\n        return -1;\n    }\n\n    feature += 8;\n\n    while (*idx != NULL) {\n        if (!strcmp(*idx, feature)) {\n            return 0;\n        }\n        idx++;\n    }\n    return -1;\n}\n\n#endif /* MBEDTLS_VERSION_C */\n"
  },
  {
    "path": "Code/build/esp-idf/mqtt/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/newlib/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\nif(NOT CMAKE_INSTALL_LOCAL_ONLY)\n  # Include the install script for the subdirectory.\n  include(\"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/port/cmake_install.cmake\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/newlib/port/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/nvs_flash/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/openthread/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/partition_table/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/partition_table/partition-table-flash_args.in",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x8000 partition_table/partition-table.bin"
  },
  {
    "path": "Code/build/esp-idf/perfmon/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/protobuf-c/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/protocomm/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/pthread/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/sdmmc/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/soc/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/spi_flash/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/spiffs/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/st7789/cmake_install.cmake",
    "content": "# Install script for directory: C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/tcp_transport/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/touch_element/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/ulp/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/unity/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/usb/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/vfs/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/wear_levelling/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/wifi_provisioning/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/wpa_supplicant/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/esp-idf/xtensa/cmake_install.cmake",
    "content": "# Install script for directory: C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\n\n# Set the install prefix\nif(NOT DEFINED CMAKE_INSTALL_PREFIX)\n  set(CMAKE_INSTALL_PREFIX \"C:/Program Files (x86)/main\")\nendif()\nstring(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")\n\n# Set the install configuration name.\nif(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)\n  if(BUILD_TYPE)\n    string(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n           CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n  else()\n    set(CMAKE_INSTALL_CONFIG_NAME \"\")\n  endif()\n  message(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\nendif()\n\n# Set the component getting installed.\nif(NOT CMAKE_INSTALL_COMPONENT)\n  if(COMPONENT)\n    message(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n    set(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n  else()\n    set(CMAKE_INSTALL_COMPONENT)\n  endif()\nendif()\n\n# Is this installation the result of a crosscompile?\nif(NOT DEFINED CMAKE_CROSSCOMPILING)\n  set(CMAKE_CROSSCOMPILING \"TRUE\")\nendif()\n\n# Set default install directory permissions.\nif(NOT DEFINED CMAKE_OBJDUMP)\n  set(CMAKE_OBJDUMP \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe\")\nendif()\n\n"
  },
  {
    "path": "Code/build/flash_app_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x10000 main.bin\n"
  },
  {
    "path": "Code/build/flash_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin\n0x10000 main.bin\n0x8000 partition_table/partition-table.bin\n0x110000 storage.bin\n"
  },
  {
    "path": "Code/build/flash_args.in",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin\n0x10000 $<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin\n0x8000 partition_table/partition-table.bin\n0x110000 storage.bin"
  },
  {
    "path": "Code/build/flash_bootloader_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin\n"
  },
  {
    "path": "Code/build/flash_project_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x0 bootloader/bootloader.bin\n0x10000 main.bin\n0x8000 partition_table/partition-table.bin\n0x110000 storage.bin\n"
  },
  {
    "path": "Code/build/flasher_args.json",
    "content": "{\n    \"write_flash_args\" : [ \"--flash_mode\", \"dio\",\n                           \"--flash_size\", \"2MB\",\n                           \"--flash_freq\", \"80m\" ],\n    \"flash_settings\" : {\n        \"flash_mode\": \"dio\",\n        \"flash_size\": \"2MB\",\n        \"flash_freq\": \"80m\"\n    },\n    \"flash_files\" : {\n        \"0x0\" : \"bootloader/bootloader.bin\",\n        \"0x10000\" : \"main.bin\",\n        \"0x8000\" : \"partition_table/partition-table.bin\",\n        \"0x110000\" : \"storage.bin\"\n    },\n    \"bootloader\" : { \"offset\" : \"0x0\", \"file\" : \"bootloader/bootloader.bin\", \"encrypted\" : \"false\" },\n    \"app\" : { \"offset\" : \"0x10000\", \"file\" : \"main.bin\", \"encrypted\" : \"false\" },\n    \"partition-table\" : { \"offset\" : \"0x8000\", \"file\" : \"partition_table/partition-table.bin\", \"encrypted\" : \"false\" },\n    \"storage\" : { \"offset\" : \"0x110000\", \"file\" : \"storage.bin\", \"encrypted\" : \"false\" },\n    \"extra_esptool_args\" : {\n        \"after\"  : \"hard_reset\",\n        \"before\" : \"default_reset\",\n        \"stub\"   : true,\n        \"chip\"   : \"esp32s3\"\n    }\n}\n"
  },
  {
    "path": "Code/build/kconfigs.in",
    "content": "source \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Kconfig\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/Kconfig\""
  },
  {
    "path": "Code/build/kconfigs_projbuild.in",
    "content": "source \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild\"\nsource \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild\"\nsource \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/Kconfig.projbuild\""
  },
  {
    "path": "Code/build/ldgen_libraries",
    "content": "C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/libxtensa.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/libesp_ringbuf.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/libefuse.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/libdriver.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/libesp_pm.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/libmbedtls.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/libesp_app_format.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/libbootloader_support.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/libesp_partition.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/libapp_update.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/libesp_mm.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/libspi_flash.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/libpthread.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/libesp_system.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/libesp_rom.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/libhal.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/liblog.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/libheap.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/libsoc.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/libesp_hw_support.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/libfreertos.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/libnewlib.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/libcxx.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/libesp_common.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/libesp_timer.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/libapp_trace.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/libesp_event.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/libnvs_flash.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/libesp_phy.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/libvfs.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/liblwip.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/libesp_netif.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/libwpa_supplicant.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/libesp_coex.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/libesp_wifi.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/libunity.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/libcmock.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/libconsole.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/libhttp_parser.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/libesp-tls.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/libesp_adc.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/libesp_eth.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/libesp_gdbstub.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/libesp_hid.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/libtcp_transport.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/libesp_http_client.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/libesp_http_server.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/libesp_https_ota.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/libesp_lcd.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/libprotobuf-c.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/libprotocomm.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/libespcoredump.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/libwear_levelling.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/libsdmmc.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/libfatfs.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/libjson.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/libmqtt.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/libperfmon.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/libspiffs.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/libtouch_element.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/libulp.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/libusb.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/libwifi_provisioning.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/libmain.a\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/libst7789.a\n"
  },
  {
    "path": "Code/build/ldgen_libraries.in",
    "content": "$<TARGET_FILE:__idf_xtensa>\n$<TARGET_FILE:__idf_esp_ringbuf>\n$<TARGET_FILE:__idf_efuse>\n$<TARGET_FILE:__idf_driver>\n$<TARGET_FILE:__idf_esp_pm>\n$<TARGET_FILE:__idf_mbedtls>\n$<TARGET_FILE:__idf_esp_app_format>\n$<TARGET_FILE:__idf_bootloader_support>\n$<TARGET_FILE:__idf_esp_partition>\n$<TARGET_FILE:__idf_app_update>\n$<TARGET_FILE:__idf_esp_mm>\n$<TARGET_FILE:__idf_spi_flash>\n$<TARGET_FILE:__idf_pthread>\n$<TARGET_FILE:__idf_esp_system>\n$<TARGET_FILE:__idf_esp_rom>\n$<TARGET_FILE:__idf_hal>\n$<TARGET_FILE:__idf_log>\n$<TARGET_FILE:__idf_heap>\n$<TARGET_FILE:__idf_soc>\n$<TARGET_FILE:__idf_esp_hw_support>\n$<TARGET_FILE:__idf_freertos>\n$<TARGET_FILE:__idf_newlib>\n$<TARGET_FILE:__idf_cxx>\n$<TARGET_FILE:__idf_esp_common>\n$<TARGET_FILE:__idf_esp_timer>\n$<TARGET_FILE:__idf_app_trace>\n$<TARGET_FILE:__idf_esp_event>\n$<TARGET_FILE:__idf_nvs_flash>\n$<TARGET_FILE:__idf_esp_phy>\n$<TARGET_FILE:__idf_vfs>\n$<TARGET_FILE:__idf_lwip>\n$<TARGET_FILE:__idf_esp_netif>\n$<TARGET_FILE:__idf_wpa_supplicant>\n$<TARGET_FILE:__idf_esp_coex>\n$<TARGET_FILE:__idf_esp_wifi>\n$<TARGET_FILE:__idf_unity>\n$<TARGET_FILE:__idf_cmock>\n$<TARGET_FILE:__idf_console>\n$<TARGET_FILE:__idf_http_parser>\n$<TARGET_FILE:__idf_esp-tls>\n$<TARGET_FILE:__idf_esp_adc>\n$<TARGET_FILE:__idf_esp_eth>\n$<TARGET_FILE:__idf_esp_gdbstub>\n$<TARGET_FILE:__idf_esp_hid>\n$<TARGET_FILE:__idf_tcp_transport>\n$<TARGET_FILE:__idf_esp_http_client>\n$<TARGET_FILE:__idf_esp_http_server>\n$<TARGET_FILE:__idf_esp_https_ota>\n$<TARGET_FILE:__idf_esp_lcd>\n$<TARGET_FILE:__idf_protobuf-c>\n$<TARGET_FILE:__idf_protocomm>\n$<TARGET_FILE:__idf_esp_local_ctrl>\n$<TARGET_FILE:__idf_espcoredump>\n$<TARGET_FILE:__idf_wear_levelling>\n$<TARGET_FILE:__idf_sdmmc>\n$<TARGET_FILE:__idf_fatfs>\n$<TARGET_FILE:__idf_json>\n$<TARGET_FILE:__idf_mqtt>\n$<TARGET_FILE:__idf_perfmon>\n$<TARGET_FILE:__idf_spiffs>\n$<TARGET_FILE:__idf_touch_element>\n$<TARGET_FILE:__idf_ulp>\n$<TARGET_FILE:__idf_usb>\n$<TARGET_FILE:__idf_wifi_provisioning>\n$<TARGET_FILE:__idf_main>\n$<TARGET_FILE:__idf_st7789>"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10132",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10376",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10440",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10660",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10832",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10844",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_10980",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_11256",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_11492",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_11560",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_12028",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_12084",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_12260",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_12952",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13100",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13132",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13340",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13432",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13596",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13632",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13704",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_13828",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_1384",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_1404",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_1420",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14284",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14312",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14880",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14912",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14948",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14980",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_14992",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_15100",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_15152",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_15512",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_16488",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_16720",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_16876",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_16900",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_17044",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_17348",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_17644",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_17756",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_17816",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_18080",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_18176",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_18472",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_18504",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19192",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19204",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19216",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19528",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19904",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_19976",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20000",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20252",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20364",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20664",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20844",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_20952",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21036",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21048",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21216",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21308",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21780",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21804",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21872",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_21972",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22056",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22124",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_2224",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22272",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22728",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22764",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_22776",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_23396",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_23812",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_2464",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_24736",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_24812",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25180",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25200",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25300",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25312",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_2556",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25620",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_25952",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26108",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26228",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26264",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26560",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26564",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26596",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26664",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26688",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_26800",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27332",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27384",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27636",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27660",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27700",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27864",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27908",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_27932",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_2800",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28140",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28188",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28236",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_2824",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28272",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28296",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28436",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28548",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28572",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28728",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_28924",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29056",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29272",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29292",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29332",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29424",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29612",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29648",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29792",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_29964",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_30000",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_30196",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_30212",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_30316",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_3044",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_30904",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_31096",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_31408",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_31920",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_31952",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_32244",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_3232",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_32756",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_33540",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_34376",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_344",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_34440",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_35296",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_35496",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_35620",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_35860",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_3596",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_35984",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36252",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36256",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36332",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36348",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36672",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_36728",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_37116",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_37528",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38004",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38172",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38204",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38216",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38248",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_3852",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38536",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38616",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38648",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_38960",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39020",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39456",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39468",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39624",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39712",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_39912",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4092",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4172",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_42000",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_42020",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_42092",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_42200",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_42616",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_43172",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_43212",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_43892",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_43956",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_44004",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4428",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_44308",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_44356",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4448",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4480",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45104",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4536",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45360",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45504",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4560",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45608",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45780",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45864",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_45872",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46248",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46400",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46420",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46436",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46652",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46752",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_46848",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47000",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47132",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47416",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47464",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47736",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47824",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_47892",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48160",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48164",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_4824",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48316",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48536",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48684",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_48832",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49108",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49116",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49232",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49396",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49544",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49728",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49744",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49764",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_49832",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50224",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50228",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50252",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50328",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50376",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50444",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50520",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50532",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50572",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50632",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50844",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_50852",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51012",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51128",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51136",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51260",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51632",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51872",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51876",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51900",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_51992",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52080",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52272",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52560",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52684",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52700",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52732",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_52876",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_53012",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_53044",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_53320",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_53324",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_54652",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55236",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_5524",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55240",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55368",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55484",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55560",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55924",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_55932",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_6236",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_6252",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_6284",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_6588",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_6908",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_7724",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_8328",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_8472",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_8980",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9156",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9328",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9388",
    "content": "CMake Error at run_serial_tool.cmake:66 (message):\n  \n  python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3\n  failed.\n\n\n\n"
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9440",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_952",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9608",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_968",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9740",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stderr_output_9904",
    "content": ""
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10132",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting....\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 468.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540129...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c899... (18 %)\r\r\nWriting at 0x0004278d... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x00054809... (30 %)\r\r\nWriting at 0x0005aad0... (33 %)\r\r\nWriting at 0x00060a16... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2f9... (42 %)\r\r\nWriting at 0x0007130d... (45 %)\r\r\nWriting at 0x00076284... (48 %)\r\r\nWriting at 0x0007b3ca... (51 %)\r\r\nWriting at 0x0008053f... (54 %)\r\r\nWriting at 0x0008591d... (57 %)\r\r\nWriting at 0x0008ad11... (60 %)\r\r\nWriting at 0x00090b27... (63 %)\r\r\nWriting at 0x00095f4a... (66 %)\r\r\nWriting at 0x0009b64a... (69 %)\r\r\nWriting at 0x000a0ff7... (72 %)\r\r\nWriting at 0x000a6719... (75 %)\r\r\nWriting at 0x000ac2b3... (78 %)\r\r\nWriting at 0x000b24e9... (81 %)\r\r\nWriting at 0x000b7d2d... (84 %)\r\r\nWriting at 0x000bd422... (87 %)\r\r\nWriting at 0x000c60f0... (90 %)\r\r\nWriting at 0x000ce149... (93 %)\r\r\nWriting at 0x000d4053... (96 %)\r\r\nWriting at 0x000da0a4... (100 %)\r\r\nWrote 849456 bytes (540129 compressed) at 0x00010000 in 5.6 seconds (effective 1204.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1650.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10376",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...............\r\r\n\r\r\nA serial exception error occurred: Cannot configure port, something went wrong. Original message: PermissionError(13, 'The device does not recognize the command.', None, 22)\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10440",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 467.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540110...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca40... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x00034796... (15 %)\r\r\nWriting at 0x0003c893... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004eacf... (27 %)\r\r\nWriting at 0x00054882... (30 %)\r\r\nWriting at 0x0005ab50... (33 %)\r\r\nWriting at 0x00060a95... (36 %)\r\r\nWriting at 0x000665e9... (39 %)\r\r\nWriting at 0x0006c362... (42 %)\r\r\nWriting at 0x0007137f... (45 %)\r\r\nWriting at 0x00076300... (48 %)\r\r\nWriting at 0x0007b441... (51 %)\r\r\nWriting at 0x000805ce... (54 %)\r\r\nWriting at 0x0008598f... (57 %)\r\r\nWriting at 0x0008ad8c... (60 %)\r\r\nWriting at 0x00090ba0... (63 %)\r\r\nWriting at 0x00095ff9... (66 %)\r\r\nWriting at 0x0009b6bd... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a6796... (75 %)\r\r\nWriting at 0x000ac32b... (78 %)\r\r\nWriting at 0x000b2564... (81 %)\r\r\nWriting at 0x000b7da9... (84 %)\r\r\nWriting at 0x000bd498... (87 %)\r\r\nWriting at 0x000c616d... (90 %)\r\r\nWriting at 0x000ce1c5... (93 %)\r\r\nWriting at 0x000d40d0... (96 %)\r\r\nWriting at 0x000da121... (100 %)\r\r\nWrote 849552 bytes (540110 compressed) at 0x00010000 in 5.7 seconds (effective 1192.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.9 seconds (effective 1613.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10660",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540108...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaf... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0ac... (12 %)\r\r\nWriting at 0x000347d5... (15 %)\r\r\nWriting at 0x0003c8d7... (18 %)\r\r\nWriting at 0x0004280a... (21 %)\r\r\nWriting at 0x00048b35... (24 %)\r\r\nWriting at 0x0004ea61... (27 %)\r\r\nWriting at 0x00054834... (30 %)\r\r\nWriting at 0x0005aad8... (33 %)\r\r\nWriting at 0x00060a93... (36 %)\r\r\nWriting at 0x00066582... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x00071317... (45 %)\r\r\nWriting at 0x000762ac... (48 %)\r\r\nWriting at 0x0007b401... (51 %)\r\r\nWriting at 0x00080594... (54 %)\r\r\nWriting at 0x0008593d... (57 %)\r\r\nWriting at 0x0008ad94... (60 %)\r\r\nWriting at 0x00090b64... (63 %)\r\r\nWriting at 0x00095fbf... (66 %)\r\r\nWriting at 0x0009b666... (69 %)\r\r\nWriting at 0x000a1028... (72 %)\r\r\nWriting at 0x000a676f... (75 %)\r\r\nWriting at 0x000ac2e8... (78 %)\r\r\nWriting at 0x000b2531... (81 %)\r\r\nWriting at 0x000b7d62... (84 %)\r\r\nWriting at 0x000bd42c... (87 %)\r\r\nWriting at 0x000c611a... (90 %)\r\r\nWriting at 0x000ce17f... (93 %)\r\r\nWriting at 0x000d4071... (96 %)\r\r\nWriting at 0x000da0b7... (100 %)\r\r\nWrote 849456 bytes (540108 compressed) at 0x00010000 in 5.6 seconds (effective 1216.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1687.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10832",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 475.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540235...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa9... (24 %)\r\r\nWriting at 0x0004ea28... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f8... (36 %)\r\r\nWriting at 0x00066553... (39 %)\r\r\nWriting at 0x0006c2ec... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ba... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff6... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540235 compressed) at 0x00010000 in 5.7 seconds (effective 1191.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.8 seconds (effective 1634.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10844",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 540086...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca44... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c04e... (12 %)\r\r\nWriting at 0x000347ae... (15 %)\r\r\nWriting at 0x0003c88e... (18 %)\r\r\nWriting at 0x0004276c... (21 %)\r\r\nWriting at 0x00048a95... (24 %)\r\r\nWriting at 0x0004e966... (27 %)\r\r\nWriting at 0x00054700... (30 %)\r\r\nWriting at 0x0005a9ce... (33 %)\r\r\nWriting at 0x00060919... (36 %)\r\r\nWriting at 0x0006647d... (39 %)\r\r\nWriting at 0x0006c1ff... (42 %)\r\r\nWriting at 0x00071216... (45 %)\r\r\nWriting at 0x000761a0... (48 %)\r\r\nWriting at 0x0007b2e5... (51 %)\r\r\nWriting at 0x00080471... (54 %)\r\r\nWriting at 0x00085840... (57 %)\r\r\nWriting at 0x0008ac3d... (60 %)\r\r\nWriting at 0x00090a3a... (63 %)\r\r\nWriting at 0x00095e8e... (66 %)\r\r\nWriting at 0x0009b555... (69 %)\r\r\nWriting at 0x000a0eff... (72 %)\r\r\nWriting at 0x000a6623... (75 %)\r\r\nWriting at 0x000ac1be... (78 %)\r\r\nWriting at 0x000b23f2... (81 %)\r\r\nWriting at 0x000b7c3d... (84 %)\r\r\nWriting at 0x000bd337... (87 %)\r\r\nWriting at 0x000c6004... (90 %)\r\r\nWriting at 0x000ce060... (93 %)\r\r\nWriting at 0x000d3f82... (96 %)\r\r\nWriting at 0x000d9fb9... (100 %)\r\r\nWrote 849168 bytes (540086 compressed) at 0x00010000 in 5.9 seconds (effective 1144.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1569.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_10980",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540132...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f2... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c891... (18 %)\r\r\nWriting at 0x00042791... (21 %)\r\r\nWriting at 0x00048ac8... (24 %)\r\r\nWriting at 0x0004eab0... (27 %)\r\r\nWriting at 0x00054875... (30 %)\r\r\nWriting at 0x0005ab31... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c3... (39 %)\r\r\nWriting at 0x0006c34b... (42 %)\r\r\nWriting at 0x00071374... (45 %)\r\r\nWriting at 0x000762ea... (48 %)\r\r\nWriting at 0x0007b435... (51 %)\r\r\nWriting at 0x000805bb... (54 %)\r\r\nWriting at 0x00085985... (57 %)\r\r\nWriting at 0x0008ad88... (60 %)\r\r\nWriting at 0x00090b93... (63 %)\r\r\nWriting at 0x00095fd2... (66 %)\r\r\nWriting at 0x0009b6ae... (69 %)\r\r\nWriting at 0x000a105f... (72 %)\r\r\nWriting at 0x000a6781... (75 %)\r\r\nWriting at 0x000ac318... (78 %)\r\r\nWriting at 0x000b254c... (81 %)\r\r\nWriting at 0x000b7d96... (84 %)\r\r\nWriting at 0x000bd48b... (87 %)\r\r\nWriting at 0x000c615c... (90 %)\r\r\nWriting at 0x000ce1b1... (93 %)\r\r\nWriting at 0x000d40b6... (96 %)\r\r\nWriting at 0x000da10b... (100 %)\r\r\nWrote 849552 bytes (540132 compressed) at 0x00010000 in 5.7 seconds (effective 1185.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1540.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_11256",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM14 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM14\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:b4\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.2 seconds (effective 764.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c04c... (12 %)\r\r\nWriting at 0x0003479e... (15 %)\r\r\nWriting at 0x0003c88c... (18 %)\r\r\nWriting at 0x00042785... (21 %)\r\r\nWriting at 0x00048ab5... (24 %)\r\r\nWriting at 0x0004e9b7... (27 %)\r\r\nWriting at 0x00054759... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x00060974... (36 %)\r\r\nWriting at 0x000664d8... (39 %)\r\r\nWriting at 0x0006c261... (42 %)\r\r\nWriting at 0x0007126d... (45 %)\r\r\nWriting at 0x000761fe... (48 %)\r\r\nWriting at 0x0007b33a... (51 %)\r\r\nWriting at 0x000804c1... (54 %)\r\r\nWriting at 0x00085887... (57 %)\r\r\nWriting at 0x0008ac7c... (60 %)\r\r\nWriting at 0x00090a96... (63 %)\r\r\nWriting at 0x00095ee8... (66 %)\r\r\nWriting at 0x0009b5b2... (69 %)\r\r\nWriting at 0x000a0f65... (72 %)\r\r\nWriting at 0x000a6682... (75 %)\r\r\nWriting at 0x000ac21c... (78 %)\r\r\nWriting at 0x000b2456... (81 %)\r\r\nWriting at 0x000b7c93... (84 %)\r\r\nWriting at 0x000bd388... (87 %)\r\r\nWriting at 0x000c6058... (90 %)\r\r\nWriting at 0x000ce0b1... (93 %)\r\r\nWriting at 0x000d3fc0... (96 %)\r\r\nWriting at 0x000da009... (100 %)\r\r\nWrote 849264 bytes (540102 compressed) at 0x00010000 in 5.2 seconds (effective 1304.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 663.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.6 seconds (effective 1723.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_11492",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6e0 bytes. Smallest app partition is 0x100000 bytes. 0x30920 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 478.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849632 bytes to 540190...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027594... (9 %)\r\r\nWriting at 0x0002c0e9... (12 %)\r\r\nWriting at 0x0003482e... (15 %)\r\r\nWriting at 0x0003c920... (18 %)\r\r\nWriting at 0x000428ac... (21 %)\r\r\nWriting at 0x00048b91... (24 %)\r\r\nWriting at 0x0004eac4... (27 %)\r\r\nWriting at 0x00054894... (30 %)\r\r\nWriting at 0x0005ab3a... (33 %)\r\r\nWriting at 0x00060aeb... (36 %)\r\r\nWriting at 0x000665d7... (39 %)\r\r\nWriting at 0x0006c34c... (42 %)\r\r\nWriting at 0x00071362... (45 %)\r\r\nWriting at 0x000762f5... (48 %)\r\r\nWriting at 0x0007b44a... (51 %)\r\r\nWriting at 0x000805d7... (54 %)\r\r\nWriting at 0x00085995... (57 %)\r\r\nWriting at 0x0008addd... (60 %)\r\r\nWriting at 0x00090bab... (63 %)\r\r\nWriting at 0x00096014... (66 %)\r\r\nWriting at 0x0009b6bd... (69 %)\r\r\nWriting at 0x000a1073... (72 %)\r\r\nWriting at 0x000a67bc... (75 %)\r\r\nWriting at 0x000ac33a... (78 %)\r\r\nWriting at 0x000b257f... (81 %)\r\r\nWriting at 0x000b7db2... (84 %)\r\r\nWriting at 0x000bd47a... (87 %)\r\r\nWriting at 0x000c6164... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a8... (96 %)\r\r\nWriting at 0x000da0fd... (100 %)\r\r\nWrote 849632 bytes (540190 compressed) at 0x00010000 in 5.7 seconds (effective 1200.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 521.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_11560",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540277...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x00027580... (9 %)\r\r\nWriting at 0x0002c0d0... (12 %)\r\r\nWriting at 0x0003480e... (15 %)\r\r\nWriting at 0x0003c906... (18 %)\r\r\nWriting at 0x0004287f... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004ea9d... (27 %)\r\r\nWriting at 0x0005486a... (30 %)\r\r\nWriting at 0x0005ab22... (33 %)\r\r\nWriting at 0x00060a74... (36 %)\r\r\nWriting at 0x000665bc... (39 %)\r\r\nWriting at 0x0006c345... (42 %)\r\r\nWriting at 0x00071356... (45 %)\r\r\nWriting at 0x000762de... (48 %)\r\r\nWriting at 0x0007b435... (51 %)\r\r\nWriting at 0x000805b7... (54 %)\r\r\nWriting at 0x00085971... (57 %)\r\r\nWriting at 0x0008adb5... (60 %)\r\r\nWriting at 0x00090b82... (63 %)\r\r\nWriting at 0x00095fec... (66 %)\r\r\nWriting at 0x0009b690... (69 %)\r\r\nWriting at 0x000a1040... (72 %)\r\r\nWriting at 0x000a6777... (75 %)\r\r\nWriting at 0x000ac2fc... (78 %)\r\r\nWriting at 0x000b253f... (81 %)\r\r\nWriting at 0x000b7d7e... (84 %)\r\r\nWriting at 0x000bd467... (87 %)\r\r\nWriting at 0x000c6146... (90 %)\r\r\nWriting at 0x000ce198... (93 %)\r\r\nWriting at 0x000d406c... (96 %)\r\r\nWriting at 0x000da0de... (100 %)\r\r\nWrote 849696 bytes (540277 compressed) at 0x00010000 in 5.7 seconds (effective 1188.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 565.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1604.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_12028",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4d0 bytes. Smallest app partition is 0x100000 bytes. 0x30b30 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849104 bytes to 539937...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab4... (6 %)\r\r\nWriting at 0x00027565... (9 %)\r\r\nWriting at 0x0002c0bc... (12 %)\r\r\nWriting at 0x00034812... (15 %)\r\r\nWriting at 0x0003c8fa... (18 %)\r\r\nWriting at 0x00042853... (21 %)\r\r\nWriting at 0x00048b5d... (24 %)\r\r\nWriting at 0x0004ea13... (27 %)\r\r\nWriting at 0x000547d3... (30 %)\r\r\nWriting at 0x0005aaa6... (33 %)\r\r\nWriting at 0x00060ace... (36 %)\r\r\nWriting at 0x00066519... (39 %)\r\r\nWriting at 0x0006c295... (42 %)\r\r\nWriting at 0x000712a9... (45 %)\r\r\nWriting at 0x0007623b... (48 %)\r\r\nWriting at 0x0007b37b... (51 %)\r\r\nWriting at 0x000805b8... (54 %)\r\r\nWriting at 0x000858b4... (57 %)\r\r\nWriting at 0x0008ad1e... (60 %)\r\r\nWriting at 0x00090ad1... (63 %)\r\r\nWriting at 0x00095f46... (66 %)\r\r\nWriting at 0x0009b5f3... (69 %)\r\r\nWriting at 0x000a0f8f... (72 %)\r\r\nWriting at 0x000a6711... (75 %)\r\r\nWriting at 0x000ac25b... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d14... (84 %)\r\r\nWriting at 0x000bd447... (87 %)\r\r\nWriting at 0x000c60a0... (90 %)\r\r\nWriting at 0x000ce10b... (93 %)\r\r\nWriting at 0x000d400a... (96 %)\r\r\nWriting at 0x000da03b... (100 %)\r\r\nWrote 849104 bytes (539937 compressed) at 0x00010000 in 5.6 seconds (effective 1222.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 508.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1713.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_12084",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 512.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540237...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaa... (24 %)\r\r\nWriting at 0x0004ea2c... (27 %)\r\r\nWriting at 0x00054800... (30 %)\r\r\nWriting at 0x0005aa3a... (33 %)\r\r\nWriting at 0x000609f9... (36 %)\r\r\nWriting at 0x00066554... (39 %)\r\r\nWriting at 0x0006c2f0... (42 %)\r\r\nWriting at 0x0007130b... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3bb... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff8... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540237 compressed) at 0x00010000 in 5.8 seconds (effective 1163.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1616.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_12260",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 463.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540131...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca37... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x00034796... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x0004276e... (21 %)\r\r\nWriting at 0x00048aa6... (24 %)\r\r\nWriting at 0x0004eaca... (27 %)\r\r\nWriting at 0x0005487f... (30 %)\r\r\nWriting at 0x0005ab44... (33 %)\r\r\nWriting at 0x00060a82... (36 %)\r\r\nWriting at 0x000665cf... (39 %)\r\r\nWriting at 0x0006c35b... (42 %)\r\r\nWriting at 0x00071373... (45 %)\r\r\nWriting at 0x000762e6... (48 %)\r\r\nWriting at 0x0007b431... (51 %)\r\r\nWriting at 0x000805b7... (54 %)\r\r\nWriting at 0x00085981... (57 %)\r\r\nWriting at 0x0008ad75... (60 %)\r\r\nWriting at 0x00090b8b... (63 %)\r\r\nWriting at 0x00095fca... (66 %)\r\r\nWriting at 0x0009b6aa... (69 %)\r\r\nWriting at 0x000a105a... (72 %)\r\r\nWriting at 0x000a6782... (75 %)\r\r\nWriting at 0x000ac318... (78 %)\r\r\nWriting at 0x000b254c... (81 %)\r\r\nWriting at 0x000b7d92... (84 %)\r\r\nWriting at 0x000bd48b... (87 %)\r\r\nWriting at 0x000c6157... (90 %)\r\r\nWriting at 0x000ce1ad... (93 %)\r\r\nWriting at 0x000d40b6... (96 %)\r\r\nWriting at 0x000da104... (100 %)\r\r\nWrote 849552 bytes (540131 compressed) at 0x00010000 in 5.7 seconds (effective 1186.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 528.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1545.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_12952",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540436...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5b... (6 %)\r\r\nWriting at 0x000275ba... (9 %)\r\r\nWriting at 0x0002c062... (12 %)\r\r\nWriting at 0x0003483d... (15 %)\r\r\nWriting at 0x0003c924... (18 %)\r\r\nWriting at 0x000428c1... (21 %)\r\r\nWriting at 0x00048bac... (24 %)\r\r\nWriting at 0x0004ea91... (27 %)\r\r\nWriting at 0x0005485a... (30 %)\r\r\nWriting at 0x0005ab1f... (33 %)\r\r\nWriting at 0x00060a57... (36 %)\r\r\nWriting at 0x000665aa... (39 %)\r\r\nWriting at 0x0006c32b... (42 %)\r\r\nWriting at 0x0007133e... (45 %)\r\r\nWriting at 0x000762aa... (48 %)\r\r\nWriting at 0x0007b3fe... (51 %)\r\r\nWriting at 0x00080576... (54 %)\r\r\nWriting at 0x00085942... (57 %)\r\r\nWriting at 0x0008ad30... (60 %)\r\r\nWriting at 0x00090b47... (63 %)\r\r\nWriting at 0x00095f6a... (66 %)\r\r\nWriting at 0x0009b664... (69 %)\r\r\nWriting at 0x000a100b... (72 %)\r\r\nWriting at 0x000a6733... (75 %)\r\r\nWriting at 0x000ac2bf... (78 %)\r\r\nWriting at 0x000b24fe... (81 %)\r\r\nWriting at 0x000b7d4b... (84 %)\r\r\nWriting at 0x000bd448... (87 %)\r\r\nWriting at 0x000c6114... (90 %)\r\r\nWriting at 0x000ce16e... (93 %)\r\r\nWriting at 0x000d400f... (96 %)\r\r\nWriting at 0x000da0a8... (100 %)\r\r\nWrote 849824 bytes (540436 compressed) at 0x00010000 in 5.9 seconds (effective 1159.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1595.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13100",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf520 bytes. Smallest app partition is 0x100000 bytes. 0x30ae0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849184 bytes to 540042...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x0002755c... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347e5... (15 %)\r\r\nWriting at 0x0003c8d8... (18 %)\r\r\nWriting at 0x00042811... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004e9f5... (27 %)\r\r\nWriting at 0x000547a5... (30 %)\r\r\nWriting at 0x0005aa51... (33 %)\r\r\nWriting at 0x00060a82... (36 %)\r\r\nWriting at 0x000664f1... (39 %)\r\r\nWriting at 0x0006c262... (42 %)\r\r\nWriting at 0x00071288... (45 %)\r\r\nWriting at 0x00076216... (48 %)\r\r\nWriting at 0x0007b34c... (51 %)\r\r\nWriting at 0x00080524... (54 %)\r\r\nWriting at 0x00085889... (57 %)\r\r\nWriting at 0x0008acd8... (60 %)\r\r\nWriting at 0x00090aa1... (63 %)\r\r\nWriting at 0x00095f03... (66 %)\r\r\nWriting at 0x0009b5a6... (69 %)\r\r\nWriting at 0x000a0f5a... (72 %)\r\r\nWriting at 0x000a66b7... (75 %)\r\r\nWriting at 0x000ac228... (78 %)\r\r\nWriting at 0x000b2484... (81 %)\r\r\nWriting at 0x000b7cbc... (84 %)\r\r\nWriting at 0x000bd366... (87 %)\r\r\nWriting at 0x000c605b... (90 %)\r\r\nWriting at 0x000ce0ce... (93 %)\r\r\nWriting at 0x000d3fcd... (96 %)\r\r\nWriting at 0x000d9ff5... (100 %)\r\r\nWrote 849184 bytes (540042 compressed) at 0x00010000 in 5.6 seconds (effective 1217.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13132",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c04c... (12 %)\r\r\nWriting at 0x0003479e... (15 %)\r\r\nWriting at 0x0003c88c... (18 %)\r\r\nWriting at 0x00042785... (21 %)\r\r\nWriting at 0x00048ab5... (24 %)\r\r\nWriting at 0x0004e9b7... (27 %)\r\r\nWriting at 0x00054759... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x00060974... (36 %)\r\r\nWriting at 0x000664d8... (39 %)\r\r\nWriting at 0x0006c261... (42 %)\r\r\nWriting at 0x0007126d... (45 %)\r\r\nWriting at 0x000761fe... (48 %)\r\r\nWriting at 0x0007b33a... (51 %)\r\r\nWriting at 0x000804c1... (54 %)\r\r\nWriting at 0x00085887... (57 %)\r\r\nWriting at 0x0008ac7c... (60 %)\r\r\nWriting at 0x00090a96... (63 %)\r\r\nWriting at 0x00095ee8... (66 %)\r\r\nWriting at 0x0009b5b2... (69 %)\r\r\nWriting at 0x000a0f65... (72 %)\r\r\nWriting at 0x000a6682... (75 %)\r\r\nWriting at 0x000ac21c... (78 %)\r\r\nWriting at 0x000b2456... (81 %)\r\r\nWriting at 0x000b7c93... (84 %)\r\r\nWriting at 0x000bd388... (87 %)\r\r\nWriting at 0x000c6058... (90 %)\r\r\nWriting at 0x000ce0b1... (93 %)\r\r\nWriting at 0x000d3fc0... (96 %)\r\r\nWriting at 0x000da009... (100 %)\r\r\nWrote 849264 bytes (540102 compressed) at 0x00010000 in 5.9 seconds (effective 1145.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1589.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13340",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'getICM42670':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:702:21: error: implicit declaration of function 'convertToDegrees'; did you mean 'convert_to_degrees'? [-Werror=implicit-function-declaration]\r\n  702 |                 if (convertToDegrees(accel_y) > -35)\r\n      |                     ^~~~~~~~~~~~~~~~\r\n      |                     convert_to_degrees\r\ncc1.exe: some warnings being treated as errors\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13432",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 467.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540235...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa9... (24 %)\r\r\nWriting at 0x0004ea28... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f8... (36 %)\r\r\nWriting at 0x00066553... (39 %)\r\r\nWriting at 0x0006c2ec... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ba... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff6... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540235 compressed) at 0x00010000 in 5.7 seconds (effective 1190.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 505.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 432361...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (14 %)\r\r\nWriting at 0x00121719... (18 %)\r\r\nWriting at 0x00125bce... (22 %)\r\r\nWriting at 0x0012a1f5... (25 %)\r\r\nWriting at 0x0012e61b... (29 %)\r\r\nWriting at 0x00132b85... (33 %)\r\r\nWriting at 0x00136fe3... (37 %)\r\r\nWriting at 0x0013b616... (40 %)\r\r\nWriting at 0x0013fad3... (44 %)\r\r\nWriting at 0x00143ecd... (48 %)\r\r\nWriting at 0x0014854c... (51 %)\r\r\nWriting at 0x0014df02... (55 %)\r\r\nWriting at 0x0015244e... (59 %)\r\r\nWriting at 0x001572f5... (62 %)\r\r\nWriting at 0x0015ca09... (66 %)\r\r\nWriting at 0x00160e24... (70 %)\r\r\nWriting at 0x00165dbe... (74 %)\r\r\nWriting at 0x0016b2e4... (77 %)\r\r\nWriting at 0x0016f6e0... (81 %)\r\r\nWriting at 0x00173c32... (85 %)\r\r\nWriting at 0x00178cfc... (88 %)\r\r\nWriting at 0x0017d150... (92 %)\r\r\nWriting at 0x0018ad13... (96 %)\r\r\nWriting at 0x001974a3... (100 %)\r\r\nWrote 983040 bytes (432361 compressed) at 0x00110000 in 4.9 seconds (effective 1614.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13596",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6e0 bytes. Smallest app partition is 0x100000 bytes. 0x30920 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849632 bytes to 540191...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x00027583... (9 %)\r\r\nWriting at 0x0002c0d9... (12 %)\r\r\nWriting at 0x00034827... (15 %)\r\r\nWriting at 0x0003c922... (18 %)\r\r\nWriting at 0x000428a4... (21 %)\r\r\nWriting at 0x00048b92... (24 %)\r\r\nWriting at 0x0004eaa5... (27 %)\r\r\nWriting at 0x0005487a... (30 %)\r\r\nWriting at 0x0005ab23... (33 %)\r\r\nWriting at 0x00060a97... (36 %)\r\r\nWriting at 0x000665d2... (39 %)\r\r\nWriting at 0x0006c35e... (42 %)\r\r\nWriting at 0x00071360... (45 %)\r\r\nWriting at 0x000762fb... (48 %)\r\r\nWriting at 0x0007b451... (51 %)\r\r\nWriting at 0x000805d5... (54 %)\r\r\nWriting at 0x0008598e... (57 %)\r\r\nWriting at 0x0008ade6... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x00096020... (66 %)\r\r\nWriting at 0x0009b6ca... (69 %)\r\r\nWriting at 0x000a1080... (72 %)\r\r\nWriting at 0x000a67c3... (75 %)\r\r\nWriting at 0x000ac34b... (78 %)\r\r\nWriting at 0x000b2587... (81 %)\r\r\nWriting at 0x000b7db9... (84 %)\r\r\nWriting at 0x000bd48d... (87 %)\r\r\nWriting at 0x000c6171... (90 %)\r\r\nWriting at 0x000ce1d6... (93 %)\r\r\nWriting at 0x000d40b3... (96 %)\r\r\nWriting at 0x000da10a... (100 %)\r\r\nWrote 849632 bytes (540191 compressed) at 0x00010000 in 5.8 seconds (effective 1177.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 540.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1608.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13632",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf770 bytes. Smallest app partition is 0x100000 bytes. 0x30890 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849776 bytes to 540312...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x0002758e... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034823... (15 %)\r\r\nWriting at 0x0003c916... (18 %)\r\r\nWriting at 0x000428ab... (21 %)\r\r\nWriting at 0x00048ba1... (24 %)\r\r\nWriting at 0x0004eacd... (27 %)\r\r\nWriting at 0x000548a0... (30 %)\r\r\nWriting at 0x0005ab41... (33 %)\r\r\nWriting at 0x00060a7b... (36 %)\r\r\nWriting at 0x000665cc... (39 %)\r\r\nWriting at 0x0006c358... (42 %)\r\r\nWriting at 0x00071367... (45 %)\r\r\nWriting at 0x000762f1... (48 %)\r\r\nWriting at 0x0007b439... (51 %)\r\r\nWriting at 0x000805c6... (54 %)\r\r\nWriting at 0x0008598a... (57 %)\r\r\nWriting at 0x0008adc5... (60 %)\r\r\nWriting at 0x00090b99... (63 %)\r\r\nWriting at 0x00096008... (66 %)\r\r\nWriting at 0x0009b6af... (69 %)\r\r\nWriting at 0x000a1060... (72 %)\r\r\nWriting at 0x000a6793... (75 %)\r\r\nWriting at 0x000ac318... (78 %)\r\r\nWriting at 0x000b255d... (81 %)\r\r\nWriting at 0x000b7d9a... (84 %)\r\r\nWriting at 0x000bd488... (87 %)\r\r\nWriting at 0x000c6163... (90 %)\r\r\nWriting at 0x000ce1b7... (93 %)\r\r\nWriting at 0x000d4083... (96 %)\r\r\nWriting at 0x000da102... (100 %)\r\r\nWrote 849776 bytes (540312 compressed) at 0x00010000 in 5.7 seconds (effective 1202.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 509.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1641.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13704",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540226...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274ee... (9 %)\r\r\nWriting at 0x0002c044... (12 %)\r\r\nWriting at 0x0003478b... (15 %)\r\r\nWriting at 0x0003c87f... (18 %)\r\r\nWriting at 0x0004275d... (21 %)\r\r\nWriting at 0x00048a99... (24 %)\r\r\nWriting at 0x0004ea40... (27 %)\r\r\nWriting at 0x00054811... (30 %)\r\r\nWriting at 0x0005aa54... (33 %)\r\r\nWriting at 0x000609f5... (36 %)\r\r\nWriting at 0x00066559... (39 %)\r\r\nWriting at 0x0006c2eb... (42 %)\r\r\nWriting at 0x00071307... (45 %)\r\r\nWriting at 0x0007625f... (48 %)\r\r\nWriting at 0x0007b3b3... (51 %)\r\r\nWriting at 0x00080530... (54 %)\r\r\nWriting at 0x00085901... (57 %)\r\r\nWriting at 0x0008acd1... (60 %)\r\r\nWriting at 0x00090b08... (63 %)\r\r\nWriting at 0x00095f31... (66 %)\r\r\nWriting at 0x0009b644... (69 %)\r\r\nWriting at 0x000a0fee... (72 %)\r\r\nWriting at 0x000a66f3... (75 %)\r\r\nWriting at 0x000ac26a... (78 %)\r\r\nWriting at 0x000b24cb... (81 %)\r\r\nWriting at 0x000b7d1a... (84 %)\r\r\nWriting at 0x000bd421... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce146... (93 %)\r\r\nWriting at 0x000d4038... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849552 bytes (540226 compressed) at 0x00010000 in 5.7 seconds (effective 1202.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1641.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_13828",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf640 bytes. Smallest app partition is 0x100000 bytes. 0x309c0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849472 bytes to 540152...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca83... (6 %)\r\r\nWriting at 0x00027550... (9 %)\r\r\nWriting at 0x0002c0a4... (12 %)\r\r\nWriting at 0x000347cf... (15 %)\r\r\nWriting at 0x0003c8d2... (18 %)\r\r\nWriting at 0x0004281c... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea67... (27 %)\r\r\nWriting at 0x00054832... (30 %)\r\r\nWriting at 0x0005aae5... (33 %)\r\r\nWriting at 0x00060a62... (36 %)\r\r\nWriting at 0x00066576... (39 %)\r\r\nWriting at 0x0006c2fd... (42 %)\r\r\nWriting at 0x00071303... (45 %)\r\r\nWriting at 0x0007628e... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x0008056d... (54 %)\r\r\nWriting at 0x00085920... (57 %)\r\r\nWriting at 0x0008ad77... (60 %)\r\r\nWriting at 0x00090b40... (63 %)\r\r\nWriting at 0x00095fa2... (66 %)\r\r\nWriting at 0x0009b649... (69 %)\r\r\nWriting at 0x000a0ff8... (72 %)\r\r\nWriting at 0x000a6747... (75 %)\r\r\nWriting at 0x000ac2cb... (78 %)\r\r\nWriting at 0x000b2508... (81 %)\r\r\nWriting at 0x000b7d39... (84 %)\r\r\nWriting at 0x000bd412... (87 %)\r\r\nWriting at 0x000c60f4... (90 %)\r\r\nWriting at 0x000ce156... (93 %)\r\r\nWriting at 0x000d4044... (96 %)\r\r\nWriting at 0x000da08e... (100 %)\r\r\nWrote 849472 bytes (540152 compressed) at 0x00010000 in 5.6 seconds (effective 1214.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1693.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_1384",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7b0 bytes. Smallest app partition is 0x100000 bytes. 0x30850 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849840 bytes to 540410...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5b... (6 %)\r\r\nWriting at 0x000275b5... (9 %)\r\r\nWriting at 0x0002c061... (12 %)\r\r\nWriting at 0x0003483f... (15 %)\r\r\nWriting at 0x0003c936... (18 %)\r\r\nWriting at 0x000428d1... (21 %)\r\r\nWriting at 0x00048bb8... (24 %)\r\r\nWriting at 0x0004eaa6... (27 %)\r\r\nWriting at 0x0005486f... (30 %)\r\r\nWriting at 0x0005ab2c... (33 %)\r\r\nWriting at 0x00060a6a... (36 %)\r\r\nWriting at 0x000665b2... (39 %)\r\r\nWriting at 0x0006c33e... (42 %)\r\r\nWriting at 0x00071357... (45 %)\r\r\nWriting at 0x000762d3... (48 %)\r\r\nWriting at 0x0007b419... (51 %)\r\r\nWriting at 0x0008059b... (54 %)\r\r\nWriting at 0x00085966... (57 %)\r\r\nWriting at 0x0008ad61... (60 %)\r\r\nWriting at 0x00090b6a... (63 %)\r\r\nWriting at 0x00095f8c... (66 %)\r\r\nWriting at 0x0009b684... (69 %)\r\r\nWriting at 0x000a1034... (72 %)\r\r\nWriting at 0x000a675b... (75 %)\r\r\nWriting at 0x000ac2ee... (78 %)\r\r\nWriting at 0x000b2525... (81 %)\r\r\nWriting at 0x000b7d74... (84 %)\r\r\nWriting at 0x000bd467... (87 %)\r\r\nWriting at 0x000c6139... (90 %)\r\r\nWriting at 0x000ce190... (93 %)\r\r\nWriting at 0x000d403c... (96 %)\r\r\nWriting at 0x000da0c9... (100 %)\r\r\nWrote 849840 bytes (540410 compressed) at 0x00010000 in 5.9 seconds (effective 1160.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 528.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1594.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_1404",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf650 bytes. Smallest app partition is 0x100000 bytes. 0x309b0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 491.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849488 bytes to 540208...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f3... (9 %)\r\r\nWriting at 0x0002c043... (12 %)\r\r\nWriting at 0x000347b4... (15 %)\r\r\nWriting at 0x0003c893... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab4... (24 %)\r\r\nWriting at 0x0004ea3b... (27 %)\r\r\nWriting at 0x000547f7... (30 %)\r\r\nWriting at 0x0005aa6b... (33 %)\r\r\nWriting at 0x000609eb... (36 %)\r\r\nWriting at 0x0006653f... (39 %)\r\r\nWriting at 0x0006c2d7... (42 %)\r\r\nWriting at 0x000712f2... (45 %)\r\r\nWriting at 0x0007624c... (48 %)\r\r\nWriting at 0x0007b393... (51 %)\r\r\nWriting at 0x00080511... (54 %)\r\r\nWriting at 0x000858e5... (57 %)\r\r\nWriting at 0x0008aca6... (60 %)\r\r\nWriting at 0x00090ad5... (63 %)\r\r\nWriting at 0x00095efa... (66 %)\r\r\nWriting at 0x0009b610... (69 %)\r\r\nWriting at 0x000a0fb6... (72 %)\r\r\nWriting at 0x000a66cc... (75 %)\r\r\nWriting at 0x000ac23a... (78 %)\r\r\nWriting at 0x000b24a2... (81 %)\r\r\nWriting at 0x000b7ce2... (84 %)\r\r\nWriting at 0x000bd3ec... (87 %)\r\r\nWriting at 0x000c60aa... (90 %)\r\r\nWriting at 0x000ce113... (93 %)\r\r\nWriting at 0x000d400a... (96 %)\r\r\nWriting at 0x000da062... (100 %)\r\r\nWrote 849488 bytes (540208 compressed) at 0x00010000 in 5.8 seconds (effective 1167.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 560.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1614.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_1420",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'ST7789':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:1102:33: error: implicit declaration of function 'sleep_timer_reset' [-Werror=implicit-function-declaration]\r\n 1102 |                                 sleep_timer_reset();\r\n      |                                 ^~~~~~~~~~~~~~~~~\r\ncc1.exe: some warnings being treated as errors\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14284",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 509.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540121...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x000427a0... (21 %)\r\r\nWriting at 0x00048ac8... (24 %)\r\r\nWriting at 0x0004ea43... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aaca... (33 %)\r\r\nWriting at 0x00060a17... (36 %)\r\r\nWriting at 0x0006656c... (39 %)\r\r\nWriting at 0x0006c2fc... (42 %)\r\r\nWriting at 0x00071312... (45 %)\r\r\nWriting at 0x0007628b... (48 %)\r\r\nWriting at 0x0007b3d0... (51 %)\r\r\nWriting at 0x00080552... (54 %)\r\r\nWriting at 0x00085928... (57 %)\r\r\nWriting at 0x0008ad18... (60 %)\r\r\nWriting at 0x00090b31... (63 %)\r\r\nWriting at 0x00095f6f... (66 %)\r\r\nWriting at 0x0009b656... (69 %)\r\r\nWriting at 0x000a1002... (72 %)\r\r\nWriting at 0x000a6722... (75 %)\r\r\nWriting at 0x000ac2bc... (78 %)\r\r\nWriting at 0x000b24f4... (81 %)\r\r\nWriting at 0x000b7d32... (84 %)\r\r\nWriting at 0x000bd428... (87 %)\r\r\nWriting at 0x000c60f7... (90 %)\r\r\nWriting at 0x000ce14e... (93 %)\r\r\nWriting at 0x000d405a... (96 %)\r\r\nWriting at 0x000da0ab... (100 %)\r\r\nWrote 849456 bytes (540121 compressed) at 0x00010000 in 5.8 seconds (effective 1168.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1603.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14312",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6b0 bytes. Smallest app partition is 0x100000 bytes. 0x30950 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849584 bytes to 540167...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5d... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034821... (15 %)\r\r\nWriting at 0x0003c91a... (18 %)\r\r\nWriting at 0x0004289f... (21 %)\r\r\nWriting at 0x00048b9f... (24 %)\r\r\nWriting at 0x0004eabb... (27 %)\r\r\nWriting at 0x00054889... (30 %)\r\r\nWriting at 0x0005ab28... (33 %)\r\r\nWriting at 0x00060af3... (36 %)\r\r\nWriting at 0x000665c7... (39 %)\r\r\nWriting at 0x0006c33f... (42 %)\r\r\nWriting at 0x0007135d... (45 %)\r\r\nWriting at 0x000762ed... (48 %)\r\r\nWriting at 0x0007b43c... (51 %)\r\r\nWriting at 0x000805d2... (54 %)\r\r\nWriting at 0x00085985... (57 %)\r\r\nWriting at 0x0008add3... (60 %)\r\r\nWriting at 0x00090b94... (63 %)\r\r\nWriting at 0x00095ffe... (66 %)\r\r\nWriting at 0x0009b6b2... (69 %)\r\r\nWriting at 0x000a1062... (72 %)\r\r\nWriting at 0x000a67af... (75 %)\r\r\nWriting at 0x000ac321... (78 %)\r\r\nWriting at 0x000b256d... (81 %)\r\r\nWriting at 0x000b7d97... (84 %)\r\r\nWriting at 0x000bd464... (87 %)\r\r\nWriting at 0x000c6153... (90 %)\r\r\nWriting at 0x000ce1b9... (93 %)\r\r\nWriting at 0x000d4099... (96 %)\r\r\nWriting at 0x000da0ea... (100 %)\r\r\nWrote 849584 bytes (540167 compressed) at 0x00010000 in 5.6 seconds (effective 1213.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14880",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540077...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0b6... (12 %)\r\r\nWriting at 0x000347f3... (15 %)\r\r\nWriting at 0x0003c8ec... (18 %)\r\r\nWriting at 0x0004283d... (21 %)\r\r\nWriting at 0x00048b52... (24 %)\r\r\nWriting at 0x0004ea8c... (27 %)\r\r\nWriting at 0x00054840... (30 %)\r\r\nWriting at 0x0005aae9... (33 %)\r\r\nWriting at 0x00060ae0... (36 %)\r\r\nWriting at 0x0006659b... (39 %)\r\r\nWriting at 0x0006c30c... (42 %)\r\r\nWriting at 0x0007131e... (45 %)\r\r\nWriting at 0x000762b5... (48 %)\r\r\nWriting at 0x0007b406... (51 %)\r\r\nWriting at 0x000805af... (54 %)\r\r\nWriting at 0x0008593e... (57 %)\r\r\nWriting at 0x0008ad96... (60 %)\r\r\nWriting at 0x00090b6c... (63 %)\r\r\nWriting at 0x00095fd2... (66 %)\r\r\nWriting at 0x0009b67c... (69 %)\r\r\nWriting at 0x000a102b... (72 %)\r\r\nWriting at 0x000a6780... (75 %)\r\r\nWriting at 0x000ac2ee... (78 %)\r\r\nWriting at 0x000b2541... (81 %)\r\r\nWriting at 0x000b7d7b... (84 %)\r\r\nWriting at 0x000bd430... (87 %)\r\r\nWriting at 0x000c6125... (90 %)\r\r\nWriting at 0x000ce18c... (93 %)\r\r\nWriting at 0x000d408e... (96 %)\r\r\nWriting at 0x000da0bb... (100 %)\r\r\nWrote 849424 bytes (540077 compressed) at 0x00010000 in 5.6 seconds (effective 1211.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1704.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14912",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf560 bytes. Smallest app partition is 0x100000 bytes. 0x30aa0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849248 bytes to 540166...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274ee... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c885... (18 %)\r\r\nWriting at 0x0004277e... (21 %)\r\r\nWriting at 0x00048a99... (24 %)\r\r\nWriting at 0x0004e959... (27 %)\r\r\nWriting at 0x00054708... (30 %)\r\r\nWriting at 0x0005a97f... (33 %)\r\r\nWriting at 0x0006090e... (36 %)\r\r\nWriting at 0x00066468... (39 %)\r\r\nWriting at 0x0006c1fc... (42 %)\r\r\nWriting at 0x00071218... (45 %)\r\r\nWriting at 0x0007617d... (48 %)\r\r\nWriting at 0x0007b2d5... (51 %)\r\r\nWriting at 0x00080444... (54 %)\r\r\nWriting at 0x00085829... (57 %)\r\r\nWriting at 0x0008ac10... (60 %)\r\r\nWriting at 0x00090a2b... (63 %)\r\r\nWriting at 0x00095e4f... (66 %)\r\r\nWriting at 0x0009b552... (69 %)\r\r\nWriting at 0x000a0efa... (72 %)\r\r\nWriting at 0x000a660c... (75 %)\r\r\nWriting at 0x000ac1b0... (78 %)\r\r\nWriting at 0x000b23e3... (81 %)\r\r\nWriting at 0x000b7c26... (84 %)\r\r\nWriting at 0x000bd327... (87 %)\r\r\nWriting at 0x000c5fe6... (90 %)\r\r\nWriting at 0x000ce04e... (93 %)\r\r\nWriting at 0x000d3f4f... (96 %)\r\r\nWriting at 0x000d9fa2... (100 %)\r\r\nWrote 849248 bytes (540166 compressed) at 0x00010000 in 5.9 seconds (effective 1157.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1585.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14948",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540233...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x0004278a... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea2d... (27 %)\r\r\nWriting at 0x00054801... (30 %)\r\r\nWriting at 0x0005aa3b... (33 %)\r\r\nWriting at 0x000609fa... (36 %)\r\r\nWriting at 0x00066555... (39 %)\r\r\nWriting at 0x0006c2f2... (42 %)\r\r\nWriting at 0x0007130d... (45 %)\r\r\nWriting at 0x00076266... (48 %)\r\r\nWriting at 0x0007b3bd... (51 %)\r\r\nWriting at 0x0008053e... (54 %)\r\r\nWriting at 0x0008590e... (57 %)\r\r\nWriting at 0x0008acc9... (60 %)\r\r\nWriting at 0x00090b10... (63 %)\r\r\nWriting at 0x00095f27... (66 %)\r\r\nWriting at 0x0009b64f... (69 %)\r\r\nWriting at 0x000a0ffa... (72 %)\r\r\nWriting at 0x000a66fb... (75 %)\r\r\nWriting at 0x000ac26a... (78 %)\r\r\nWriting at 0x000b24d9... (81 %)\r\r\nWriting at 0x000b7d1e... (84 %)\r\r\nWriting at 0x000bd425... (87 %)\r\r\nWriting at 0x000c60e0... (90 %)\r\r\nWriting at 0x000ce14a... (93 %)\r\r\nWriting at 0x000d4039... (96 %)\r\r\nWriting at 0x000da094... (100 %)\r\r\nWrote 849568 bytes (540233 compressed) at 0x00010000 in 5.8 seconds (effective 1163.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 561.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1607.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14980",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 459.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849616 bytes to 540209...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e8... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c92e... (18 %)\r\r\nWriting at 0x000428cb... (21 %)\r\r\nWriting at 0x00048b9f... (24 %)\r\r\nWriting at 0x0004eab3... (27 %)\r\r\nWriting at 0x00054874... (30 %)\r\r\nWriting at 0x0005ab19... (33 %)\r\r\nWriting at 0x00060aaa... (36 %)\r\r\nWriting at 0x000665bb... (39 %)\r\r\nWriting at 0x0006c334... (42 %)\r\r\nWriting at 0x0007133b... (45 %)\r\r\nWriting at 0x000762ca... (48 %)\r\r\nWriting at 0x0007b429... (51 %)\r\r\nWriting at 0x000805ad... (54 %)\r\r\nWriting at 0x00085971... (57 %)\r\r\nWriting at 0x0008adc3... (60 %)\r\r\nWriting at 0x00090b87... (63 %)\r\r\nWriting at 0x00095ff7... (66 %)\r\r\nWriting at 0x0009b6a0... (69 %)\r\r\nWriting at 0x000a1059... (72 %)\r\r\nWriting at 0x000a679e... (75 %)\r\r\nWriting at 0x000ac31f... (78 %)\r\r\nWriting at 0x000b255d... (81 %)\r\r\nWriting at 0x000b7d90... (84 %)\r\r\nWriting at 0x000bd463... (87 %)\r\r\nWriting at 0x000c614c... (90 %)\r\r\nWriting at 0x000ce1af... (93 %)\r\r\nWriting at 0x000d4090... (96 %)\r\r\nWriting at 0x000da0e0... (100 %)\r\r\nWrote 849616 bytes (540209 compressed) at 0x00010000 in 5.9 seconds (effective 1160.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 530.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1593.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_14992",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf660 bytes. Smallest app partition is 0x100000 bytes. 0x309a0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849504 bytes to 540179...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0b8... (12 %)\r\r\nWriting at 0x000347e9... (15 %)\r\r\nWriting at 0x0003c8ef... (18 %)\r\r\nWriting at 0x0004283d... (21 %)\r\r\nWriting at 0x00048b59... (24 %)\r\r\nWriting at 0x0004ea7f... (27 %)\r\r\nWriting at 0x00054849... (30 %)\r\r\nWriting at 0x0005aae8... (33 %)\r\r\nWriting at 0x00060a4c... (36 %)\r\r\nWriting at 0x00066580... (39 %)\r\r\nWriting at 0x0006c306... (42 %)\r\r\nWriting at 0x00071314... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b400... (51 %)\r\r\nWriting at 0x0008057a... (54 %)\r\r\nWriting at 0x0008592d... (57 %)\r\r\nWriting at 0x0008ad80... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fa6... (66 %)\r\r\nWriting at 0x0009b650... (69 %)\r\r\nWriting at 0x000a0ffd... (72 %)\r\r\nWriting at 0x000a6754... (75 %)\r\r\nWriting at 0x000ac2c9... (78 %)\r\r\nWriting at 0x000b2508... (81 %)\r\r\nWriting at 0x000b7d39... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60fc... (90 %)\r\r\nWriting at 0x000ce159... (93 %)\r\r\nWriting at 0x000d4040... (96 %)\r\r\nWriting at 0x000da099... (100 %)\r\r\nWrote 849504 bytes (540179 compressed) at 0x00010000 in 5.6 seconds (effective 1206.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1640.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_15100",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5e0 bytes. Smallest app partition is 0x100000 bytes. 0x30a20 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849376 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002753e... (9 %)\r\r\nWriting at 0x0002c08f... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8c5... (18 %)\r\r\nWriting at 0x000427e3... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aab2... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076272... (48 %)\r\r\nWriting at 0x0007b3c6... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f89... (66 %)\r\r\nWriting at 0x0009b632... (69 %)\r\r\nWriting at 0x000a0fec... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac2b5... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce13b... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da085... (100 %)\r\r\nWrote 849376 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1211.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 511.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_15152",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf770 bytes. Smallest app partition is 0x100000 bytes. 0x30890 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 483.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849776 bytes to 540309...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x0002758d... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034820... (15 %)\r\r\nWriting at 0x0003c916... (18 %)\r\r\nWriting at 0x000428ab... (21 %)\r\r\nWriting at 0x00048ba1... (24 %)\r\r\nWriting at 0x0004ead4... (27 %)\r\r\nWriting at 0x000548a0... (30 %)\r\r\nWriting at 0x0005ab41... (33 %)\r\r\nWriting at 0x00060a7c... (36 %)\r\r\nWriting at 0x000665cc... (39 %)\r\r\nWriting at 0x0006c359... (42 %)\r\r\nWriting at 0x00071368... (45 %)\r\r\nWriting at 0x000762f1... (48 %)\r\r\nWriting at 0x0007b439... (51 %)\r\r\nWriting at 0x000805c9... (54 %)\r\r\nWriting at 0x0008598b... (57 %)\r\r\nWriting at 0x0008adcf... (60 %)\r\r\nWriting at 0x00090ba0... (63 %)\r\r\nWriting at 0x0009600e... (66 %)\r\r\nWriting at 0x0009b6b2... (69 %)\r\r\nWriting at 0x000a1063... (72 %)\r\r\nWriting at 0x000a6798... (75 %)\r\r\nWriting at 0x000ac31c... (78 %)\r\r\nWriting at 0x000b255e... (81 %)\r\r\nWriting at 0x000b7d9c... (84 %)\r\r\nWriting at 0x000bd48a... (87 %)\r\r\nWriting at 0x000c6164... (90 %)\r\r\nWriting at 0x000ce1b8... (93 %)\r\r\nWriting at 0x000d408a... (96 %)\r\r\nWriting at 0x000da105... (100 %)\r\r\nWrote 849776 bytes (540309 compressed) at 0x00010000 in 5.6 seconds (effective 1204.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1666.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_15512",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.8 seconds (effective 1176.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.8 seconds (effective 1651.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_16488",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 476.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540120...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x000427a6... (21 %)\r\r\nWriting at 0x00048ac7... (24 %)\r\r\nWriting at 0x0004ea42... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aac9... (33 %)\r\r\nWriting at 0x00060a12... (36 %)\r\r\nWriting at 0x0006656c... (39 %)\r\r\nWriting at 0x0006c2fc... (42 %)\r\r\nWriting at 0x00071311... (45 %)\r\r\nWriting at 0x00076287... (48 %)\r\r\nWriting at 0x0007b3cf... (51 %)\r\r\nWriting at 0x00080552... (54 %)\r\r\nWriting at 0x00085927... (57 %)\r\r\nWriting at 0x0008ad15... (60 %)\r\r\nWriting at 0x00090b31... (63 %)\r\r\nWriting at 0x00095f6f... (66 %)\r\r\nWriting at 0x0009b656... (69 %)\r\r\nWriting at 0x000a1001... (72 %)\r\r\nWriting at 0x000a6722... (75 %)\r\r\nWriting at 0x000ac2bc... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d32... (84 %)\r\r\nWriting at 0x000bd428... (87 %)\r\r\nWriting at 0x000c60f7... (90 %)\r\r\nWriting at 0x000ce14e... (93 %)\r\r\nWriting at 0x000d405a... (96 %)\r\r\nWriting at 0x000da0ab... (100 %)\r\r\nWrote 849456 bytes (540120 compressed) at 0x00010000 in 5.6 seconds (effective 1205.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1650.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_16720",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 475.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540189...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027592... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428c5... (21 %)\r\r\nWriting at 0x00048bad... (24 %)\r\r\nWriting at 0x0004eadc... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab66... (33 %)\r\r\nWriting at 0x00060b14... (36 %)\r\r\nWriting at 0x0006660d... (39 %)\r\r\nWriting at 0x0006c38e... (42 %)\r\r\nWriting at 0x0007139a... (45 %)\r\r\nWriting at 0x00076329... (48 %)\r\r\nWriting at 0x0007b47e... (51 %)\r\r\nWriting at 0x00080606... (54 %)\r\r\nWriting at 0x000859c8... (57 %)\r\r\nWriting at 0x0008ae15... (60 %)\r\r\nWriting at 0x00090be6... (63 %)\r\r\nWriting at 0x0009604b... (66 %)\r\r\nWriting at 0x0009b6f3... (69 %)\r\r\nWriting at 0x000a10ab... (72 %)\r\r\nWriting at 0x000a67f4... (75 %)\r\r\nWriting at 0x000ac373... (78 %)\r\r\nWriting at 0x000b25b7... (81 %)\r\r\nWriting at 0x000b7de1... (84 %)\r\r\nWriting at 0x000bd4b2... (87 %)\r\r\nWriting at 0x000c619b... (90 %)\r\r\nWriting at 0x000ce202... (93 %)\r\r\nWriting at 0x000d40e1... (96 %)\r\r\nWriting at 0x000da135... (100 %)\r\r\nWrote 849680 bytes (540189 compressed) at 0x00010000 in 5.6 seconds (effective 1203.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 544.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1647.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_16876",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 500.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540138...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274fb... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x0004279d... (21 %)\r\r\nWriting at 0x00048ac5... (24 %)\r\r\nWriting at 0x0004e9b7... (27 %)\r\r\nWriting at 0x0005476e... (30 %)\r\r\nWriting at 0x0005aa25... (33 %)\r\r\nWriting at 0x0006097c... (36 %)\r\r\nWriting at 0x000664d0... (39 %)\r\r\nWriting at 0x0006c25e... (42 %)\r\r\nWriting at 0x00071273... (45 %)\r\r\nWriting at 0x000761dc... (48 %)\r\r\nWriting at 0x0007b334... (51 %)\r\r\nWriting at 0x000804ac... (54 %)\r\r\nWriting at 0x00085887... (57 %)\r\r\nWriting at 0x0008ac65... (60 %)\r\r\nWriting at 0x00090a8c... (63 %)\r\r\nWriting at 0x00095eaf... (66 %)\r\r\nWriting at 0x0009b5b2... (69 %)\r\r\nWriting at 0x000a0f5e... (72 %)\r\r\nWriting at 0x000a6680... (75 %)\r\r\nWriting at 0x000ac21b... (78 %)\r\r\nWriting at 0x000b244a... (81 %)\r\r\nWriting at 0x000b7c94... (84 %)\r\r\nWriting at 0x000bd387... (87 %)\r\r\nWriting at 0x000c6059... (90 %)\r\r\nWriting at 0x000ce0af... (93 %)\r\r\nWriting at 0x000d3fbc... (96 %)\r\r\nWriting at 0x000da00e... (100 %)\r\r\nWrote 849312 bytes (540138 compressed) at 0x00010000 in 5.8 seconds (effective 1169.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 560.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1600.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_16900",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849616 bytes to 540209...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e8... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c92e... (18 %)\r\r\nWriting at 0x000428cb... (21 %)\r\r\nWriting at 0x00048b9f... (24 %)\r\r\nWriting at 0x0004eab3... (27 %)\r\r\nWriting at 0x00054874... (30 %)\r\r\nWriting at 0x0005ab19... (33 %)\r\r\nWriting at 0x00060aaa... (36 %)\r\r\nWriting at 0x000665bb... (39 %)\r\r\nWriting at 0x0006c334... (42 %)\r\r\nWriting at 0x0007133b... (45 %)\r\r\nWriting at 0x000762ca... (48 %)\r\r\nWriting at 0x0007b429... (51 %)\r\r\nWriting at 0x000805ad... (54 %)\r\r\nWriting at 0x00085971... (57 %)\r\r\nWriting at 0x0008adc3... (60 %)\r\r\nWriting at 0x00090b87... (63 %)\r\r\nWriting at 0x00095ff7... (66 %)\r\r\nWriting at 0x0009b6a0... (69 %)\r\r\nWriting at 0x000a1059... (72 %)\r\r\nWriting at 0x000a679e... (75 %)\r\r\nWriting at 0x000ac31f... (78 %)\r\r\nWriting at 0x000b255d... (81 %)\r\r\nWriting at 0x000b7d90... (84 %)\r\r\nWriting at 0x000bd463... (87 %)\r\r\nWriting at 0x000c614c... (90 %)\r\r\nWriting at 0x000ce1af... (93 %)\r\r\nWriting at 0x000d4090... (96 %)\r\r\nWriting at 0x000da0e0... (100 %)\r\r\nWrote 849616 bytes (540209 compressed) at 0x00010000 in 5.9 seconds (effective 1160.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1601.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_17044",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540132...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f2... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x00042791... (21 %)\r\r\nWriting at 0x00048ac9... (24 %)\r\r\nWriting at 0x0004eab0... (27 %)\r\r\nWriting at 0x00054876... (30 %)\r\r\nWriting at 0x0005ab31... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c4... (39 %)\r\r\nWriting at 0x0006c34c... (42 %)\r\r\nWriting at 0x00071375... (45 %)\r\r\nWriting at 0x000762ef... (48 %)\r\r\nWriting at 0x0007b436... (51 %)\r\r\nWriting at 0x000805bb... (54 %)\r\r\nWriting at 0x00085986... (57 %)\r\r\nWriting at 0x0008ad88... (60 %)\r\r\nWriting at 0x00090b94... (63 %)\r\r\nWriting at 0x00095fd2... (66 %)\r\r\nWriting at 0x0009b6ae... (69 %)\r\r\nWriting at 0x000a1060... (72 %)\r\r\nWriting at 0x000a6781... (75 %)\r\r\nWriting at 0x000ac31b... (78 %)\r\r\nWriting at 0x000b2550... (81 %)\r\r\nWriting at 0x000b7d96... (84 %)\r\r\nWriting at 0x000bd48c... (87 %)\r\r\nWriting at 0x000c615d... (90 %)\r\r\nWriting at 0x000ce1b2... (93 %)\r\r\nWriting at 0x000d40b6... (96 %)\r\r\nWriting at 0x000da10b... (100 %)\r\r\nWrote 849552 bytes (540132 compressed) at 0x00010000 in 5.7 seconds (effective 1187.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 485.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1542.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_17348",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 476.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540213...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x00034797... (15 %)\r\r\nWriting at 0x0003c88f... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea3e... (27 %)\r\r\nWriting at 0x00054819... (30 %)\r\r\nWriting at 0x0005aa59... (33 %)\r\r\nWriting at 0x00060a0a... (36 %)\r\r\nWriting at 0x0006656f... (39 %)\r\r\nWriting at 0x0006c304... (42 %)\r\r\nWriting at 0x00071327... (45 %)\r\r\nWriting at 0x00076280... (48 %)\r\r\nWriting at 0x0007b3d1... (51 %)\r\r\nWriting at 0x00080553... (54 %)\r\r\nWriting at 0x00085920... (57 %)\r\r\nWriting at 0x0008ace9... (60 %)\r\r\nWriting at 0x00090b2f... (63 %)\r\r\nWriting at 0x00095f49... (66 %)\r\r\nWriting at 0x0009b65b... (69 %)\r\r\nWriting at 0x000a1004... (72 %)\r\r\nWriting at 0x000a6713... (75 %)\r\r\nWriting at 0x000ac284... (78 %)\r\r\nWriting at 0x000b24ea... (81 %)\r\r\nWriting at 0x000b7d32... (84 %)\r\r\nWriting at 0x000bd432... (87 %)\r\r\nWriting at 0x000c60f1... (90 %)\r\r\nWriting at 0x000ce158... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da0a4... (100 %)\r\r\nWrote 849568 bytes (540213 compressed) at 0x00010000 in 5.7 seconds (effective 1193.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 468.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.9 seconds (effective 1609.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_17644",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 499.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540129...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c899... (18 %)\r\r\nWriting at 0x0004278d... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x00054809... (30 %)\r\r\nWriting at 0x0005aad0... (33 %)\r\r\nWriting at 0x00060a16... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2f9... (42 %)\r\r\nWriting at 0x0007130d... (45 %)\r\r\nWriting at 0x00076284... (48 %)\r\r\nWriting at 0x0007b3ca... (51 %)\r\r\nWriting at 0x0008053f... (54 %)\r\r\nWriting at 0x0008591d... (57 %)\r\r\nWriting at 0x0008ad11... (60 %)\r\r\nWriting at 0x00090b27... (63 %)\r\r\nWriting at 0x00095f4a... (66 %)\r\r\nWriting at 0x0009b64a... (69 %)\r\r\nWriting at 0x000a0ff7... (72 %)\r\r\nWriting at 0x000a6719... (75 %)\r\r\nWriting at 0x000ac2b3... (78 %)\r\r\nWriting at 0x000b24e9... (81 %)\r\r\nWriting at 0x000b7d2d... (84 %)\r\r\nWriting at 0x000bd422... (87 %)\r\r\nWriting at 0x000c60f0... (90 %)\r\r\nWriting at 0x000ce149... (93 %)\r\r\nWriting at 0x000d4053... (96 %)\r\r\nWriting at 0x000da0a4... (100 %)\r\r\nWrote 849456 bytes (540129 compressed) at 0x00010000 in 5.6 seconds (effective 1210.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 525.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.6 seconds (effective 1705.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_17756",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 504.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540224...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c896... (18 %)\r\r\nWriting at 0x00042797... (21 %)\r\r\nWriting at 0x00048ac7... (24 %)\r\r\nWriting at 0x0004ea2d... (27 %)\r\r\nWriting at 0x000547ff... (30 %)\r\r\nWriting at 0x0005aa40... (33 %)\r\r\nWriting at 0x000609f2... (36 %)\r\r\nWriting at 0x0006654a... (39 %)\r\r\nWriting at 0x0006c2e2... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076262... (48 %)\r\r\nWriting at 0x0007b3b7... (51 %)\r\r\nWriting at 0x0008052f... (54 %)\r\r\nWriting at 0x000858fe... (57 %)\r\r\nWriting at 0x0008acc2... (60 %)\r\r\nWriting at 0x00090af7... (63 %)\r\r\nWriting at 0x00095f0c... (66 %)\r\r\nWriting at 0x0009b63a... (69 %)\r\r\nWriting at 0x000a0fe0... (72 %)\r\r\nWriting at 0x000a66e4... (75 %)\r\r\nWriting at 0x000ac256... (78 %)\r\r\nWriting at 0x000b24bf... (81 %)\r\r\nWriting at 0x000b7d10... (84 %)\r\r\nWriting at 0x000bd419... (87 %)\r\r\nWriting at 0x000c60d4... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d4034... (96 %)\r\r\nWriting at 0x000da08e... (100 %)\r\r\nWrote 849552 bytes (540224 compressed) at 0x00010000 in 5.8 seconds (effective 1163.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 545.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1600.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_17816",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5f0 bytes. Smallest app partition is 0x100000 bytes. 0x30a10 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849392 bytes to 540056...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347f2... (15 %)\r\r\nWriting at 0x0003c8f6... (18 %)\r\r\nWriting at 0x00042850... (21 %)\r\r\nWriting at 0x00048b63... (24 %)\r\r\nWriting at 0x0004ea93... (27 %)\r\r\nWriting at 0x00054836... (30 %)\r\r\nWriting at 0x0005aaf3... (33 %)\r\r\nWriting at 0x00060b3e... (36 %)\r\r\nWriting at 0x0006659c... (39 %)\r\r\nWriting at 0x0006c30e... (42 %)\r\r\nWriting at 0x00071313... (45 %)\r\r\nWriting at 0x000762b6... (48 %)\r\r\nWriting at 0x0007b400... (51 %)\r\r\nWriting at 0x000805c2... (54 %)\r\r\nWriting at 0x00085939... (57 %)\r\r\nWriting at 0x0008ad92... (60 %)\r\r\nWriting at 0x00090b61... (63 %)\r\r\nWriting at 0x00095fc5... (66 %)\r\r\nWriting at 0x0009b66b... (69 %)\r\r\nWriting at 0x000a101c... (72 %)\r\r\nWriting at 0x000a6777... (75 %)\r\r\nWriting at 0x000ac2e8... (78 %)\r\r\nWriting at 0x000b2544... (81 %)\r\r\nWriting at 0x000b7d7a... (84 %)\r\r\nWriting at 0x000bd426... (87 %)\r\r\nWriting at 0x000c6118... (90 %)\r\r\nWriting at 0x000ce18d... (93 %)\r\r\nWriting at 0x000d4089... (96 %)\r\r\nWriting at 0x000da0ae... (100 %)\r\r\nWrote 849392 bytes (540056 compressed) at 0x00010000 in 5.8 seconds (effective 1173.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 505.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1666.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_18080",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5d0 bytes. Smallest app partition is 0x100000 bytes. 0x30a30 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 502.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849360 bytes to 540180...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274ed... (9 %)\r\r\nWriting at 0x0002c040... (12 %)\r\r\nWriting at 0x000347b4... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x0004277d... (21 %)\r\r\nWriting at 0x00048ab4... (24 %)\r\r\nWriting at 0x0004e9c6... (27 %)\r\r\nWriting at 0x00054780... (30 %)\r\r\nWriting at 0x0005a9ec... (33 %)\r\r\nWriting at 0x00060974... (36 %)\r\r\nWriting at 0x000664d7... (39 %)\r\r\nWriting at 0x0006c267... (42 %)\r\r\nWriting at 0x0007127a... (45 %)\r\r\nWriting at 0x000761dd... (48 %)\r\r\nWriting at 0x0007b32c... (51 %)\r\r\nWriting at 0x0008049d... (54 %)\r\r\nWriting at 0x0008587c... (57 %)\r\r\nWriting at 0x0008ac53... (60 %)\r\r\nWriting at 0x00090a8c... (63 %)\r\r\nWriting at 0x00095eb3... (66 %)\r\r\nWriting at 0x0009b5b4... (69 %)\r\r\nWriting at 0x000a0f5d... (72 %)\r\r\nWriting at 0x000a666d... (75 %)\r\r\nWriting at 0x000ac1f8... (78 %)\r\r\nWriting at 0x000b2447... (81 %)\r\r\nWriting at 0x000b7c8a... (84 %)\r\r\nWriting at 0x000bd38b... (87 %)\r\r\nWriting at 0x000c6049... (90 %)\r\r\nWriting at 0x000ce0b6... (93 %)\r\r\nWriting at 0x000d3faf... (96 %)\r\r\nWriting at 0x000da00a... (100 %)\r\r\nWrote 849360 bytes (540180 compressed) at 0x00010000 in 5.8 seconds (effective 1176.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1630.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_18176",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM14 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM14\r\r\nConnecting...\r\r\n\r\r\nA serial exception error occurred: ClearCommError failed (PermissionError(13, 'The device does not recognize the command.', None, 22))\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_18472",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf760 bytes. Smallest app partition is 0x100000 bytes. 0x308a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849760 bytes to 540293...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027585... (9 %)\r\r\nWriting at 0x0002c052... (12 %)\r\r\nWriting at 0x0003481e... (15 %)\r\r\nWriting at 0x0003c916... (18 %)\r\r\nWriting at 0x0004289d... (21 %)\r\r\nWriting at 0x00048b97... (24 %)\r\r\nWriting at 0x0004ead6... (27 %)\r\r\nWriting at 0x000548ac... (30 %)\r\r\nWriting at 0x0005ab69... (33 %)\r\r\nWriting at 0x00060aa8... (36 %)\r\r\nWriting at 0x000665e7... (39 %)\r\r\nWriting at 0x0006c36d... (42 %)\r\r\nWriting at 0x0007137c... (45 %)\r\r\nWriting at 0x00076304... (48 %)\r\r\nWriting at 0x0007b45d... (51 %)\r\r\nWriting at 0x000805df... (54 %)\r\r\nWriting at 0x0008599f... (57 %)\r\r\nWriting at 0x0008adf0... (60 %)\r\r\nWriting at 0x00090bb4... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6be... (69 %)\r\r\nWriting at 0x000a106d... (72 %)\r\r\nWriting at 0x000a67bc... (75 %)\r\r\nWriting at 0x000ac32a... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7da1... (84 %)\r\r\nWriting at 0x000bd490... (87 %)\r\r\nWriting at 0x000c616c... (90 %)\r\r\nWriting at 0x000ce1c1... (93 %)\r\r\nWriting at 0x000d4091... (96 %)\r\r\nWriting at 0x000da108... (100 %)\r\r\nWrote 849760 bytes (540293 compressed) at 0x00010000 in 5.6 seconds (effective 1206.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 506.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1652.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_18504",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540243...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x0002757e... (9 %)\r\r\nWriting at 0x0002c0cd... (12 %)\r\r\nWriting at 0x00034818... (15 %)\r\r\nWriting at 0x0003c90c... (18 %)\r\r\nWriting at 0x00042885... (21 %)\r\r\nWriting at 0x00048b7f... (24 %)\r\r\nWriting at 0x0004ea80... (27 %)\r\r\nWriting at 0x00054856... (30 %)\r\r\nWriting at 0x0005ab12... (33 %)\r\r\nWriting at 0x00060a6c... (36 %)\r\r\nWriting at 0x000665b2... (39 %)\r\r\nWriting at 0x0006c338... (42 %)\r\r\nWriting at 0x00071341... (45 %)\r\r\nWriting at 0x000762c4... (48 %)\r\r\nWriting at 0x0007b423... (51 %)\r\r\nWriting at 0x0008059d... (54 %)\r\r\nWriting at 0x00085967... (57 %)\r\r\nWriting at 0x0008adb9... (60 %)\r\r\nWriting at 0x00090b87... (63 %)\r\r\nWriting at 0x00095fe7... (66 %)\r\r\nWriting at 0x0009b68c... (69 %)\r\r\nWriting at 0x000a103a... (72 %)\r\r\nWriting at 0x000a6791... (75 %)\r\r\nWriting at 0x000ac307... (78 %)\r\r\nWriting at 0x000b2548... (81 %)\r\r\nWriting at 0x000b7d7a... (84 %)\r\r\nWriting at 0x000bd460... (87 %)\r\r\nWriting at 0x000c6144... (90 %)\r\r\nWriting at 0x000ce196... (93 %)\r\r\nWriting at 0x000d4081... (96 %)\r\r\nWriting at 0x000da0d7... (100 %)\r\r\nWrote 849648 bytes (540243 compressed) at 0x00010000 in 5.8 seconds (effective 1180.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 531.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1621.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19192",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540242...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89c... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaf... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f8... (30 %)\r\r\nWriting at 0x0005aa28... (33 %)\r\r\nWriting at 0x000609eb... (36 %)\r\r\nWriting at 0x0006654a... (39 %)\r\r\nWriting at 0x0006c2e5... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625c... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x00080534... (54 %)\r\r\nWriting at 0x00085904... (57 %)\r\r\nWriting at 0x0008acb8... (60 %)\r\r\nWriting at 0x00090b02... (63 %)\r\r\nWriting at 0x00095f18... (66 %)\r\r\nWriting at 0x0009b645... (69 %)\r\r\nWriting at 0x000a0ff1... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24c8... (81 %)\r\r\nWriting at 0x000b7d14... (84 %)\r\r\nWriting at 0x000bd41b... (87 %)\r\r\nWriting at 0x000c60d5... (90 %)\r\r\nWriting at 0x000ce13f... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da086... (100 %)\r\r\nWrote 849568 bytes (540242 compressed) at 0x00010000 in 5.9 seconds (effective 1161.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 586.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1604.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19204",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf650 bytes. Smallest app partition is 0x100000 bytes. 0x309b0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849488 bytes to 540133...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347d7... (15 %)\r\r\nWriting at 0x0003c8ec... (18 %)\r\r\nWriting at 0x00042851... (21 %)\r\r\nWriting at 0x00048b62... (24 %)\r\r\nWriting at 0x0004ea79... (27 %)\r\r\nWriting at 0x00054851... (30 %)\r\r\nWriting at 0x0005aaf4... (33 %)\r\r\nWriting at 0x00060a8e... (36 %)\r\r\nWriting at 0x0006658d... (39 %)\r\r\nWriting at 0x0006c30c... (42 %)\r\r\nWriting at 0x00071325... (45 %)\r\r\nWriting at 0x000762b3... (48 %)\r\r\nWriting at 0x0007b412... (51 %)\r\r\nWriting at 0x0008059c... (54 %)\r\r\nWriting at 0x0008594b... (57 %)\r\r\nWriting at 0x0008ada1... (60 %)\r\r\nWriting at 0x00090b6b... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b679... (69 %)\r\r\nWriting at 0x000a1033... (72 %)\r\r\nWriting at 0x000a677c... (75 %)\r\r\nWriting at 0x000ac2f7... (78 %)\r\r\nWriting at 0x000b253d... (81 %)\r\r\nWriting at 0x000b7d70... (84 %)\r\r\nWriting at 0x000bd43c... (87 %)\r\r\nWriting at 0x000c6124... (90 %)\r\r\nWriting at 0x000ce18a... (93 %)\r\r\nWriting at 0x000d407b... (96 %)\r\r\nWriting at 0x000da0cb... (100 %)\r\r\nWrote 849488 bytes (540133 compressed) at 0x00010000 in 5.6 seconds (effective 1215.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 560.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1676.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19216",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849280 bytes to 540017...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x0002755e... (9 %)\r\r\nWriting at 0x0002c0b0... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8fb... (18 %)\r\r\nWriting at 0x00042856... (21 %)\r\r\nWriting at 0x00048b63... (24 %)\r\r\nWriting at 0x0004ea54... (27 %)\r\r\nWriting at 0x00054808... (30 %)\r\r\nWriting at 0x0005aab9... (33 %)\r\r\nWriting at 0x00060b04... (36 %)\r\r\nWriting at 0x00066576... (39 %)\r\r\nWriting at 0x0006c2e2... (42 %)\r\r\nWriting at 0x00071307... (45 %)\r\r\nWriting at 0x00076297... (48 %)\r\r\nWriting at 0x0007b3d1... (51 %)\r\r\nWriting at 0x000805c5... (54 %)\r\r\nWriting at 0x00085904... (57 %)\r\r\nWriting at 0x0008ad5c... (60 %)\r\r\nWriting at 0x00090b20... (63 %)\r\r\nWriting at 0x00095f85... (66 %)\r\r\nWriting at 0x0009b627... (69 %)\r\r\nWriting at 0x000a0fdc... (72 %)\r\r\nWriting at 0x000a674a... (75 %)\r\r\nWriting at 0x000ac2ae... (78 %)\r\r\nWriting at 0x000b250d... (81 %)\r\r\nWriting at 0x000b7d43... (84 %)\r\r\nWriting at 0x000bd3e9... (87 %)\r\r\nWriting at 0x000c60d7... (90 %)\r\r\nWriting at 0x000ce156... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da075... (100 %)\r\r\nWrote 849280 bytes (540017 compressed) at 0x00010000 in 5.6 seconds (effective 1214.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 543.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1693.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19528",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf590 bytes. Smallest app partition is 0x100000 bytes. 0x30a70 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849296 bytes to 540033...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x00027562... (9 %)\r\r\nWriting at 0x0002c0b4... (12 %)\r\r\nWriting at 0x00034812... (15 %)\r\r\nWriting at 0x0003c906... (18 %)\r\r\nWriting at 0x00042850... (21 %)\r\r\nWriting at 0x00048b5a... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x000547f8... (30 %)\r\r\nWriting at 0x0005aaa0... (33 %)\r\r\nWriting at 0x00060ad3... (36 %)\r\r\nWriting at 0x00066548... (39 %)\r\r\nWriting at 0x0006c2c9... (42 %)\r\r\nWriting at 0x000712ea... (45 %)\r\r\nWriting at 0x0007627a... (48 %)\r\r\nWriting at 0x0007b3b6... (51 %)\r\r\nWriting at 0x00080590... (54 %)\r\r\nWriting at 0x000858f5... (57 %)\r\r\nWriting at 0x0008ad49... (60 %)\r\r\nWriting at 0x00090b13... (63 %)\r\r\nWriting at 0x00095f75... (66 %)\r\r\nWriting at 0x0009b61b... (69 %)\r\r\nWriting at 0x000a0fcb... (72 %)\r\r\nWriting at 0x000a672e... (75 %)\r\r\nWriting at 0x000ac29a... (78 %)\r\r\nWriting at 0x000b24fc... (81 %)\r\r\nWriting at 0x000b7d30... (84 %)\r\r\nWriting at 0x000bd3dc... (87 %)\r\r\nWriting at 0x000c60d0... (90 %)\r\r\nWriting at 0x000ce14b... (93 %)\r\r\nWriting at 0x000d4042... (96 %)\r\r\nWriting at 0x000da06c... (100 %)\r\r\nWrote 849296 bytes (540033 compressed) at 0x00010000 in 5.6 seconds (effective 1218.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 523.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1702.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19904",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 509.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eace... (27 %)\r\r\nWriting at 0x000548aa... (30 %)\r\r\nWriting at 0x0005ab58... (33 %)\r\r\nWriting at 0x00060a96... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c36f... (42 %)\r\r\nWriting at 0x00071388... (45 %)\r\r\nWriting at 0x0007630e... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008adf8... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6c0... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a67c0... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7dac... (84 %)\r\r\nWriting at 0x000bd499... (87 %)\r\r\nWriting at 0x000c6177... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da10d... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.7 seconds (effective 1198.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1644.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_19976",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20000",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf540 bytes. Smallest app partition is 0x100000 bytes. 0x30ac0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 498.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849216 bytes to 540151...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c03f... (12 %)\r\r\nWriting at 0x0003479f... (15 %)\r\r\nWriting at 0x0003c87c... (18 %)\r\r\nWriting at 0x00042740... (21 %)\r\r\nWriting at 0x00048a6c... (24 %)\r\r\nWriting at 0x0004e940... (27 %)\r\r\nWriting at 0x000546ef... (30 %)\r\r\nWriting at 0x0005a966... (33 %)\r\r\nWriting at 0x000608eb... (36 %)\r\r\nWriting at 0x00066443... (39 %)\r\r\nWriting at 0x0006c1e5... (42 %)\r\r\nWriting at 0x000711f7... (45 %)\r\r\nWriting at 0x0007615d... (48 %)\r\r\nWriting at 0x0007b2b6... (51 %)\r\r\nWriting at 0x00080429... (54 %)\r\r\nWriting at 0x00085816... (57 %)\r\r\nWriting at 0x0008abfc... (60 %)\r\r\nWriting at 0x00090a15... (63 %)\r\r\nWriting at 0x00095e37... (66 %)\r\r\nWriting at 0x0009b53a... (69 %)\r\r\nWriting at 0x000a0edf... (72 %)\r\r\nWriting at 0x000a65f2... (75 %)\r\r\nWriting at 0x000ac183... (78 %)\r\r\nWriting at 0x000b23cc... (81 %)\r\r\nWriting at 0x000b7c12... (84 %)\r\r\nWriting at 0x000bd314... (87 %)\r\r\nWriting at 0x000c5fd2... (90 %)\r\r\nWriting at 0x000ce03c... (93 %)\r\r\nWriting at 0x000d3f43... (96 %)\r\r\nWriting at 0x000d9f99... (100 %)\r\r\nWrote 849216 bytes (540151 compressed) at 0x00010000 in 5.9 seconds (effective 1160.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1595.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20252",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540101...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0a8... (12 %)\r\r\nWriting at 0x000347e1... (15 %)\r\r\nWriting at 0x0003c8e0... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b43... (24 %)\r\r\nWriting at 0x0004ea79... (27 %)\r\r\nWriting at 0x00054839... (30 %)\r\r\nWriting at 0x0005aae1... (33 %)\r\r\nWriting at 0x00060ad6... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2fa... (42 %)\r\r\nWriting at 0x00071304... (45 %)\r\r\nWriting at 0x0007629e... (48 %)\r\r\nWriting at 0x0007b3ee... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085926... (57 %)\r\r\nWriting at 0x0008ad7c... (60 %)\r\r\nWriting at 0x00090b47... (63 %)\r\r\nWriting at 0x00095fa9... (66 %)\r\r\nWriting at 0x0009b65d... (69 %)\r\r\nWriting at 0x000a100e... (72 %)\r\r\nWriting at 0x000a675a... (75 %)\r\r\nWriting at 0x000ac2ce... (78 %)\r\r\nWriting at 0x000b251c... (81 %)\r\r\nWriting at 0x000b7d4c... (84 %)\r\r\nWriting at 0x000bd415... (87 %)\r\r\nWriting at 0x000c6103... (90 %)\r\r\nWriting at 0x000ce166... (93 %)\r\r\nWriting at 0x000d4058... (96 %)\r\r\nWriting at 0x000da0a1... (100 %)\r\r\nWrote 849424 bytes (540101 compressed) at 0x00010000 in 5.6 seconds (effective 1202.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 513.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20364",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 487.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540179...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027590... (9 %)\r\r\nWriting at 0x0002c0e3... (12 %)\r\r\nWriting at 0x00034832... (15 %)\r\r\nWriting at 0x0003c931... (18 %)\r\r\nWriting at 0x000428bb... (21 %)\r\r\nWriting at 0x00048b97... (24 %)\r\r\nWriting at 0x0004eae6... (27 %)\r\r\nWriting at 0x000548b1... (30 %)\r\r\nWriting at 0x0005ab64... (33 %)\r\r\nWriting at 0x00060b34... (36 %)\r\r\nWriting at 0x00066605... (39 %)\r\r\nWriting at 0x0006c37c... (42 %)\r\r\nWriting at 0x00071387... (45 %)\r\r\nWriting at 0x00076316... (48 %)\r\r\nWriting at 0x0007b46e... (51 %)\r\r\nWriting at 0x000805f4... (54 %)\r\r\nWriting at 0x000859b3... (57 %)\r\r\nWriting at 0x0008adff... (60 %)\r\r\nWriting at 0x00090bd5... (63 %)\r\r\nWriting at 0x0009603a... (66 %)\r\r\nWriting at 0x0009b6ee... (69 %)\r\r\nWriting at 0x000a109e... (72 %)\r\r\nWriting at 0x000a67ed... (75 %)\r\r\nWriting at 0x000ac35d... (78 %)\r\r\nWriting at 0x000b25ab... (81 %)\r\r\nWriting at 0x000b7dd2... (84 %)\r\r\nWriting at 0x000bd4a1... (87 %)\r\r\nWriting at 0x000c618e... (90 %)\r\r\nWriting at 0x000ce1f3... (93 %)\r\r\nWriting at 0x000d40d0... (96 %)\r\r\nWriting at 0x000da127... (100 %)\r\r\nWrote 849648 bytes (540179 compressed) at 0x00010000 in 5.6 seconds (effective 1213.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 536.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1707.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20664",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf790 bytes. Smallest app partition is 0x100000 bytes. 0x30870 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 505.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849808 bytes to 540404...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8d... (6 %)\r\r\nWriting at 0x000275b7... (9 %)\r\r\nWriting at 0x0002c062... (12 %)\r\r\nWriting at 0x00034842... (15 %)\r\r\nWriting at 0x0003c92a... (18 %)\r\r\nWriting at 0x000428bb... (21 %)\r\r\nWriting at 0x00048ba8... (24 %)\r\r\nWriting at 0x0004ea86... (27 %)\r\r\nWriting at 0x00054844... (30 %)\r\r\nWriting at 0x0005ab17... (33 %)\r\r\nWriting at 0x00060a5b... (36 %)\r\r\nWriting at 0x000665a8... (39 %)\r\r\nWriting at 0x0006c335... (42 %)\r\r\nWriting at 0x00071346... (45 %)\r\r\nWriting at 0x000762ce... (48 %)\r\r\nWriting at 0x0007b40f... (51 %)\r\r\nWriting at 0x0008059a... (54 %)\r\r\nWriting at 0x00085957... (57 %)\r\r\nWriting at 0x0008ad5b... (60 %)\r\r\nWriting at 0x00090b53... (63 %)\r\r\nWriting at 0x00095f76... (66 %)\r\r\nWriting at 0x0009b66e... (69 %)\r\r\nWriting at 0x000a1020... (72 %)\r\r\nWriting at 0x000a6746... (75 %)\r\r\nWriting at 0x000ac2db... (78 %)\r\r\nWriting at 0x000b2510... (81 %)\r\r\nWriting at 0x000b7d61... (84 %)\r\r\nWriting at 0x000bd453... (87 %)\r\r\nWriting at 0x000c6124... (90 %)\r\r\nWriting at 0x000ce17a... (93 %)\r\r\nWriting at 0x000d4024... (96 %)\r\r\nWriting at 0x000da0b1... (100 %)\r\r\nWrote 849808 bytes (540404 compressed) at 0x00010000 in 5.8 seconds (effective 1172.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 527.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1606.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20844",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf550 bytes. Smallest app partition is 0x100000 bytes. 0x30ab0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 491.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849232 bytes to 539989...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa1... (6 %)\r\r\nWriting at 0x00027565... (9 %)\r\r\nWriting at 0x0002c0b3... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8f7... (18 %)\r\r\nWriting at 0x00042857... (21 %)\r\r\nWriting at 0x00048b64... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x000547f4... (30 %)\r\r\nWriting at 0x0005aac4... (33 %)\r\r\nWriting at 0x00060aeb... (36 %)\r\r\nWriting at 0x0006655d... (39 %)\r\r\nWriting at 0x0006c2d2... (42 %)\r\r\nWriting at 0x000712eb... (45 %)\r\r\nWriting at 0x00076281... (48 %)\r\r\nWriting at 0x0007b3b8... (51 %)\r\r\nWriting at 0x000805d0... (54 %)\r\r\nWriting at 0x000858f1... (57 %)\r\r\nWriting at 0x0008ad49... (60 %)\r\r\nWriting at 0x00090b08... (63 %)\r\r\nWriting at 0x00095f7e... (66 %)\r\r\nWriting at 0x0009b621... (69 %)\r\r\nWriting at 0x000a0fc3... (72 %)\r\r\nWriting at 0x000a674b... (75 %)\r\r\nWriting at 0x000ac28e... (78 %)\r\r\nWriting at 0x000b24f7... (81 %)\r\r\nWriting at 0x000b7d34... (84 %)\r\r\nWriting at 0x000bd41a... (87 %)\r\r\nWriting at 0x000c60bd... (90 %)\r\r\nWriting at 0x000ce13e... (93 %)\r\r\nWriting at 0x000d4034... (96 %)\r\r\nWriting at 0x000da063... (100 %)\r\r\nWrote 849232 bytes (539989 compressed) at 0x00010000 in 5.6 seconds (effective 1220.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 499.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1706.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_20952",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 511.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540122...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x000427a4... (21 %)\r\r\nWriting at 0x00048ac7... (24 %)\r\r\nWriting at 0x0004ea3f... (27 %)\r\r\nWriting at 0x000547fb... (30 %)\r\r\nWriting at 0x0005aac7... (33 %)\r\r\nWriting at 0x00060a12... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2fa... (42 %)\r\r\nWriting at 0x0007130e... (45 %)\r\r\nWriting at 0x00076287... (48 %)\r\r\nWriting at 0x0007b3ce... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085925... (57 %)\r\r\nWriting at 0x0008ad10... (60 %)\r\r\nWriting at 0x00090b2e... (63 %)\r\r\nWriting at 0x00095f6d... (66 %)\r\r\nWriting at 0x0009b653... (69 %)\r\r\nWriting at 0x000a0fff... (72 %)\r\r\nWriting at 0x000a671d... (75 %)\r\r\nWriting at 0x000ac2ba... (78 %)\r\r\nWriting at 0x000b24ee... (81 %)\r\r\nWriting at 0x000b7d30... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60f4... (90 %)\r\r\nWriting at 0x000ce14c... (93 %)\r\r\nWriting at 0x000d4053... (96 %)\r\r\nWriting at 0x000da0a8... (100 %)\r\r\nWrote 849456 bytes (540122 compressed) at 0x00010000 in 5.8 seconds (effective 1180.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 587.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1614.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21036",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5c0 bytes. Smallest app partition is 0x100000 bytes. 0x30a40 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 505.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849344 bytes to 540177...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347b4... (15 %)\r\r\nWriting at 0x0003c896... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048abd... (24 %)\r\r\nWriting at 0x0004e9b7... (27 %)\r\r\nWriting at 0x00054768... (30 %)\r\r\nWriting at 0x0005a9ef... (33 %)\r\r\nWriting at 0x00060966... (36 %)\r\r\nWriting at 0x000664c6... (39 %)\r\r\nWriting at 0x0006c257... (42 %)\r\r\nWriting at 0x0007126a... (45 %)\r\r\nWriting at 0x000761cd... (48 %)\r\r\nWriting at 0x0007b31d... (51 %)\r\r\nWriting at 0x00080492... (54 %)\r\r\nWriting at 0x00085878... (57 %)\r\r\nWriting at 0x0008ac34... (60 %)\r\r\nWriting at 0x00090a7a... (63 %)\r\r\nWriting at 0x00095ea1... (66 %)\r\r\nWriting at 0x0009b5a3... (69 %)\r\r\nWriting at 0x000a0f4a... (72 %)\r\r\nWriting at 0x000a665b... (75 %)\r\r\nWriting at 0x000ac1e4... (78 %)\r\r\nWriting at 0x000b2434... (81 %)\r\r\nWriting at 0x000b7c7a... (84 %)\r\r\nWriting at 0x000bd377... (87 %)\r\r\nWriting at 0x000c6037... (90 %)\r\r\nWriting at 0x000ce0a3... (93 %)\r\r\nWriting at 0x000d3f9b... (96 %)\r\r\nWriting at 0x000d9ff3... (100 %)\r\r\nWrote 849344 bytes (540177 compressed) at 0x00010000 in 5.7 seconds (effective 1185.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 586.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1617.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21048",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 475.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540133...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca20... (6 %)\r\r\nWriting at 0x000274ef... (9 %)\r\r\nWriting at 0x0002c045... (12 %)\r\r\nWriting at 0x00034797... (15 %)\r\r\nWriting at 0x0003c88f... (18 %)\r\r\nWriting at 0x0004278e... (21 %)\r\r\nWriting at 0x00048abd... (24 %)\r\r\nWriting at 0x0004eaad... (27 %)\r\r\nWriting at 0x00054873... (30 %)\r\r\nWriting at 0x0005ab2d... (33 %)\r\r\nWriting at 0x00060a74... (36 %)\r\r\nWriting at 0x000665c1... (39 %)\r\r\nWriting at 0x0006c349... (42 %)\r\r\nWriting at 0x00071371... (45 %)\r\r\nWriting at 0x000762e8... (48 %)\r\r\nWriting at 0x0007b432... (51 %)\r\r\nWriting at 0x000805b6... (54 %)\r\r\nWriting at 0x00085983... (57 %)\r\r\nWriting at 0x0008ad81... (60 %)\r\r\nWriting at 0x00090b91... (63 %)\r\r\nWriting at 0x00095fce... (66 %)\r\r\nWriting at 0x0009b6ad... (69 %)\r\r\nWriting at 0x000a105c... (72 %)\r\r\nWriting at 0x000a677f... (75 %)\r\r\nWriting at 0x000ac317... (78 %)\r\r\nWriting at 0x000b254b... (81 %)\r\r\nWriting at 0x000b7d94... (84 %)\r\r\nWriting at 0x000bd487... (87 %)\r\r\nWriting at 0x000c6159... (90 %)\r\r\nWriting at 0x000ce1af... (93 %)\r\r\nWriting at 0x000d40b4... (96 %)\r\r\nWriting at 0x000da107... (100 %)\r\r\nWrote 849552 bytes (540133 compressed) at 0x00010000 in 5.7 seconds (effective 1191.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 527.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1537.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21216",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540235...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa9... (24 %)\r\r\nWriting at 0x0004ea28... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f8... (36 %)\r\r\nWriting at 0x00066553... (39 %)\r\r\nWriting at 0x0006c2ec... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ba... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff6... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540235 compressed) at 0x00010000 in 5.7 seconds (effective 1192.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 548.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 427658...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (14 %)\r\r\nWriting at 0x00121719... (18 %)\r\r\nWriting at 0x00125bce... (22 %)\r\r\nWriting at 0x0012a1f5... (25 %)\r\r\nWriting at 0x0012e61b... (29 %)\r\r\nWriting at 0x00132b85... (33 %)\r\r\nWriting at 0x00136fe3... (37 %)\r\r\nWriting at 0x0013b616... (40 %)\r\r\nWriting at 0x0013fad3... (44 %)\r\r\nWriting at 0x00143ecd... (48 %)\r\r\nWriting at 0x0014854c... (51 %)\r\r\nWriting at 0x0014df02... (55 %)\r\r\nWriting at 0x0015244e... (59 %)\r\r\nWriting at 0x001572f5... (62 %)\r\r\nWriting at 0x0015ca09... (66 %)\r\r\nWriting at 0x00160e24... (70 %)\r\r\nWriting at 0x00165dc2... (74 %)\r\r\nWriting at 0x0016b33c... (77 %)\r\r\nWriting at 0x0016f756... (81 %)\r\r\nWriting at 0x00173efb... (85 %)\r\r\nWriting at 0x00178e11... (88 %)\r\r\nWriting at 0x0017d23f... (92 %)\r\r\nWriting at 0x0018ee17... (96 %)\r\r\nWriting at 0x00197618... (100 %)\r\r\nWrote 983040 bytes (427658 compressed) at 0x00110000 in 4.9 seconds (effective 1614.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21308",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 500.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540364...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca97... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0ce... (12 %)\r\r\nWriting at 0x0003480a... (15 %)\r\r\nWriting at 0x0003c8f7... (18 %)\r\r\nWriting at 0x0004286a... (21 %)\r\r\nWriting at 0x00048b64... (24 %)\r\r\nWriting at 0x0004ea4e... (27 %)\r\r\nWriting at 0x0005481f... (30 %)\r\r\nWriting at 0x0005aaa6... (33 %)\r\r\nWriting at 0x00060a0b... (36 %)\r\r\nWriting at 0x0006655d... (39 %)\r\r\nWriting at 0x0006c2ef... (42 %)\r\r\nWriting at 0x0007130b... (45 %)\r\r\nWriting at 0x00076263... (48 %)\r\r\nWriting at 0x0007b3ca... (51 %)\r\r\nWriting at 0x00080532... (54 %)\r\r\nWriting at 0x00085917... (57 %)\r\r\nWriting at 0x0008ad07... (60 %)\r\r\nWriting at 0x00090b1c... (63 %)\r\r\nWriting at 0x00095f41... (66 %)\r\r\nWriting at 0x0009b641... (69 %)\r\r\nWriting at 0x000a0fe5... (72 %)\r\r\nWriting at 0x000a670c... (75 %)\r\r\nWriting at 0x000ac29b... (78 %)\r\r\nWriting at 0x000b24e7... (81 %)\r\r\nWriting at 0x000b7d35... (84 %)\r\r\nWriting at 0x000bd430... (87 %)\r\r\nWriting at 0x000c60ff... (90 %)\r\r\nWriting at 0x000ce156... (93 %)\r\r\nWriting at 0x000d4017... (96 %)\r\r\nWriting at 0x000da0a2... (100 %)\r\r\nWrote 849728 bytes (540364 compressed) at 0x00010000 in 5.8 seconds (effective 1179.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 567.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1600.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21780",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540120...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x000427a6... (21 %)\r\r\nWriting at 0x00048ac7... (24 %)\r\r\nWriting at 0x0004ea42... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aac9... (33 %)\r\r\nWriting at 0x00060a12... (36 %)\r\r\nWriting at 0x0006656c... (39 %)\r\r\nWriting at 0x0006c2fc... (42 %)\r\r\nWriting at 0x00071311... (45 %)\r\r\nWriting at 0x00076287... (48 %)\r\r\nWriting at 0x0007b3cf... (51 %)\r\r\nWriting at 0x00080552... (54 %)\r\r\nWriting at 0x00085927... (57 %)\r\r\nWriting at 0x0008ad15... (60 %)\r\r\nWriting at 0x00090b31... (63 %)\r\r\nWriting at 0x00095f6f... (66 %)\r\r\nWriting at 0x0009b656... (69 %)\r\r\nWriting at 0x000a1001... (72 %)\r\r\nWriting at 0x000a6722... (75 %)\r\r\nWriting at 0x000ac2bc... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d32... (84 %)\r\r\nWriting at 0x000bd428... (87 %)\r\r\nWriting at 0x000c60f7... (90 %)\r\r\nWriting at 0x000ce14e... (93 %)\r\r\nWriting at 0x000d405a... (96 %)\r\r\nWriting at 0x000da0ab... (100 %)\r\r\nWrote 849456 bytes (540120 compressed) at 0x00010000 in 5.7 seconds (effective 1202.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 543.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1631.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21804",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf670 bytes. Smallest app partition is 0x100000 bytes. 0x30990 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 513.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849520 bytes to 540216...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347a7... (15 %)\r\r\nWriting at 0x0003c88c... (18 %)\r\r\nWriting at 0x00042788... (21 %)\r\r\nWriting at 0x00048abd... (24 %)\r\r\nWriting at 0x0004ea58... (27 %)\r\r\nWriting at 0x00054825... (30 %)\r\r\nWriting at 0x0005aaa1... (33 %)\r\r\nWriting at 0x00060a1c... (36 %)\r\r\nWriting at 0x0006656d... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x0007131e... (45 %)\r\r\nWriting at 0x0007627a... (48 %)\r\r\nWriting at 0x0007b3cb... (51 %)\r\r\nWriting at 0x0008053f... (54 %)\r\r\nWriting at 0x00085914... (57 %)\r\r\nWriting at 0x0008acce... (60 %)\r\r\nWriting at 0x00090af8... (63 %)\r\r\nWriting at 0x00095f1d... (66 %)\r\r\nWriting at 0x0009b637... (69 %)\r\r\nWriting at 0x000a0fe1... (72 %)\r\r\nWriting at 0x000a66e3... (75 %)\r\r\nWriting at 0x000ac260... (78 %)\r\r\nWriting at 0x000b24c1... (81 %)\r\r\nWriting at 0x000b7d03... (84 %)\r\r\nWriting at 0x000bd40c... (87 %)\r\r\nWriting at 0x000c60c8... (90 %)\r\r\nWriting at 0x000ce134... (93 %)\r\r\nWriting at 0x000d4029... (96 %)\r\r\nWriting at 0x000da080... (100 %)\r\r\nWrote 849520 bytes (540216 compressed) at 0x00010000 in 5.8 seconds (effective 1172.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1604.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21872",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540143...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca62... (6 %)\r\r\nWriting at 0x00027595... (9 %)\r\r\nWriting at 0x0002c0ea... (12 %)\r\r\nWriting at 0x00034827... (15 %)\r\r\nWriting at 0x0003c921... (18 %)\r\r\nWriting at 0x000428b0... (21 %)\r\r\nWriting at 0x00048bab... (24 %)\r\r\nWriting at 0x0004ead6... (27 %)\r\r\nWriting at 0x0005488e... (30 %)\r\r\nWriting at 0x0005ab35... (33 %)\r\r\nWriting at 0x00060b2c... (36 %)\r\r\nWriting at 0x000665dd... (39 %)\r\r\nWriting at 0x0006c34a... (42 %)\r\r\nWriting at 0x00071363... (45 %)\r\r\nWriting at 0x000762f9... (48 %)\r\r\nWriting at 0x0007b445... (51 %)\r\r\nWriting at 0x000805e5... (54 %)\r\r\nWriting at 0x0008598d... (57 %)\r\r\nWriting at 0x0008adde... (60 %)\r\r\nWriting at 0x00090ba6... (63 %)\r\r\nWriting at 0x00096011... (66 %)\r\r\nWriting at 0x0009b6c4... (69 %)\r\r\nWriting at 0x000a1071... (72 %)\r\r\nWriting at 0x000a67c4... (75 %)\r\r\nWriting at 0x000ac335... (78 %)\r\r\nWriting at 0x000b2587... (81 %)\r\r\nWriting at 0x000b7dbf... (84 %)\r\r\nWriting at 0x000bd473... (87 %)\r\r\nWriting at 0x000c6169... (90 %)\r\r\nWriting at 0x000ce1ce... (93 %)\r\r\nWriting at 0x000d40b0... (96 %)\r\r\nWriting at 0x000da0fd... (100 %)\r\r\nWrote 849568 bytes (540143 compressed) at 0x00010000 in 5.6 seconds (effective 1211.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 550.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1691.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_21972",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 506.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540243...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x0004278a... (21 %)\r\r\nWriting at 0x00048aaf... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f9... (30 %)\r\r\nWriting at 0x0005aa2d... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e8... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625d... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x00080535... (54 %)\r\r\nWriting at 0x00085905... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090b03... (63 %)\r\r\nWriting at 0x00095f18... (66 %)\r\r\nWriting at 0x0009b649... (69 %)\r\r\nWriting at 0x000a0ff2... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24ce... (81 %)\r\r\nWriting at 0x000b7d15... (84 %)\r\r\nWriting at 0x000bd41c... (87 %)\r\r\nWriting at 0x000c60d6... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da087... (100 %)\r\r\nWrote 849568 bytes (540243 compressed) at 0x00010000 in 5.9 seconds (effective 1155.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 538.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1590.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22056",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540242...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca39... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347a5... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaa... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f8... (30 %)\r\r\nWriting at 0x0005aa28... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e8... (42 %)\r\r\nWriting at 0x00071300... (45 %)\r\r\nWriting at 0x0007625d... (48 %)\r\r\nWriting at 0x0007b3b3... (51 %)\r\r\nWriting at 0x00080535... (54 %)\r\r\nWriting at 0x00085905... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090b04... (63 %)\r\r\nWriting at 0x00095f18... (66 %)\r\r\nWriting at 0x0009b645... (69 %)\r\r\nWriting at 0x000a0ff2... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24ce... (81 %)\r\r\nWriting at 0x000b7d15... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60d6... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da087... (100 %)\r\r\nWrote 849568 bytes (540242 compressed) at 0x00010000 in 5.9 seconds (effective 1158.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 559.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1599.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22124",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf060 bytes. Smallest app partition is 0x100000 bytes. 0x30fa0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 847968 bytes to 539179...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274cc... (9 %)\r\r\nWriting at 0x0002c065... (12 %)\r\r\nWriting at 0x00034778... (15 %)\r\r\nWriting at 0x0003c860... (18 %)\r\r\nWriting at 0x00042731... (21 %)\r\r\nWriting at 0x00048a73... (24 %)\r\r\nWriting at 0x0004e9e7... (27 %)\r\r\nWriting at 0x00054755... (30 %)\r\r\nWriting at 0x0005aa22... (33 %)\r\r\nWriting at 0x00060a49... (36 %)\r\r\nWriting at 0x000664a2... (39 %)\r\r\nWriting at 0x0006c198... (42 %)\r\r\nWriting at 0x000711af... (45 %)\r\r\nWriting at 0x00076190... (48 %)\r\r\nWriting at 0x0007b232... (51 %)\r\r\nWriting at 0x0008057b... (54 %)\r\r\nWriting at 0x0008580b... (57 %)\r\r\nWriting at 0x0008acfd... (60 %)\r\r\nWriting at 0x000909e0... (63 %)\r\r\nWriting at 0x00095f2a... (66 %)\r\r\nWriting at 0x0009b58f... (69 %)\r\r\nWriting at 0x000a0f2e... (72 %)\r\r\nWriting at 0x000a66b4... (75 %)\r\r\nWriting at 0x000ac1de... (78 %)\r\r\nWriting at 0x000b2406... (81 %)\r\r\nWriting at 0x000b7c24... (84 %)\r\r\nWriting at 0x000bd38c... (87 %)\r\r\nWriting at 0x000c605d... (90 %)\r\r\nWriting at 0x000ce00d... (93 %)\r\r\nWriting at 0x000d3f9f... (96 %)\r\r\nWriting at 0x000d9fb4... (100 %)\r\r\nWrote 847968 bytes (539179 compressed) at 0x00010000 in 5.6 seconds (effective 1202.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 565.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1645.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_2224",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 478.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540245...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaa... (24 %)\r\r\nWriting at 0x0004ea1c... (27 %)\r\r\nWriting at 0x000547f6... (30 %)\r\r\nWriting at 0x0005aa27... (33 %)\r\r\nWriting at 0x000609eb... (36 %)\r\r\nWriting at 0x0006654a... (39 %)\r\r\nWriting at 0x0006c2e5... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625b... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x00080533... (54 %)\r\r\nWriting at 0x00085903... (57 %)\r\r\nWriting at 0x0008acb6... (60 %)\r\r\nWriting at 0x00090b01... (63 %)\r\r\nWriting at 0x00095f14... (66 %)\r\r\nWriting at 0x0009b644... (69 %)\r\r\nWriting at 0x000a0ff0... (72 %)\r\r\nWriting at 0x000a66ec... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24c8... (81 %)\r\r\nWriting at 0x000b7d12... (84 %)\r\r\nWriting at 0x000bd41a... (87 %)\r\r\nWriting at 0x000c60d4... (90 %)\r\r\nWriting at 0x000ce13d... (93 %)\r\r\nWriting at 0x000d4029... (96 %)\r\r\nWriting at 0x000da084... (100 %)\r\r\nWrote 849568 bytes (540245 compressed) at 0x00010000 in 5.6 seconds (effective 1207.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 509.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1617.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22272",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf670 bytes. Smallest app partition is 0x100000 bytes. 0x30990 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 515.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849520 bytes to 540214...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347a7... (15 %)\r\r\nWriting at 0x0003c88c... (18 %)\r\r\nWriting at 0x00042788... (21 %)\r\r\nWriting at 0x00048aba... (24 %)\r\r\nWriting at 0x0004ea5d... (27 %)\r\r\nWriting at 0x00054826... (30 %)\r\r\nWriting at 0x0005aaa1... (33 %)\r\r\nWriting at 0x00060a1c... (36 %)\r\r\nWriting at 0x0006656e... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x0007131e... (45 %)\r\r\nWriting at 0x0007627b... (48 %)\r\r\nWriting at 0x0007b3cb... (51 %)\r\r\nWriting at 0x00080540... (54 %)\r\r\nWriting at 0x00085915... (57 %)\r\r\nWriting at 0x0008acce... (60 %)\r\r\nWriting at 0x00090af8... (63 %)\r\r\nWriting at 0x00095f21... (66 %)\r\r\nWriting at 0x0009b638... (69 %)\r\r\nWriting at 0x000a0fe3... (72 %)\r\r\nWriting at 0x000a66f0... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24c1... (81 %)\r\r\nWriting at 0x000b7d06... (84 %)\r\r\nWriting at 0x000bd40d... (87 %)\r\r\nWriting at 0x000c60cb... (90 %)\r\r\nWriting at 0x000ce136... (93 %)\r\r\nWriting at 0x000d402a... (96 %)\r\r\nWriting at 0x000da080... (100 %)\r\r\nWrote 849520 bytes (540214 compressed) at 0x00010000 in 5.8 seconds (effective 1178.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1616.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22728",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540241...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fb... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347aa... (15 %)\r\r\nWriting at 0x0003c89e... (18 %)\r\r\nWriting at 0x0004278a... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f9... (30 %)\r\r\nWriting at 0x0005aa2d... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e9... (42 %)\r\r\nWriting at 0x00071301... (45 %)\r\r\nWriting at 0x0007625d... (48 %)\r\r\nWriting at 0x0007b3b3... (51 %)\r\r\nWriting at 0x00080535... (54 %)\r\r\nWriting at 0x00085905... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090b04... (63 %)\r\r\nWriting at 0x00095f18... (66 %)\r\r\nWriting at 0x0009b645... (69 %)\r\r\nWriting at 0x000a0ff2... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24ce... (81 %)\r\r\nWriting at 0x000b7d15... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60d6... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da087... (100 %)\r\r\nWrote 849568 bytes (540241 compressed) at 0x00010000 in 5.8 seconds (effective 1164.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1604.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22764",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_22776",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 505.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540229...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347ab... (15 %)\r\r\nWriting at 0x0003c893... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048ac3... (24 %)\r\r\nWriting at 0x0004ea2c... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aa3e... (33 %)\r\r\nWriting at 0x000609f0... (36 %)\r\r\nWriting at 0x00066548... (39 %)\r\r\nWriting at 0x0006c2e0... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007625f... (48 %)\r\r\nWriting at 0x0007b3b4... (51 %)\r\r\nWriting at 0x0008052b... (54 %)\r\r\nWriting at 0x000858fc... (57 %)\r\r\nWriting at 0x0008acb0... (60 %)\r\r\nWriting at 0x00090af1... (63 %)\r\r\nWriting at 0x00095f0c... (66 %)\r\r\nWriting at 0x0009b638... (69 %)\r\r\nWriting at 0x000a0fde... (72 %)\r\r\nWriting at 0x000a66dd... (75 %)\r\r\nWriting at 0x000ac24c... (78 %)\r\r\nWriting at 0x000b24b9... (81 %)\r\r\nWriting at 0x000b7d09... (84 %)\r\r\nWriting at 0x000bd414... (87 %)\r\r\nWriting at 0x000c60ce... (90 %)\r\r\nWriting at 0x000ce138... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da088... (100 %)\r\r\nWrote 849552 bytes (540229 compressed) at 0x00010000 in 5.8 seconds (effective 1166.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1610.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_23396",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540240...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fc... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x000347aa... (15 %)\r\r\nWriting at 0x0003c89e... (18 %)\r\r\nWriting at 0x0004278b... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547fa... (30 %)\r\r\nWriting at 0x0005aa2d... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e9... (42 %)\r\r\nWriting at 0x00071301... (45 %)\r\r\nWriting at 0x0007625e... (48 %)\r\r\nWriting at 0x0007b3b3... (51 %)\r\r\nWriting at 0x00080536... (54 %)\r\r\nWriting at 0x00085906... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090b04... (63 %)\r\r\nWriting at 0x00095f1b... (66 %)\r\r\nWriting at 0x0009b649... (69 %)\r\r\nWriting at 0x000a0ff3... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d16... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60d7... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d4030... (96 %)\r\r\nWriting at 0x000da087... (100 %)\r\r\nWrote 849568 bytes (540240 compressed) at 0x00010000 in 5.9 seconds (effective 1160.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1596.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_23812",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540088...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b3b... (24 %)\r\r\nWriting at 0x0004ea8c... (27 %)\r\r\nWriting at 0x0005484c... (30 %)\r\r\nWriting at 0x0005aaee... (33 %)\r\r\nWriting at 0x00060b0c... (36 %)\r\r\nWriting at 0x0006658d... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x00071313... (45 %)\r\r\nWriting at 0x000762ae... (48 %)\r\r\nWriting at 0x0007b3fe... (51 %)\r\r\nWriting at 0x000805a3... (54 %)\r\r\nWriting at 0x00085935... (57 %)\r\r\nWriting at 0x0008ad88... (60 %)\r\r\nWriting at 0x00090b55... (63 %)\r\r\nWriting at 0x00095fb9... (66 %)\r\r\nWriting at 0x0009b669... (69 %)\r\r\nWriting at 0x000a101a... (72 %)\r\r\nWriting at 0x000a676b... (75 %)\r\r\nWriting at 0x000ac2dc... (78 %)\r\r\nWriting at 0x000b252d... (81 %)\r\r\nWriting at 0x000b7d6a... (84 %)\r\r\nWriting at 0x000bd421... (87 %)\r\r\nWriting at 0x000c6116... (90 %)\r\r\nWriting at 0x000ce179... (93 %)\r\r\nWriting at 0x000d4071... (96 %)\r\r\nWriting at 0x000da0a7... (100 %)\r\r\nWrote 849424 bytes (540088 compressed) at 0x00010000 in 5.6 seconds (effective 1213.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 537.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1696.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_2464",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6e0 bytes. Smallest app partition is 0x100000 bytes. 0x30920 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849632 bytes to 540196...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034829... (15 %)\r\r\nWriting at 0x0003c91d... (18 %)\r\r\nWriting at 0x000428a7... (21 %)\r\r\nWriting at 0x00048b8d... (24 %)\r\r\nWriting at 0x0004eabe... (27 %)\r\r\nWriting at 0x0005488d... (30 %)\r\r\nWriting at 0x0005ab32... (33 %)\r\r\nWriting at 0x00060add... (36 %)\r\r\nWriting at 0x000665cd... (39 %)\r\r\nWriting at 0x0006c344... (42 %)\r\r\nWriting at 0x0007135a... (45 %)\r\r\nWriting at 0x000762ef... (48 %)\r\r\nWriting at 0x0007b444... (51 %)\r\r\nWriting at 0x000805ce... (54 %)\r\r\nWriting at 0x0008598e... (57 %)\r\r\nWriting at 0x0008add5... (60 %)\r\r\nWriting at 0x00090ba4... (63 %)\r\r\nWriting at 0x0009600e... (66 %)\r\r\nWriting at 0x0009b6b6... (69 %)\r\r\nWriting at 0x000a106b... (72 %)\r\r\nWriting at 0x000a67b2... (75 %)\r\r\nWriting at 0x000ac334... (78 %)\r\r\nWriting at 0x000b2574... (81 %)\r\r\nWriting at 0x000b7da9... (84 %)\r\r\nWriting at 0x000bd474... (87 %)\r\r\nWriting at 0x000c615d... (90 %)\r\r\nWriting at 0x000ce1c2... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da0f4... (100 %)\r\r\nWrote 849632 bytes (540196 compressed) at 0x00010000 in 5.6 seconds (effective 1208.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 539.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1686.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_24736",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 557.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c04c... (12 %)\r\r\nWriting at 0x0003479e... (15 %)\r\r\nWriting at 0x0003c88c... (18 %)\r\r\nWriting at 0x00042785... (21 %)\r\r\nWriting at 0x00048ab5... (24 %)\r\r\nWriting at 0x0004e9b7... (27 %)\r\r\nWriting at 0x00054759... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x00060974... (36 %)\r\r\nWriting at 0x000664d8... (39 %)\r\r\nWriting at 0x0006c261... (42 %)\r\r\nWriting at 0x0007126d... (45 %)\r\r\nWriting at 0x000761fe... (48 %)\r\r\nWriting at 0x0007b33a... (51 %)\r\r\nWriting at 0x000804c1... (54 %)\r\r\nWriting at 0x00085887... (57 %)\r\r\nWriting at 0x0008ac7c... (60 %)\r\r\nWriting at 0x00090a96... (63 %)\r\r\nWriting at 0x00095ee8... (66 %)\r\r\nWriting at 0x0009b5b2... (69 %)\r\r\nWriting at 0x000a0f65... (72 %)\r\r\nWriting at 0x000a6682... (75 %)\r\r\nWriting at 0x000ac21c... (78 %)\r\r\nWriting at 0x000b2456... (81 %)\r\r\nWriting at 0x000b7c93... (84 %)\r\r\nWriting at 0x000bd388... (87 %)\r\r\nWriting at 0x000c6058... (90 %)\r\r\nWriting at 0x000ce0b1... (93 %)\r\r\nWriting at 0x000d3fc0... (96 %)\r\r\nWriting at 0x000da009... (100 %)\r\r\nWrote 849264 bytes (540102 compressed) at 0x00010000 in 5.7 seconds (effective 1198.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 555.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.6 seconds (effective 1712.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_24812",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540238...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca39... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaa... (24 %)\r\r\nWriting at 0x0004ea23... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f5... (36 %)\r\r\nWriting at 0x00066551... (39 %)\r\r\nWriting at 0x0006c2eb... (42 %)\r\r\nWriting at 0x00071301... (45 %)\r\r\nWriting at 0x00076261... (48 %)\r\r\nWriting at 0x0007b3b5... (51 %)\r\r\nWriting at 0x00080539... (54 %)\r\r\nWriting at 0x00085908... (57 %)\r\r\nWriting at 0x0008acbc... (60 %)\r\r\nWriting at 0x00090b09... (63 %)\r\r\nWriting at 0x00095f21... (66 %)\r\r\nWriting at 0x0009b64c... (69 %)\r\r\nWriting at 0x000a0ff5... (72 %)\r\r\nWriting at 0x000a66f6... (75 %)\r\r\nWriting at 0x000ac266... (78 %)\r\r\nWriting at 0x000b24d1... (81 %)\r\r\nWriting at 0x000b7d18... (84 %)\r\r\nWriting at 0x000bd420... (87 %)\r\r\nWriting at 0x000c60d9... (90 %)\r\r\nWriting at 0x000ce144... (93 %)\r\r\nWriting at 0x000d4033... (96 %)\r\r\nWriting at 0x000da089... (100 %)\r\r\nWrote 849568 bytes (540238 compressed) at 0x00010000 in 5.8 seconds (effective 1165.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 569.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1602.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25180",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf670 bytes. Smallest app partition is 0x100000 bytes. 0x30990 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 517.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849520 bytes to 540219...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f2... (9 %)\r\r\nWriting at 0x0002c044... (12 %)\r\r\nWriting at 0x00034794... (15 %)\r\r\nWriting at 0x0003c888... (18 %)\r\r\nWriting at 0x00042788... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004ea47... (27 %)\r\r\nWriting at 0x00054814... (30 %)\r\r\nWriting at 0x0005aa7c... (33 %)\r\r\nWriting at 0x00060a02... (36 %)\r\r\nWriting at 0x00066554... (39 %)\r\r\nWriting at 0x0006c2f0... (42 %)\r\r\nWriting at 0x00071307... (45 %)\r\r\nWriting at 0x00076266... (48 %)\r\r\nWriting at 0x0007b3b6... (51 %)\r\r\nWriting at 0x00080530... (54 %)\r\r\nWriting at 0x00085900... (57 %)\r\r\nWriting at 0x0008acbf... (60 %)\r\r\nWriting at 0x00090ae8... (63 %)\r\r\nWriting at 0x00095f05... (66 %)\r\r\nWriting at 0x0009b62a... (69 %)\r\r\nWriting at 0x000a0fd4... (72 %)\r\r\nWriting at 0x000a66d6... (75 %)\r\r\nWriting at 0x000ac246... (78 %)\r\r\nWriting at 0x000b24b1... (81 %)\r\r\nWriting at 0x000b7cf6... (84 %)\r\r\nWriting at 0x000bd3ff... (87 %)\r\r\nWriting at 0x000c60b8... (90 %)\r\r\nWriting at 0x000ce127... (93 %)\r\r\nWriting at 0x000d401f... (96 %)\r\r\nWriting at 0x000da075... (100 %)\r\r\nWrote 849520 bytes (540219 compressed) at 0x00010000 in 5.8 seconds (effective 1175.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 552.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1608.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25200",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf650 bytes. Smallest app partition is 0x100000 bytes. 0x309b0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 508.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849488 bytes to 540178...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274f4... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347ab... (15 %)\r\r\nWriting at 0x0003c889... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab5... (24 %)\r\r\nWriting at 0x0004ea58... (27 %)\r\r\nWriting at 0x0005480f... (30 %)\r\r\nWriting at 0x0005aa97... (33 %)\r\r\nWriting at 0x00060a0b... (36 %)\r\r\nWriting at 0x0006655f... (39 %)\r\r\nWriting at 0x0006c2f9... (42 %)\r\r\nWriting at 0x0007130e... (45 %)\r\r\nWriting at 0x0007626f... (48 %)\r\r\nWriting at 0x0007b3c2... (51 %)\r\r\nWriting at 0x00080531... (54 %)\r\r\nWriting at 0x0008590d... (57 %)\r\r\nWriting at 0x0008ace1... (60 %)\r\r\nWriting at 0x00090b11... (63 %)\r\r\nWriting at 0x00095f33... (66 %)\r\r\nWriting at 0x0009b631... (69 %)\r\r\nWriting at 0x000a0fd8... (72 %)\r\r\nWriting at 0x000a66f1... (75 %)\r\r\nWriting at 0x000ac279... (78 %)\r\r\nWriting at 0x000b24c4... (81 %)\r\r\nWriting at 0x000b7d0d... (84 %)\r\r\nWriting at 0x000bd40b... (87 %)\r\r\nWriting at 0x000c60cc... (90 %)\r\r\nWriting at 0x000ce137... (93 %)\r\r\nWriting at 0x000d4031... (96 %)\r\r\nWriting at 0x000da089... (100 %)\r\r\nWrote 849488 bytes (540178 compressed) at 0x00010000 in 5.8 seconds (effective 1167.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 571.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1590.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25300",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf600 bytes. Smallest app partition is 0x100000 bytes. 0x30a00 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM6\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c1:6b:24\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 498.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849408 bytes to 540160...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347cb... (15 %)\r\r\nWriting at 0x0003c8a8... (18 %)\r\r\nWriting at 0x000427a8... (21 %)\r\r\nWriting at 0x00048ade... (24 %)\r\r\nWriting at 0x0004e9e8... (27 %)\r\r\nWriting at 0x000547bc... (30 %)\r\r\nWriting at 0x0005aa59... (33 %)\r\r\nWriting at 0x000609c9... (36 %)\r\r\nWriting at 0x00066518... (39 %)\r\r\nWriting at 0x0006c2a5... (42 %)\r\r\nWriting at 0x000712bb... (45 %)\r\r\nWriting at 0x0007621c... (48 %)\r\r\nWriting at 0x0007b36e... (51 %)\r\r\nWriting at 0x000804de... (54 %)\r\r\nWriting at 0x000858c3... (57 %)\r\r\nWriting at 0x0008ac9f... (60 %)\r\r\nWriting at 0x00090ad4... (63 %)\r\r\nWriting at 0x00095ef7... (66 %)\r\r\nWriting at 0x0009b5f9... (69 %)\r\r\nWriting at 0x000a0f9d... (72 %)\r\r\nWriting at 0x000a66c3... (75 %)\r\r\nWriting at 0x000ac253... (78 %)\r\r\nWriting at 0x000b248e... (81 %)\r\r\nWriting at 0x000b7cd2... (84 %)\r\r\nWriting at 0x000bd3cd... (87 %)\r\r\nWriting at 0x000c6094... (90 %)\r\r\nWriting at 0x000ce0f7... (93 %)\r\r\nWriting at 0x000d3ff5... (96 %)\r\r\nWriting at 0x000da04a... (100 %)\r\r\nWrote 849408 bytes (540160 compressed) at 0x00010000 in 5.6 seconds (effective 1213.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1667.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25312",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 478.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.6 seconds (effective 1207.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 524.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1683.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_2556",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.7 seconds (effective 1202.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 557.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1678.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25620",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540105...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fb... (9 %)\r\r\nWriting at 0x0002c050... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048ac5... (24 %)\r\r\nWriting at 0x0004ead5... (27 %)\r\r\nWriting at 0x00054888... (30 %)\r\r\nWriting at 0x0005ab54... (33 %)\r\r\nWriting at 0x00060a9b... (36 %)\r\r\nWriting at 0x000665f0... (39 %)\r\r\nWriting at 0x0006c369... (42 %)\r\r\nWriting at 0x00071385... (45 %)\r\r\nWriting at 0x00076309... (48 %)\r\r\nWriting at 0x0007b449... (51 %)\r\r\nWriting at 0x000805dd... (54 %)\r\r\nWriting at 0x00085993... (57 %)\r\r\nWriting at 0x0008ad95... (60 %)\r\r\nWriting at 0x00090bac... (63 %)\r\r\nWriting at 0x00096001... (66 %)\r\r\nWriting at 0x0009b6c5... (69 %)\r\r\nWriting at 0x000a1079... (72 %)\r\r\nWriting at 0x000a67a2... (75 %)\r\r\nWriting at 0x000ac334... (78 %)\r\r\nWriting at 0x000b256c... (81 %)\r\r\nWriting at 0x000b7db2... (84 %)\r\r\nWriting at 0x000bd49e... (87 %)\r\r\nWriting at 0x000c6171... (90 %)\r\r\nWriting at 0x000ce1c8... (93 %)\r\r\nWriting at 0x000d40d6... (96 %)\r\r\nWriting at 0x000da125... (100 %)\r\r\nWrote 849552 bytes (540105 compressed) at 0x00010000 in 5.7 seconds (effective 1189.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 539.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1539.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_25952",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540129...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f3... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347a0... (15 %)\r\r\nWriting at 0x0003c893... (18 %)\r\r\nWriting at 0x00042792... (21 %)\r\r\nWriting at 0x00048aca... (24 %)\r\r\nWriting at 0x0004eab1... (27 %)\r\r\nWriting at 0x00054877... (30 %)\r\r\nWriting at 0x0005ab35... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c5... (39 %)\r\r\nWriting at 0x0006c34d... (42 %)\r\r\nWriting at 0x00071376... (45 %)\r\r\nWriting at 0x000762ef... (48 %)\r\r\nWriting at 0x0007b437... (51 %)\r\r\nWriting at 0x000805bb... (54 %)\r\r\nWriting at 0x00085986... (57 %)\r\r\nWriting at 0x0008ad89... (60 %)\r\r\nWriting at 0x00090b95... (63 %)\r\r\nWriting at 0x00095fd3... (66 %)\r\r\nWriting at 0x0009b6b2... (69 %)\r\r\nWriting at 0x000a1061... (72 %)\r\r\nWriting at 0x000a6784... (75 %)\r\r\nWriting at 0x000ac31c... (78 %)\r\r\nWriting at 0x000b2551... (81 %)\r\r\nWriting at 0x000b7d99... (84 %)\r\r\nWriting at 0x000bd48d... (87 %)\r\r\nWriting at 0x000c615d... (90 %)\r\r\nWriting at 0x000ce1b2... (93 %)\r\r\nWriting at 0x000d40b9... (96 %)\r\r\nWriting at 0x000da10c... (100 %)\r\r\nWrote 849552 bytes (540129 compressed) at 0x00010000 in 5.7 seconds (effective 1196.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 524.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.2 seconds (effective 1522.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26108",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4c0 bytes. Smallest app partition is 0x100000 bytes. 0x30b40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 475.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849088 bytes to 539955...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x0002755f... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x00034804... (15 %)\r\r\nWriting at 0x0003c8f6... (18 %)\r\r\nWriting at 0x00042844... (21 %)\r\r\nWriting at 0x00048b50... (24 %)\r\r\nWriting at 0x0004e9eb... (27 %)\r\r\nWriting at 0x000547a0... (30 %)\r\r\nWriting at 0x0005aa6c... (33 %)\r\r\nWriting at 0x00060a9b... (36 %)\r\r\nWriting at 0x000664f4... (39 %)\r\r\nWriting at 0x0006c262... (42 %)\r\r\nWriting at 0x00071275... (45 %)\r\r\nWriting at 0x0007620f... (48 %)\r\r\nWriting at 0x0007b34a... (51 %)\r\r\nWriting at 0x0008056f... (54 %)\r\r\nWriting at 0x00085886... (57 %)\r\r\nWriting at 0x0008aced... (60 %)\r\r\nWriting at 0x00090a9f... (63 %)\r\r\nWriting at 0x00095f14... (66 %)\r\r\nWriting at 0x0009b5be... (69 %)\r\r\nWriting at 0x000a0f5d... (72 %)\r\r\nWriting at 0x000a66e2... (75 %)\r\r\nWriting at 0x000ac22e... (78 %)\r\r\nWriting at 0x000b249d... (81 %)\r\r\nWriting at 0x000b7cd8... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c6077... (90 %)\r\r\nWriting at 0x000ce0e0... (93 %)\r\r\nWriting at 0x000d3fcf... (96 %)\r\r\nWriting at 0x000da00c... (100 %)\r\r\nWrote 849088 bytes (539955 compressed) at 0x00010000 in 5.6 seconds (effective 1222.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 539.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1701.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26228",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6b0 bytes. Smallest app partition is 0x100000 bytes. 0x30950 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849584 bytes to 540148...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9b... (6 %)\r\r\nWriting at 0x00027596... (9 %)\r\r\nWriting at 0x0002c0ed... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c934... (18 %)\r\r\nWriting at 0x000428b4... (21 %)\r\r\nWriting at 0x00048ba3... (24 %)\r\r\nWriting at 0x0004eaaf... (27 %)\r\r\nWriting at 0x00054870... (30 %)\r\r\nWriting at 0x0005ab17... (33 %)\r\r\nWriting at 0x00060aef... (36 %)\r\r\nWriting at 0x000665c0... (39 %)\r\r\nWriting at 0x0006c32b... (42 %)\r\r\nWriting at 0x00071349... (45 %)\r\r\nWriting at 0x000762e0... (48 %)\r\r\nWriting at 0x0007b435... (51 %)\r\r\nWriting at 0x000805c6... (54 %)\r\r\nWriting at 0x0008597e... (57 %)\r\r\nWriting at 0x0008add0... (60 %)\r\r\nWriting at 0x00090ba9... (63 %)\r\r\nWriting at 0x0009601a... (66 %)\r\r\nWriting at 0x0009b6c5... (69 %)\r\r\nWriting at 0x000a1073... (72 %)\r\r\nWriting at 0x000a67c9... (75 %)\r\r\nWriting at 0x000ac336... (78 %)\r\r\nWriting at 0x000b258d... (81 %)\r\r\nWriting at 0x000b7dc8... (84 %)\r\r\nWriting at 0x000bd478... (87 %)\r\r\nWriting at 0x000c616f... (90 %)\r\r\nWriting at 0x000ce1dc... (93 %)\r\r\nWriting at 0x000d40b4... (96 %)\r\r\nWriting at 0x000da101... (100 %)\r\r\nWrote 849584 bytes (540148 compressed) at 0x00010000 in 5.6 seconds (effective 1204.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 524.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1642.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26264",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 504.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 540089...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca40... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c04e... (12 %)\r\r\nWriting at 0x000347b8... (15 %)\r\r\nWriting at 0x0003c898... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa6... (24 %)\r\r\nWriting at 0x0004e960... (27 %)\r\r\nWriting at 0x000546fa... (30 %)\r\r\nWriting at 0x0005a9c7... (33 %)\r\r\nWriting at 0x0006090f... (36 %)\r\r\nWriting at 0x00066476... (39 %)\r\r\nWriting at 0x0006c1f3... (42 %)\r\r\nWriting at 0x00071206... (45 %)\r\r\nWriting at 0x0007618c... (48 %)\r\r\nWriting at 0x0007b2d9... (51 %)\r\r\nWriting at 0x00080462... (54 %)\r\r\nWriting at 0x00085836... (57 %)\r\r\nWriting at 0x0008ac35... (60 %)\r\r\nWriting at 0x00090a33... (63 %)\r\r\nWriting at 0x00095e88... (66 %)\r\r\nWriting at 0x0009b54e... (69 %)\r\r\nWriting at 0x000a0efc... (72 %)\r\r\nWriting at 0x000a661b... (75 %)\r\r\nWriting at 0x000ac1b7... (78 %)\r\r\nWriting at 0x000b23ee... (81 %)\r\r\nWriting at 0x000b7c33... (84 %)\r\r\nWriting at 0x000bd32c... (87 %)\r\r\nWriting at 0x000c5ff9... (90 %)\r\r\nWriting at 0x000ce055... (93 %)\r\r\nWriting at 0x000d3f70... (96 %)\r\r\nWriting at 0x000d9fad... (100 %)\r\r\nWrote 849168 bytes (540089 compressed) at 0x00010000 in 5.8 seconds (effective 1169.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 559.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1605.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26560",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 464.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540235...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa9... (24 %)\r\r\nWriting at 0x0004ea28... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f8... (36 %)\r\r\nWriting at 0x00066553... (39 %)\r\r\nWriting at 0x0006c2ec... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ba... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff6... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540235 compressed) at 0x00010000 in 5.7 seconds (effective 1194.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 513.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 424322...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbf... (76 %)\r\r\nWriting at 0x0016b391... (80 %)\r\r\nWriting at 0x0016f7b4... (84 %)\r\r\nWriting at 0x00174113... (88 %)\r\r\nWriting at 0x00178dcf... (92 %)\r\r\nWriting at 0x0017eb7a... (96 %)\r\r\nWriting at 0x001934b8... (100 %)\r\r\nWrote 983040 bytes (424322 compressed) at 0x00110000 in 4.9 seconds (effective 1616.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26564",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540411...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca56... (6 %)\r\r\nWriting at 0x000275b6... (9 %)\r\r\nWriting at 0x0002c05e... (12 %)\r\r\nWriting at 0x00034836... (15 %)\r\r\nWriting at 0x0003c91b... (18 %)\r\r\nWriting at 0x000428b0... (21 %)\r\r\nWriting at 0x00048ba6... (24 %)\r\r\nWriting at 0x0004ea8d... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005ab1e... (33 %)\r\r\nWriting at 0x00060a5e... (36 %)\r\r\nWriting at 0x000665b1... (39 %)\r\r\nWriting at 0x0006c336... (42 %)\r\r\nWriting at 0x0007134f... (45 %)\r\r\nWriting at 0x000762c7... (48 %)\r\r\nWriting at 0x0007b40f... (51 %)\r\r\nWriting at 0x0008058e... (54 %)\r\r\nWriting at 0x0008595a... (57 %)\r\r\nWriting at 0x0008ad4d... (60 %)\r\r\nWriting at 0x00090b5c... (63 %)\r\r\nWriting at 0x00095f7c... (66 %)\r\r\nWriting at 0x0009b676... (69 %)\r\r\nWriting at 0x000a1026... (72 %)\r\r\nWriting at 0x000a674d... (75 %)\r\r\nWriting at 0x000ac2e1... (78 %)\r\r\nWriting at 0x000b2516... (81 %)\r\r\nWriting at 0x000b7d68... (84 %)\r\r\nWriting at 0x000bd45c... (87 %)\r\r\nWriting at 0x000c612b... (90 %)\r\r\nWriting at 0x000ce183... (93 %)\r\r\nWriting at 0x000d402e... (96 %)\r\r\nWriting at 0x000da0bd... (100 %)\r\r\nWrote 849824 bytes (540411 compressed) at 0x00010000 in 5.9 seconds (effective 1154.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1603.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26596",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 482.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540182...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9d... (6 %)\r\r\nWriting at 0x0002758e... (9 %)\r\r\nWriting at 0x0002c0e2... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c930... (18 %)\r\r\nWriting at 0x000428b8... (21 %)\r\r\nWriting at 0x00048b97... (24 %)\r\r\nWriting at 0x0004eae3... (27 %)\r\r\nWriting at 0x000548ae... (30 %)\r\r\nWriting at 0x0005ab61... (33 %)\r\r\nWriting at 0x00060b2d... (36 %)\r\r\nWriting at 0x00066602... (39 %)\r\r\nWriting at 0x0006c379... (42 %)\r\r\nWriting at 0x00071387... (45 %)\r\r\nWriting at 0x00076312... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805f1... (54 %)\r\r\nWriting at 0x000859ae... (57 %)\r\r\nWriting at 0x0008adfc... (60 %)\r\r\nWriting at 0x00090bd2... (63 %)\r\r\nWriting at 0x00096036... (66 %)\r\r\nWriting at 0x0009b6ea... (69 %)\r\r\nWriting at 0x000a109b... (72 %)\r\r\nWriting at 0x000a67e7... (75 %)\r\r\nWriting at 0x000ac35a... (78 %)\r\r\nWriting at 0x000b25a5... (81 %)\r\r\nWriting at 0x000b7dca... (84 %)\r\r\nWriting at 0x000bd49c... (87 %)\r\r\nWriting at 0x000c618a... (90 %)\r\r\nWriting at 0x000ce1f0... (93 %)\r\r\nWriting at 0x000d40cd... (96 %)\r\r\nWriting at 0x000da122... (100 %)\r\r\nWrote 849648 bytes (540182 compressed) at 0x00010000 in 5.6 seconds (effective 1216.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 509.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1701.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26664",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf760 bytes. Smallest app partition is 0x100000 bytes. 0x308a0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849760 bytes to 540312...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027584... (9 %)\r\r\nWriting at 0x0002c052... (12 %)\r\r\nWriting at 0x0003481c... (15 %)\r\r\nWriting at 0x0003c915... (18 %)\r\r\nWriting at 0x0004289d... (21 %)\r\r\nWriting at 0x00048b8e... (24 %)\r\r\nWriting at 0x0004eaaf... (27 %)\r\r\nWriting at 0x0005488f... (30 %)\r\r\nWriting at 0x0005ab51... (33 %)\r\r\nWriting at 0x00060a8d... (36 %)\r\r\nWriting at 0x000665cf... (39 %)\r\r\nWriting at 0x0006c355... (42 %)\r\r\nWriting at 0x00071365... (45 %)\r\r\nWriting at 0x000762eb... (48 %)\r\r\nWriting at 0x0007b439... (51 %)\r\r\nWriting at 0x000805c4... (54 %)\r\r\nWriting at 0x00085986... (57 %)\r\r\nWriting at 0x0008add4... (60 %)\r\r\nWriting at 0x00090b9c... (63 %)\r\r\nWriting at 0x00096001... (66 %)\r\r\nWriting at 0x0009b6a6... (69 %)\r\r\nWriting at 0x000a1055... (72 %)\r\r\nWriting at 0x000a678f... (75 %)\r\r\nWriting at 0x000ac30e... (78 %)\r\r\nWriting at 0x000b2551... (81 %)\r\r\nWriting at 0x000b7d8d... (84 %)\r\r\nWriting at 0x000bd47a... (87 %)\r\r\nWriting at 0x000c6154... (90 %)\r\r\nWriting at 0x000ce1a8... (93 %)\r\r\nWriting at 0x000d407a... (96 %)\r\r\nWriting at 0x000da0f5... (100 %)\r\r\nWrote 849760 bytes (540312 compressed) at 0x00010000 in 5.7 seconds (effective 1198.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 540.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1642.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26688",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 480.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540208...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027551... (9 %)\r\r\nWriting at 0x0002c0a8... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8dc... (18 %)\r\r\nWriting at 0x0004281d... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea78... (27 %)\r\r\nWriting at 0x0005483b... (30 %)\r\r\nWriting at 0x0005aae1... (33 %)\r\r\nWriting at 0x00060a35... (36 %)\r\r\nWriting at 0x00066581... (39 %)\r\r\nWriting at 0x0006c308... (42 %)\r\r\nWriting at 0x00071317... (45 %)\r\r\nWriting at 0x00076294... (48 %)\r\r\nWriting at 0x0007b3f8... (51 %)\r\r\nWriting at 0x0008056e... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad6f... (60 %)\r\r\nWriting at 0x00090b51... (63 %)\r\r\nWriting at 0x00095fa7... (66 %)\r\r\nWriting at 0x0009b64c... (69 %)\r\r\nWriting at 0x000a0ffd... (72 %)\r\r\nWriting at 0x000a6749... (75 %)\r\r\nWriting at 0x000ac2c5... (78 %)\r\r\nWriting at 0x000b2503... (81 %)\r\r\nWriting at 0x000b7d41... (84 %)\r\r\nWriting at 0x000bd42b... (87 %)\r\r\nWriting at 0x000c610f... (90 %)\r\r\nWriting at 0x000ce161... (93 %)\r\r\nWriting at 0x000d4051... (96 %)\r\r\nWriting at 0x000da0a3... (100 %)\r\r\nWrote 849552 bytes (540208 compressed) at 0x00010000 in 5.6 seconds (effective 1203.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1629.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_26800",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 476.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540234...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca37... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c895... (18 %)\r\r\nWriting at 0x00042792... (21 %)\r\r\nWriting at 0x00048abd... (24 %)\r\r\nWriting at 0x0004ea24... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aa35... (33 %)\r\r\nWriting at 0x000609f1... (36 %)\r\r\nWriting at 0x00066551... (39 %)\r\r\nWriting at 0x0006c2e8... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x00076260... (48 %)\r\r\nWriting at 0x0007b3b9... (51 %)\r\r\nWriting at 0x00080538... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008acce... (60 %)\r\r\nWriting at 0x00090b07... (63 %)\r\r\nWriting at 0x00095f1d... (66 %)\r\r\nWriting at 0x0009b645... (69 %)\r\r\nWriting at 0x000a0fef... (72 %)\r\r\nWriting at 0x000a66ee... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24cd... (81 %)\r\r\nWriting at 0x000b7d14... (84 %)\r\r\nWriting at 0x000bd41a... (87 %)\r\r\nWriting at 0x000c60d7... (90 %)\r\r\nWriting at 0x000ce142... (93 %)\r\r\nWriting at 0x000d4030... (96 %)\r\r\nWriting at 0x000da08c... (100 %)\r\r\nWrote 849568 bytes (540234 compressed) at 0x00010000 in 5.7 seconds (effective 1194.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.8 seconds (effective 1624.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27332",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540120...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b6... (15 %)\r\r\nWriting at 0x0003c8a0... (18 %)\r\r\nWriting at 0x000427a6... (21 %)\r\r\nWriting at 0x00048ac7... (24 %)\r\r\nWriting at 0x0004ea42... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aac9... (33 %)\r\r\nWriting at 0x00060a12... (36 %)\r\r\nWriting at 0x0006656c... (39 %)\r\r\nWriting at 0x0006c2fc... (42 %)\r\r\nWriting at 0x00071311... (45 %)\r\r\nWriting at 0x00076287... (48 %)\r\r\nWriting at 0x0007b3cf... (51 %)\r\r\nWriting at 0x00080552... (54 %)\r\r\nWriting at 0x00085927... (57 %)\r\r\nWriting at 0x0008ad15... (60 %)\r\r\nWriting at 0x00090b31... (63 %)\r\r\nWriting at 0x00095f6f... (66 %)\r\r\nWriting at 0x0009b656... (69 %)\r\r\nWriting at 0x000a1001... (72 %)\r\r\nWriting at 0x000a6722... (75 %)\r\r\nWriting at 0x000ac2bc... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d32... (84 %)\r\r\nWriting at 0x000bd428... (87 %)\r\r\nWriting at 0x000c60f7... (90 %)\r\r\nWriting at 0x000ce14e... (93 %)\r\r\nWriting at 0x000d405a... (96 %)\r\r\nWriting at 0x000da0ab... (100 %)\r\r\nWrote 849456 bytes (540120 compressed) at 0x00010000 in 5.6 seconds (effective 1210.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 535.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1656.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27384",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.6 seconds (effective 1209.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1707.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27636",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf620 bytes. Smallest app partition is 0x100000 bytes. 0x309e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849440 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e0... (15 %)\r\r\nWriting at 0x0003c8db... (18 %)\r\r\nWriting at 0x00042818... (21 %)\r\r\nWriting at 0x00048b39... (24 %)\r\r\nWriting at 0x0004ea81... (27 %)\r\r\nWriting at 0x00054832... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060ad4... (36 %)\r\r\nWriting at 0x0006658f... (39 %)\r\r\nWriting at 0x0006c304... (42 %)\r\r\nWriting at 0x00071316... (45 %)\r\r\nWriting at 0x000762ae... (48 %)\r\r\nWriting at 0x0007b400... (51 %)\r\r\nWriting at 0x000805a0... (54 %)\r\r\nWriting at 0x00085939... (57 %)\r\r\nWriting at 0x0008ad8c... (60 %)\r\r\nWriting at 0x00090b61... (63 %)\r\r\nWriting at 0x00095fc5... (66 %)\r\r\nWriting at 0x0009b675... (69 %)\r\r\nWriting at 0x000a1026... (72 %)\r\r\nWriting at 0x000a6779... (75 %)\r\r\nWriting at 0x000ac2ea... (78 %)\r\r\nWriting at 0x000b253c... (81 %)\r\r\nWriting at 0x000b7d76... (84 %)\r\r\nWriting at 0x000bd42e... (87 %)\r\r\nWriting at 0x000c6124... (90 %)\r\r\nWriting at 0x000ce187... (93 %)\r\r\nWriting at 0x000d4087... (96 %)\r\r\nWriting at 0x000da0b7... (100 %)\r\r\nWrote 849440 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1212.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27660",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 539974...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8e8... (18 %)\r\r\nWriting at 0x00042835... (21 %)\r\r\nWriting at 0x00048b48... (24 %)\r\r\nWriting at 0x0004ea16... (27 %)\r\r\nWriting at 0x000547be... (30 %)\r\r\nWriting at 0x0005aa86... (33 %)\r\r\nWriting at 0x00060ab0... (36 %)\r\r\nWriting at 0x0006652b... (39 %)\r\r\nWriting at 0x0006c2a3... (42 %)\r\r\nWriting at 0x000712b5... (45 %)\r\r\nWriting at 0x00076249... (48 %)\r\r\nWriting at 0x0007b37b... (51 %)\r\r\nWriting at 0x0008059b... (54 %)\r\r\nWriting at 0x000858bd... (57 %)\r\r\nWriting at 0x0008ad1e... (60 %)\r\r\nWriting at 0x00090ad7... (63 %)\r\r\nWriting at 0x00095f49... (66 %)\r\r\nWriting at 0x0009b5f4... (69 %)\r\r\nWriting at 0x000a0f94... (72 %)\r\r\nWriting at 0x000a6718... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d0b... (84 %)\r\r\nWriting at 0x000bd449... (87 %)\r\r\nWriting at 0x000c6090... (90 %)\r\r\nWriting at 0x000ce117... (93 %)\r\r\nWriting at 0x000d3fff... (96 %)\r\r\nWriting at 0x000da03a... (100 %)\r\r\nWrote 849168 bytes (539974 compressed) at 0x00010000 in 5.5 seconds (effective 1228.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 508.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1696.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27700",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf830 bytes. Smallest app partition is 0x100000 bytes. 0x307d0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 497.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849968 bytes to 540456...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5b... (6 %)\r\r\nWriting at 0x000275bc... (9 %)\r\r\nWriting at 0x0002c082... (12 %)\r\r\nWriting at 0x00034856... (15 %)\r\r\nWriting at 0x0003c946... (18 %)\r\r\nWriting at 0x000428e3... (21 %)\r\r\nWriting at 0x00048bca... (24 %)\r\r\nWriting at 0x0004ead5... (27 %)\r\r\nWriting at 0x000548b7... (30 %)\r\r\nWriting at 0x0005ab3d... (33 %)\r\r\nWriting at 0x00060ab4... (36 %)\r\r\nWriting at 0x0006660c... (39 %)\r\r\nWriting at 0x0006c3a1... (42 %)\r\r\nWriting at 0x000713b3... (45 %)\r\r\nWriting at 0x00076316... (48 %)\r\r\nWriting at 0x0007b466... (51 %)\r\r\nWriting at 0x000805db... (54 %)\r\r\nWriting at 0x000859ac... (57 %)\r\r\nWriting at 0x0008ad74... (60 %)\r\r\nWriting at 0x00090bab... (63 %)\r\r\nWriting at 0x00095fc3... (66 %)\r\r\nWriting at 0x0009b6d3... (69 %)\r\r\nWriting at 0x000a1077... (72 %)\r\r\nWriting at 0x000a678c... (75 %)\r\r\nWriting at 0x000ac313... (78 %)\r\r\nWriting at 0x000b2561... (81 %)\r\r\nWriting at 0x000b7db6... (84 %)\r\r\nWriting at 0x000bd4b7... (87 %)\r\r\nWriting at 0x000c6178... (90 %)\r\r\nWriting at 0x000ce1e2... (93 %)\r\r\nWriting at 0x000d4071... (96 %)\r\r\nWriting at 0x000da115... (100 %)\r\r\nWrote 849968 bytes (540456 compressed) at 0x00010000 in 5.9 seconds (effective 1159.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 540.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1580.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27864",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 471.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540108...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c04f... (12 %)\r\r\nWriting at 0x0003479b... (15 %)\r\r\nWriting at 0x0003c895... (18 %)\r\r\nWriting at 0x0004278d... (21 %)\r\r\nWriting at 0x00048ac4... (24 %)\r\r\nWriting at 0x0004ead4... (27 %)\r\r\nWriting at 0x00054887... (30 %)\r\r\nWriting at 0x0005ab54... (33 %)\r\r\nWriting at 0x00060a99... (36 %)\r\r\nWriting at 0x000665ef... (39 %)\r\r\nWriting at 0x0006c367... (42 %)\r\r\nWriting at 0x00071384... (45 %)\r\r\nWriting at 0x00076308... (48 %)\r\r\nWriting at 0x0007b446... (51 %)\r\r\nWriting at 0x000805dc... (54 %)\r\r\nWriting at 0x00085993... (57 %)\r\r\nWriting at 0x0008ad90... (60 %)\r\r\nWriting at 0x00090bab... (63 %)\r\r\nWriting at 0x00095fff... (66 %)\r\r\nWriting at 0x0009b6c3... (69 %)\r\r\nWriting at 0x000a1077... (72 %)\r\r\nWriting at 0x000a67a1... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b256b... (81 %)\r\r\nWriting at 0x000b7db1... (84 %)\r\r\nWriting at 0x000bd49c... (87 %)\r\r\nWriting at 0x000c6170... (90 %)\r\r\nWriting at 0x000ce1c7... (93 %)\r\r\nWriting at 0x000d40d5... (96 %)\r\r\nWriting at 0x000da122... (100 %)\r\r\nWrote 849552 bytes (540108 compressed) at 0x00010000 in 5.7 seconds (effective 1187.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 511.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.8 seconds (effective 1621.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27908",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 482.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540235...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c046... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042780... (21 %)\r\r\nWriting at 0x00048aa9... (24 %)\r\r\nWriting at 0x0004ea28... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x000609f8... (36 %)\r\r\nWriting at 0x00066553... (39 %)\r\r\nWriting at 0x0006c2ec... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ba... (51 %)\r\r\nWriting at 0x0008053c... (54 %)\r\r\nWriting at 0x0008590b... (57 %)\r\r\nWriting at 0x0008acc1... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f25... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff6... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac269... (78 %)\r\r\nWriting at 0x000b24d5... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd423... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce147... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da090... (100 %)\r\r\nWrote 849568 bytes (540235 compressed) at 0x00010000 in 5.7 seconds (effective 1193.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423570...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbf... (76 %)\r\r\nWriting at 0x0016b39d... (80 %)\r\r\nWriting at 0x0016f7c1... (84 %)\r\r\nWriting at 0x001740fe... (88 %)\r\r\nWriting at 0x00178dbf... (92 %)\r\r\nWriting at 0x0017fc75... (96 %)\r\r\nWriting at 0x001934bc... (100 %)\r\r\nWrote 983040 bytes (423570 compressed) at 0x00110000 in 4.8 seconds (effective 1626.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_27932",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540104...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027558... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8e1... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b42... (24 %)\r\r\nWriting at 0x0004ea78... (27 %)\r\r\nWriting at 0x0005483c... (30 %)\r\r\nWriting at 0x0005aae2... (33 %)\r\r\nWriting at 0x00060ad6... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2fb... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007629e... (48 %)\r\r\nWriting at 0x0007b3ef... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085926... (57 %)\r\r\nWriting at 0x0008ad7c... (60 %)\r\r\nWriting at 0x00090b47... (63 %)\r\r\nWriting at 0x00095fa9... (66 %)\r\r\nWriting at 0x0009b65d... (69 %)\r\r\nWriting at 0x000a100e... (72 %)\r\r\nWriting at 0x000a675a... (75 %)\r\r\nWriting at 0x000ac2ce... (78 %)\r\r\nWriting at 0x000b251c... (81 %)\r\r\nWriting at 0x000b7d4c... (84 %)\r\r\nWriting at 0x000bd414... (87 %)\r\r\nWriting at 0x000c6100... (90 %)\r\r\nWriting at 0x000ce164... (93 %)\r\r\nWriting at 0x000d4057... (96 %)\r\r\nWriting at 0x000da09b... (100 %)\r\r\nWrote 849424 bytes (540104 compressed) at 0x00010000 in 5.6 seconds (effective 1210.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 497.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1675.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_2800",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540099...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca2f... (6 %)\r\r\nWriting at 0x000274f5... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x000347a2... (15 %)\r\r\nWriting at 0x0003c88d... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab6... (24 %)\r\r\nWriting at 0x0004e9b9... (27 %)\r\r\nWriting at 0x0005475c... (30 %)\r\r\nWriting at 0x0005aa30... (33 %)\r\r\nWriting at 0x00060979... (36 %)\r\r\nWriting at 0x000664dc... (39 %)\r\r\nWriting at 0x0006c267... (42 %)\r\r\nWriting at 0x00071271... (45 %)\r\r\nWriting at 0x00076201... (48 %)\r\r\nWriting at 0x0007b33f... (51 %)\r\r\nWriting at 0x000804ca... (54 %)\r\r\nWriting at 0x0008588c... (57 %)\r\r\nWriting at 0x0008ac87... (60 %)\r\r\nWriting at 0x00090a9a... (63 %)\r\r\nWriting at 0x00095eed... (66 %)\r\r\nWriting at 0x0009b5b8... (69 %)\r\r\nWriting at 0x000a0f69... (72 %)\r\r\nWriting at 0x000a6688... (75 %)\r\r\nWriting at 0x000ac222... (78 %)\r\r\nWriting at 0x000b245c... (81 %)\r\r\nWriting at 0x000b7c98... (84 %)\r\r\nWriting at 0x000bd38c... (87 %)\r\r\nWriting at 0x000c605c... (90 %)\r\r\nWriting at 0x000ce0b5... (93 %)\r\r\nWriting at 0x000d3fc8... (96 %)\r\r\nWriting at 0x000da010... (100 %)\r\r\nWrote 849264 bytes (540099 compressed) at 0x00010000 in 5.9 seconds (effective 1152.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1579.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28140",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540129...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f2... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x00042791... (21 %)\r\r\nWriting at 0x00048ac9... (24 %)\r\r\nWriting at 0x0004eab1... (27 %)\r\r\nWriting at 0x00054877... (30 %)\r\r\nWriting at 0x0005ab35... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c5... (39 %)\r\r\nWriting at 0x0006c34d... (42 %)\r\r\nWriting at 0x00071376... (45 %)\r\r\nWriting at 0x000762ef... (48 %)\r\r\nWriting at 0x0007b437... (51 %)\r\r\nWriting at 0x000805bb... (54 %)\r\r\nWriting at 0x00085986... (57 %)\r\r\nWriting at 0x0008ad89... (60 %)\r\r\nWriting at 0x00090b95... (63 %)\r\r\nWriting at 0x00095fd3... (66 %)\r\r\nWriting at 0x0009b6b2... (69 %)\r\r\nWriting at 0x000a1061... (72 %)\r\r\nWriting at 0x000a6784... (75 %)\r\r\nWriting at 0x000ac31c... (78 %)\r\r\nWriting at 0x000b2551... (81 %)\r\r\nWriting at 0x000b7d99... (84 %)\r\r\nWriting at 0x000bd48d... (87 %)\r\r\nWriting at 0x000c615d... (90 %)\r\r\nWriting at 0x000ce1b2... (93 %)\r\r\nWriting at 0x000d40b9... (96 %)\r\r\nWriting at 0x000da10c... (100 %)\r\r\nWrote 849552 bytes (540129 compressed) at 0x00010000 in 5.7 seconds (effective 1193.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 511.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.0 seconds (effective 1561.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28188",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf620 bytes. Smallest app partition is 0x100000 bytes. 0x309e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849440 bytes to 540079...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x00027550... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347dd... (15 %)\r\r\nWriting at 0x0003c8d6... (18 %)\r\r\nWriting at 0x00042811... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004ea73... (27 %)\r\r\nWriting at 0x00054836... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060ad8... (36 %)\r\r\nWriting at 0x00066589... (39 %)\r\r\nWriting at 0x0006c308... (42 %)\r\r\nWriting at 0x00071321... (45 %)\r\r\nWriting at 0x000762bd... (48 %)\r\r\nWriting at 0x0007b40b... (51 %)\r\r\nWriting at 0x000805ba... (54 %)\r\r\nWriting at 0x00085949... (57 %)\r\r\nWriting at 0x0008ada1... (60 %)\r\r\nWriting at 0x00090b6e... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b682... (69 %)\r\r\nWriting at 0x000a1032... (72 %)\r\r\nWriting at 0x000a6784... (75 %)\r\r\nWriting at 0x000ac2f4... (78 %)\r\r\nWriting at 0x000b2546... (81 %)\r\r\nWriting at 0x000b7d87... (84 %)\r\r\nWriting at 0x000bd436... (87 %)\r\r\nWriting at 0x000c612c... (90 %)\r\r\nWriting at 0x000ce18e... (93 %)\r\r\nWriting at 0x000d408d... (96 %)\r\r\nWriting at 0x000da0c8... (100 %)\r\r\nWrote 849440 bytes (540079 compressed) at 0x00010000 in 5.6 seconds (effective 1212.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1687.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28236",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf500 bytes. Smallest app partition is 0x100000 bytes. 0x30b00 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 483.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849152 bytes to 539953...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x0002755f... (9 %)\r\r\nWriting at 0x0002c0b5... (12 %)\r\r\nWriting at 0x000347fe... (15 %)\r\r\nWriting at 0x0003c8ea... (18 %)\r\r\nWriting at 0x00042832... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea33... (27 %)\r\r\nWriting at 0x000547f2... (30 %)\r\r\nWriting at 0x0005aac6... (33 %)\r\r\nWriting at 0x00060af1... (36 %)\r\r\nWriting at 0x00066541... (39 %)\r\r\nWriting at 0x0006c2b9... (42 %)\r\r\nWriting at 0x000712ca... (45 %)\r\r\nWriting at 0x0007625d... (48 %)\r\r\nWriting at 0x0007b398... (51 %)\r\r\nWriting at 0x000805cc... (54 %)\r\r\nWriting at 0x000858d8... (57 %)\r\r\nWriting at 0x0008ad3e... (60 %)\r\r\nWriting at 0x00090ae6... (63 %)\r\r\nWriting at 0x00095f66... (66 %)\r\r\nWriting at 0x0009b605... (69 %)\r\r\nWriting at 0x000a0fa6... (72 %)\r\r\nWriting at 0x000a6728... (75 %)\r\r\nWriting at 0x000ac272... (78 %)\r\r\nWriting at 0x000b24e8... (81 %)\r\r\nWriting at 0x000b7d17... (84 %)\r\r\nWriting at 0x000bd45b... (87 %)\r\r\nWriting at 0x000c60b5... (90 %)\r\r\nWriting at 0x000ce121... (93 %)\r\r\nWriting at 0x000d401b... (96 %)\r\r\nWriting at 0x000da04a... (100 %)\r\r\nWrote 849152 bytes (539953 compressed) at 0x00010000 in 5.8 seconds (effective 1172.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 529.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.8 seconds (effective 1647.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_2824",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 487.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540074...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x000347e8... (15 %)\r\r\nWriting at 0x0003c8e0... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b43... (24 %)\r\r\nWriting at 0x0004ea79... (27 %)\r\r\nWriting at 0x00054839... (30 %)\r\r\nWriting at 0x0005aae2... (33 %)\r\r\nWriting at 0x00060ac0... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2f8... (42 %)\r\r\nWriting at 0x00071307... (45 %)\r\r\nWriting at 0x0007629d... (48 %)\r\r\nWriting at 0x0007b3f2... (51 %)\r\r\nWriting at 0x00080590... (54 %)\r\r\nWriting at 0x00085933... (57 %)\r\r\nWriting at 0x0008ad87... (60 %)\r\r\nWriting at 0x00090b4c... (63 %)\r\r\nWriting at 0x00095fb5... (66 %)\r\r\nWriting at 0x0009b66a... (69 %)\r\r\nWriting at 0x000a1016... (72 %)\r\r\nWriting at 0x000a6767... (75 %)\r\r\nWriting at 0x000ac2dc... (78 %)\r\r\nWriting at 0x000b253d... (81 %)\r\r\nWriting at 0x000b7d7d... (84 %)\r\r\nWriting at 0x000bd42d... (87 %)\r\r\nWriting at 0x000c6120... (90 %)\r\r\nWriting at 0x000ce18e... (93 %)\r\r\nWriting at 0x000d4090... (96 %)\r\r\nWriting at 0x000da0c0... (100 %)\r\r\nWrote 849424 bytes (540074 compressed) at 0x00010000 in 5.6 seconds (effective 1217.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 548.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1688.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28272",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf660 bytes. Smallest app partition is 0x100000 bytes. 0x309a0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28296",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 483.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540097...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca83... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0a6... (12 %)\r\r\nWriting at 0x000347dd... (15 %)\r\r\nWriting at 0x0003c8da... (18 %)\r\r\nWriting at 0x00042813... (21 %)\r\r\nWriting at 0x00048b36... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aae9... (33 %)\r\r\nWriting at 0x00060af8... (36 %)\r\r\nWriting at 0x0006658a... (39 %)\r\r\nWriting at 0x0006c300... (42 %)\r\r\nWriting at 0x0007130b... (45 %)\r\r\nWriting at 0x000762a7... (48 %)\r\r\nWriting at 0x0007b3f6... (51 %)\r\r\nWriting at 0x00080594... (54 %)\r\r\nWriting at 0x0008592d... (57 %)\r\r\nWriting at 0x0008ad82... (60 %)\r\r\nWriting at 0x00090b4f... (63 %)\r\r\nWriting at 0x00095fb2... (66 %)\r\r\nWriting at 0x0009b663... (69 %)\r\r\nWriting at 0x000a1014... (72 %)\r\r\nWriting at 0x000a6761... (75 %)\r\r\nWriting at 0x000ac2d4... (78 %)\r\r\nWriting at 0x000b2522... (81 %)\r\r\nWriting at 0x000b7d5f... (84 %)\r\r\nWriting at 0x000bd41b... (87 %)\r\r\nWriting at 0x000c6108... (90 %)\r\r\nWriting at 0x000ce16f... (93 %)\r\r\nWriting at 0x000d4062... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540097 compressed) at 0x00010000 in 5.6 seconds (effective 1212.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 561.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1698.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28436",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540054...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa1... (6 %)\r\r\nWriting at 0x0002755d... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8fd... (18 %)\r\r\nWriting at 0x00042853... (21 %)\r\r\nWriting at 0x00048b56... (24 %)\r\r\nWriting at 0x0004ea5e... (27 %)\r\r\nWriting at 0x0005480a... (30 %)\r\r\nWriting at 0x0005aab1... (33 %)\r\r\nWriting at 0x00060ad4... (36 %)\r\r\nWriting at 0x00066561... (39 %)\r\r\nWriting at 0x0006c2d6... (42 %)\r\r\nWriting at 0x000712f9... (45 %)\r\r\nWriting at 0x00076280... (48 %)\r\r\nWriting at 0x0007b3c4... (51 %)\r\r\nWriting at 0x00080595... (54 %)\r\r\nWriting at 0x00085901... (57 %)\r\r\nWriting at 0x0008ad52... (60 %)\r\r\nWriting at 0x00090b0c... (63 %)\r\r\nWriting at 0x00095f75... (66 %)\r\r\nWriting at 0x0009b621... (69 %)\r\r\nWriting at 0x000a0fd1... (72 %)\r\r\nWriting at 0x000a6725... (75 %)\r\r\nWriting at 0x000ac29b... (78 %)\r\r\nWriting at 0x000b24f8... (81 %)\r\r\nWriting at 0x000b7d26... (84 %)\r\r\nWriting at 0x000bd3d3... (87 %)\r\r\nWriting at 0x000c60ca... (90 %)\r\r\nWriting at 0x000ce136... (93 %)\r\r\nWriting at 0x000d4041... (96 %)\r\r\nWriting at 0x000da067... (100 %)\r\r\nWrote 849312 bytes (540054 compressed) at 0x00010000 in 5.6 seconds (effective 1214.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28548",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting..............................\r\r\n\r\r\nA serial exception error occurred: Cannot configure port, something went wrong. Original message: PermissionError(13, 'The device does not recognize the command.', None, 22)\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28572",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 512.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540240...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fc... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x000347aa... (15 %)\r\r\nWriting at 0x0003c89e... (18 %)\r\r\nWriting at 0x0004278b... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547fa... (30 %)\r\r\nWriting at 0x0005aa2d... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e9... (42 %)\r\r\nWriting at 0x00071301... (45 %)\r\r\nWriting at 0x0007625e... (48 %)\r\r\nWriting at 0x0007b3b3... (51 %)\r\r\nWriting at 0x00080536... (54 %)\r\r\nWriting at 0x00085906... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090b04... (63 %)\r\r\nWriting at 0x00095f1b... (66 %)\r\r\nWriting at 0x0009b649... (69 %)\r\r\nWriting at 0x000a0ff3... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d16... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60d7... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d4030... (96 %)\r\r\nWriting at 0x000da087... (100 %)\r\r\nWrote 849568 bytes (540240 compressed) at 0x00010000 in 5.9 seconds (effective 1157.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 555.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1598.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28728",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4c0 bytes. Smallest app partition is 0x100000 bytes. 0x30b40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849088 bytes to 539933...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa7... (6 %)\r\r\nWriting at 0x0002755d... (9 %)\r\r\nWriting at 0x0002c0b4... (12 %)\r\r\nWriting at 0x00034804... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x00042857... (21 %)\r\r\nWriting at 0x00048b56... (24 %)\r\r\nWriting at 0x0004ea0b... (27 %)\r\r\nWriting at 0x000547d5... (30 %)\r\r\nWriting at 0x0005aa9e... (33 %)\r\r\nWriting at 0x00060ac2... (36 %)\r\r\nWriting at 0x00066509... (39 %)\r\r\nWriting at 0x0006c27b... (42 %)\r\r\nWriting at 0x0007128c... (45 %)\r\r\nWriting at 0x0007621e... (48 %)\r\r\nWriting at 0x0007b359... (51 %)\r\r\nWriting at 0x0008059c... (54 %)\r\r\nWriting at 0x0008589d... (57 %)\r\r\nWriting at 0x0008ad0c... (60 %)\r\r\nWriting at 0x00090ab1... (63 %)\r\r\nWriting at 0x00095f2e... (66 %)\r\r\nWriting at 0x0009b5d7... (69 %)\r\r\nWriting at 0x000a0f71... (72 %)\r\r\nWriting at 0x000a66f9... (75 %)\r\r\nWriting at 0x000ac242... (78 %)\r\r\nWriting at 0x000b24bd... (81 %)\r\r\nWriting at 0x000b7cfc... (84 %)\r\r\nWriting at 0x000bd42c... (87 %)\r\r\nWriting at 0x000c6090... (90 %)\r\r\nWriting at 0x000ce0f8... (93 %)\r\r\nWriting at 0x000d3ff6... (96 %)\r\r\nWriting at 0x000da026... (100 %)\r\r\nWrote 849088 bytes (539933 compressed) at 0x00010000 in 5.6 seconds (effective 1222.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_28924",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540105...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b42... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483d... (30 %)\r\r\nWriting at 0x0005aae3... (33 %)\r\r\nWriting at 0x00060adb... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2fa... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007629d... (48 %)\r\r\nWriting at 0x0007b3ee... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085925... (57 %)\r\r\nWriting at 0x0008ad7b... (60 %)\r\r\nWriting at 0x00090b48... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b65c... (69 %)\r\r\nWriting at 0x000a100d... (72 %)\r\r\nWriting at 0x000a6757... (75 %)\r\r\nWriting at 0x000ac2cd... (78 %)\r\r\nWriting at 0x000b251b... (81 %)\r\r\nWriting at 0x000b7d4c... (84 %)\r\r\nWriting at 0x000bd413... (87 %)\r\r\nWriting at 0x000c60ff... (90 %)\r\r\nWriting at 0x000ce163... (93 %)\r\r\nWriting at 0x000d4052... (96 %)\r\r\nWriting at 0x000da09a... (100 %)\r\r\nWrote 849424 bytes (540105 compressed) at 0x00010000 in 5.6 seconds (effective 1211.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 545.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1700.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29056",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540131...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f1... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c891... (18 %)\r\r\nWriting at 0x00042791... (21 %)\r\r\nWriting at 0x00048ac8... (24 %)\r\r\nWriting at 0x0004eab0... (27 %)\r\r\nWriting at 0x00054875... (30 %)\r\r\nWriting at 0x0005ab31... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c3... (39 %)\r\r\nWriting at 0x0006c34b... (42 %)\r\r\nWriting at 0x00071374... (45 %)\r\r\nWriting at 0x000762ea... (48 %)\r\r\nWriting at 0x0007b434... (51 %)\r\r\nWriting at 0x000805ba... (54 %)\r\r\nWriting at 0x00085985... (57 %)\r\r\nWriting at 0x0008ad85... (60 %)\r\r\nWriting at 0x00090b93... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b6ae... (69 %)\r\r\nWriting at 0x000a105f... (72 %)\r\r\nWriting at 0x000a6781... (75 %)\r\r\nWriting at 0x000ac318... (78 %)\r\r\nWriting at 0x000b254c... (81 %)\r\r\nWriting at 0x000b7d96... (84 %)\r\r\nWriting at 0x000bd48b... (87 %)\r\r\nWriting at 0x000c615c... (90 %)\r\r\nWriting at 0x000ce1b1... (93 %)\r\r\nWriting at 0x000d40b6... (96 %)\r\r\nWriting at 0x000da108... (100 %)\r\r\nWrote 849552 bytes (540131 compressed) at 0x00010000 in 5.7 seconds (effective 1193.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1541.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29272",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540242...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89c... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaf... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f8... (30 %)\r\r\nWriting at 0x0005aa28... (33 %)\r\r\nWriting at 0x000609eb... (36 %)\r\r\nWriting at 0x0006654a... (39 %)\r\r\nWriting at 0x0006c2e5... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625c... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x00080534... (54 %)\r\r\nWriting at 0x00085904... (57 %)\r\r\nWriting at 0x0008acb8... (60 %)\r\r\nWriting at 0x00090b02... (63 %)\r\r\nWriting at 0x00095f18... (66 %)\r\r\nWriting at 0x0009b645... (69 %)\r\r\nWriting at 0x000a0ff1... (72 %)\r\r\nWriting at 0x000a66ed... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24c8... (81 %)\r\r\nWriting at 0x000b7d14... (84 %)\r\r\nWriting at 0x000bd41b... (87 %)\r\r\nWriting at 0x000c60d5... (90 %)\r\r\nWriting at 0x000ce13f... (93 %)\r\r\nWriting at 0x000d402d... (96 %)\r\r\nWriting at 0x000da086... (100 %)\r\r\nWrote 849568 bytes (540242 compressed) at 0x00010000 in 5.9 seconds (effective 1159.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 565.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1605.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29292",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540233...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c049... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x0004278a... (21 %)\r\r\nWriting at 0x00048ab0... (24 %)\r\r\nWriting at 0x0004ea2d... (27 %)\r\r\nWriting at 0x00054801... (30 %)\r\r\nWriting at 0x0005aa3b... (33 %)\r\r\nWriting at 0x000609fa... (36 %)\r\r\nWriting at 0x00066555... (39 %)\r\r\nWriting at 0x0006c2f2... (42 %)\r\r\nWriting at 0x0007130d... (45 %)\r\r\nWriting at 0x00076266... (48 %)\r\r\nWriting at 0x0007b3bd... (51 %)\r\r\nWriting at 0x0008053e... (54 %)\r\r\nWriting at 0x0008590e... (57 %)\r\r\nWriting at 0x0008acc9... (60 %)\r\r\nWriting at 0x00090b10... (63 %)\r\r\nWriting at 0x00095f27... (66 %)\r\r\nWriting at 0x0009b64f... (69 %)\r\r\nWriting at 0x000a0ffa... (72 %)\r\r\nWriting at 0x000a66fb... (75 %)\r\r\nWriting at 0x000ac26a... (78 %)\r\r\nWriting at 0x000b24d9... (81 %)\r\r\nWriting at 0x000b7d1e... (84 %)\r\r\nWriting at 0x000bd425... (87 %)\r\r\nWriting at 0x000c60e0... (90 %)\r\r\nWriting at 0x000ce14a... (93 %)\r\r\nWriting at 0x000d4039... (96 %)\r\r\nWriting at 0x000da094... (100 %)\r\r\nWrote 849568 bytes (540233 compressed) at 0x00010000 in 5.8 seconds (effective 1167.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 540.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1595.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29332",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf540 bytes. Smallest app partition is 0x100000 bytes. 0x30ac0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 505.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849216 bytes to 540162...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274ec... (9 %)\r\r\nWriting at 0x0002c03b... (12 %)\r\r\nWriting at 0x0003478b... (15 %)\r\r\nWriting at 0x0003c870... (18 %)\r\r\nWriting at 0x00042728... (21 %)\r\r\nWriting at 0x00048a67... (24 %)\r\r\nWriting at 0x0004e93c... (27 %)\r\r\nWriting at 0x000546e8... (30 %)\r\r\nWriting at 0x0005a961... (33 %)\r\r\nWriting at 0x000608f3... (36 %)\r\r\nWriting at 0x00066446... (39 %)\r\r\nWriting at 0x0006c1e3... (42 %)\r\r\nWriting at 0x000711fa... (45 %)\r\r\nWriting at 0x0007615a... (48 %)\r\r\nWriting at 0x0007b2b5... (51 %)\r\r\nWriting at 0x0008042a... (54 %)\r\r\nWriting at 0x00085817... (57 %)\r\r\nWriting at 0x0008abf2... (60 %)\r\r\nWriting at 0x00090a10... (63 %)\r\r\nWriting at 0x00095e21... (66 %)\r\r\nWriting at 0x0009b538... (69 %)\r\r\nWriting at 0x000a0ee0... (72 %)\r\r\nWriting at 0x000a65ef... (75 %)\r\r\nWriting at 0x000ac17b... (78 %)\r\r\nWriting at 0x000b23c6... (81 %)\r\r\nWriting at 0x000b7c10... (84 %)\r\r\nWriting at 0x000bd310... (87 %)\r\r\nWriting at 0x000c5fcd... (90 %)\r\r\nWriting at 0x000ce037... (93 %)\r\r\nWriting at 0x000d3f3c... (96 %)\r\r\nWriting at 0x000d9f92... (100 %)\r\r\nWrote 849216 bytes (540162 compressed) at 0x00010000 in 5.8 seconds (effective 1170.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 580.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1597.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29424",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf620 bytes. Smallest app partition is 0x100000 bytes. 0x309e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849440 bytes to 540114...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca67... (6 %)\r\r\nWriting at 0x00027553... (9 %)\r\r\nWriting at 0x0002c0ac... (12 %)\r\r\nWriting at 0x000347d9... (15 %)\r\r\nWriting at 0x0003c8ce... (18 %)\r\r\nWriting at 0x0004280d... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004ea59... (27 %)\r\r\nWriting at 0x0005481a... (30 %)\r\r\nWriting at 0x0005aac5... (33 %)\r\r\nWriting at 0x00060a6c... (36 %)\r\r\nWriting at 0x0006656d... (39 %)\r\r\nWriting at 0x0006c2e6... (42 %)\r\r\nWriting at 0x000712fd... (45 %)\r\r\nWriting at 0x0007628d... (48 %)\r\r\nWriting at 0x0007b3ea... (51 %)\r\r\nWriting at 0x00080574... (54 %)\r\r\nWriting at 0x00085924... (57 %)\r\r\nWriting at 0x0008ad7d... (60 %)\r\r\nWriting at 0x00090b3e... (63 %)\r\r\nWriting at 0x00095fa6... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a1007... (72 %)\r\r\nWriting at 0x000a674a... (75 %)\r\r\nWriting at 0x000ac2d2... (78 %)\r\r\nWriting at 0x000b2524... (81 %)\r\r\nWriting at 0x000b7d52... (84 %)\r\r\nWriting at 0x000bd421... (87 %)\r\r\nWriting at 0x000c610e... (90 %)\r\r\nWriting at 0x000ce16f... (93 %)\r\r\nWriting at 0x000d405f... (96 %)\r\r\nWriting at 0x000da0ab... (100 %)\r\r\nWrote 849440 bytes (540114 compressed) at 0x00010000 in 5.6 seconds (effective 1218.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 498.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1689.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29612",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540166...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0ec... (12 %)\r\r\nWriting at 0x00034843... (15 %)\r\r\nWriting at 0x0003c945... (18 %)\r\r\nWriting at 0x000428e1... (21 %)\r\r\nWriting at 0x00048bac... (24 %)\r\r\nWriting at 0x0004ead9... (27 %)\r\r\nWriting at 0x000548bc... (30 %)\r\r\nWriting at 0x0005ab69... (33 %)\r\r\nWriting at 0x00060b47... (36 %)\r\r\nWriting at 0x00066618... (39 %)\r\r\nWriting at 0x0006c394... (42 %)\r\r\nWriting at 0x000713a4... (45 %)\r\r\nWriting at 0x0007633a... (48 %)\r\r\nWriting at 0x0007b48b... (51 %)\r\r\nWriting at 0x0008061e... (54 %)\r\r\nWriting at 0x000859d4... (57 %)\r\r\nWriting at 0x0008ae29... (60 %)\r\r\nWriting at 0x00090bf6... (63 %)\r\r\nWriting at 0x00096060... (66 %)\r\r\nWriting at 0x0009b713... (69 %)\r\r\nWriting at 0x000a10c1... (72 %)\r\r\nWriting at 0x000a6812... (75 %)\r\r\nWriting at 0x000ac383... (78 %)\r\r\nWriting at 0x000b25d4... (81 %)\r\r\nWriting at 0x000b7e05... (84 %)\r\r\nWriting at 0x000bd4c2... (87 %)\r\r\nWriting at 0x000c61b7... (90 %)\r\r\nWriting at 0x000ce21a... (93 %)\r\r\nWriting at 0x000d40f8... (96 %)\r\r\nWriting at 0x000da148... (100 %)\r\r\nWrote 849680 bytes (540166 compressed) at 0x00010000 in 5.6 seconds (effective 1214.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 528.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1655.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29648",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 471.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540134...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca28... (6 %)\r\r\nWriting at 0x000274f1... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x0003479b... (15 %)\r\r\nWriting at 0x0003c891... (18 %)\r\r\nWriting at 0x00042790... (21 %)\r\r\nWriting at 0x00048ac8... (24 %)\r\r\nWriting at 0x0004eaaf... (27 %)\r\r\nWriting at 0x00054875... (30 %)\r\r\nWriting at 0x0005ab31... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665c3... (39 %)\r\r\nWriting at 0x0006c34b... (42 %)\r\r\nWriting at 0x00071374... (45 %)\r\r\nWriting at 0x000762ea... (48 %)\r\r\nWriting at 0x0007b434... (51 %)\r\r\nWriting at 0x000805ba... (54 %)\r\r\nWriting at 0x00085985... (57 %)\r\r\nWriting at 0x0008ad85... (60 %)\r\r\nWriting at 0x00090b92... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b6ae... (69 %)\r\r\nWriting at 0x000a105f... (72 %)\r\r\nWriting at 0x000a6781... (75 %)\r\r\nWriting at 0x000ac318... (78 %)\r\r\nWriting at 0x000b254c... (81 %)\r\r\nWriting at 0x000b7d96... (84 %)\r\r\nWriting at 0x000bd48b... (87 %)\r\r\nWriting at 0x000c615c... (90 %)\r\r\nWriting at 0x000ce1b1... (93 %)\r\r\nWriting at 0x000d40b6... (96 %)\r\r\nWriting at 0x000da108... (100 %)\r\r\nWrote 849552 bytes (540134 compressed) at 0x00010000 in 5.7 seconds (effective 1184.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 538.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1537.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29792",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540117...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e3... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b43... (24 %)\r\r\nWriting at 0x0004ea6a... (27 %)\r\r\nWriting at 0x00054830... (30 %)\r\r\nWriting at 0x0005aad4... (33 %)\r\r\nWriting at 0x00060abe... (36 %)\r\r\nWriting at 0x00066570... (39 %)\r\r\nWriting at 0x0006c2ed... (42 %)\r\r\nWriting at 0x000712fb... (45 %)\r\r\nWriting at 0x0007628d... (48 %)\r\r\nWriting at 0x0007b3e3... (51 %)\r\r\nWriting at 0x00080573... (54 %)\r\r\nWriting at 0x0008591a... (57 %)\r\r\nWriting at 0x0008ad6f... (60 %)\r\r\nWriting at 0x00090b3b... (63 %)\r\r\nWriting at 0x00095f9c... (66 %)\r\r\nWriting at 0x0009b644... (69 %)\r\r\nWriting at 0x000a0ffe... (72 %)\r\r\nWriting at 0x000a6744... (75 %)\r\r\nWriting at 0x000ac2c3... (78 %)\r\r\nWriting at 0x000b2507... (81 %)\r\r\nWriting at 0x000b7d39... (84 %)\r\r\nWriting at 0x000bd405... (87 %)\r\r\nWriting at 0x000c60f3... (90 %)\r\r\nWriting at 0x000ce152... (93 %)\r\r\nWriting at 0x000d4044... (96 %)\r\r\nWriting at 0x000da08f... (100 %)\r\r\nWrote 849424 bytes (540117 compressed) at 0x00010000 in 5.8 seconds (effective 1174.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 502.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1656.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_29964",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540411...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca56... (6 %)\r\r\nWriting at 0x000275b6... (9 %)\r\r\nWriting at 0x0002c05e... (12 %)\r\r\nWriting at 0x00034836... (15 %)\r\r\nWriting at 0x0003c91b... (18 %)\r\r\nWriting at 0x000428b0... (21 %)\r\r\nWriting at 0x00048ba6... (24 %)\r\r\nWriting at 0x0004ea8d... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005ab1e... (33 %)\r\r\nWriting at 0x00060a5e... (36 %)\r\r\nWriting at 0x000665b1... (39 %)\r\r\nWriting at 0x0006c336... (42 %)\r\r\nWriting at 0x0007134f... (45 %)\r\r\nWriting at 0x000762c7... (48 %)\r\r\nWriting at 0x0007b40f... (51 %)\r\r\nWriting at 0x0008058e... (54 %)\r\r\nWriting at 0x0008595a... (57 %)\r\r\nWriting at 0x0008ad4d... (60 %)\r\r\nWriting at 0x00090b5c... (63 %)\r\r\nWriting at 0x00095f7c... (66 %)\r\r\nWriting at 0x0009b676... (69 %)\r\r\nWriting at 0x000a1026... (72 %)\r\r\nWriting at 0x000a674d... (75 %)\r\r\nWriting at 0x000ac2e1... (78 %)\r\r\nWriting at 0x000b2516... (81 %)\r\r\nWriting at 0x000b7d68... (84 %)\r\r\nWriting at 0x000bd45c... (87 %)\r\r\nWriting at 0x000c612b... (90 %)\r\r\nWriting at 0x000ce183... (93 %)\r\r\nWriting at 0x000d402e... (96 %)\r\r\nWriting at 0x000da0bd... (100 %)\r\r\nWrote 849824 bytes (540411 compressed) at 0x00010000 in 5.8 seconds (effective 1165.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 527.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1598.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_30000",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540106...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027558... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8e1... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b41... (24 %)\r\r\nWriting at 0x0004ea75... (27 %)\r\r\nWriting at 0x00054839... (30 %)\r\r\nWriting at 0x0005aae1... (33 %)\r\r\nWriting at 0x00060ad6... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2fa... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007629d... (48 %)\r\r\nWriting at 0x0007b3ee... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085926... (57 %)\r\r\nWriting at 0x0008ad7b... (60 %)\r\r\nWriting at 0x00090b46... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b65c... (69 %)\r\r\nWriting at 0x000a100d... (72 %)\r\r\nWriting at 0x000a675a... (75 %)\r\r\nWriting at 0x000ac2cd... (78 %)\r\r\nWriting at 0x000b251b... (81 %)\r\r\nWriting at 0x000b7d4c... (84 %)\r\r\nWriting at 0x000bd414... (87 %)\r\r\nWriting at 0x000c6100... (90 %)\r\r\nWriting at 0x000ce164... (93 %)\r\r\nWriting at 0x000d4057... (96 %)\r\r\nWriting at 0x000da09b... (100 %)\r\r\nWrote 849424 bytes (540106 compressed) at 0x00010000 in 5.6 seconds (effective 1210.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 510.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_30196",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540092...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0a8... (12 %)\r\r\nWriting at 0x000347e1... (15 %)\r\r\nWriting at 0x0003c8e0... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b41... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aaea... (33 %)\r\r\nWriting at 0x00060aff... (36 %)\r\r\nWriting at 0x0006658b... (39 %)\r\r\nWriting at 0x0006c301... (42 %)\r\r\nWriting at 0x0007130f... (45 %)\r\r\nWriting at 0x000762a9... (48 %)\r\r\nWriting at 0x0007b3f9... (51 %)\r\r\nWriting at 0x0008059a... (54 %)\r\r\nWriting at 0x00085931... (57 %)\r\r\nWriting at 0x0008ad84... (60 %)\r\r\nWriting at 0x00090b51... (63 %)\r\r\nWriting at 0x00095fb6... (66 %)\r\r\nWriting at 0x0009b665... (69 %)\r\r\nWriting at 0x000a1016... (72 %)\r\r\nWriting at 0x000a6764... (75 %)\r\r\nWriting at 0x000ac2d9... (78 %)\r\r\nWriting at 0x000b2527... (81 %)\r\r\nWriting at 0x000b7d61... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c610e... (90 %)\r\r\nWriting at 0x000ce170... (93 %)\r\r\nWriting at 0x000d4067... (96 %)\r\r\nWriting at 0x000da0a7... (100 %)\r\r\nWrote 849424 bytes (540092 compressed) at 0x00010000 in 5.6 seconds (effective 1204.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 508.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1693.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_30212",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 473.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849616 bytes to 540163...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027596... (9 %)\r\r\nWriting at 0x0002c0e8... (12 %)\r\r\nWriting at 0x00034838... (15 %)\r\r\nWriting at 0x0003c92e... (18 %)\r\r\nWriting at 0x000428cd... (21 %)\r\r\nWriting at 0x00048bac... (24 %)\r\r\nWriting at 0x0004eac9... (27 %)\r\r\nWriting at 0x00054891... (30 %)\r\r\nWriting at 0x0005ab43... (33 %)\r\r\nWriting at 0x00060b10... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c364... (42 %)\r\r\nWriting at 0x00071371... (45 %)\r\r\nWriting at 0x00076304... (48 %)\r\r\nWriting at 0x0007b455... (51 %)\r\r\nWriting at 0x000805ef... (54 %)\r\r\nWriting at 0x000859a2... (57 %)\r\r\nWriting at 0x0008adf4... (60 %)\r\r\nWriting at 0x00090bbe... (63 %)\r\r\nWriting at 0x00096028... (66 %)\r\r\nWriting at 0x0009b6da... (69 %)\r\r\nWriting at 0x000a1088... (72 %)\r\r\nWriting at 0x000a67da... (75 %)\r\r\nWriting at 0x000ac34b... (78 %)\r\r\nWriting at 0x000b259c... (81 %)\r\r\nWriting at 0x000b7dd4... (84 %)\r\r\nWriting at 0x000bd48d... (87 %)\r\r\nWriting at 0x000c6182... (90 %)\r\r\nWriting at 0x000ce1e6... (93 %)\r\r\nWriting at 0x000d40c7... (96 %)\r\r\nWriting at 0x000da115... (100 %)\r\r\nWrote 849616 bytes (540163 compressed) at 0x00010000 in 5.7 seconds (effective 1184.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 497.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1611.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_30316",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540189...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027552... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e0... (18 %)\r\r\nWriting at 0x0004282e... (21 %)\r\r\nWriting at 0x00048b44... (24 %)\r\r\nWriting at 0x0004ea90... (27 %)\r\r\nWriting at 0x0005485e... (30 %)\r\r\nWriting at 0x0005aaf7... (33 %)\r\r\nWriting at 0x00060a60... (36 %)\r\r\nWriting at 0x00066599... (39 %)\r\r\nWriting at 0x0006c321... (42 %)\r\r\nWriting at 0x0007132a... (45 %)\r\r\nWriting at 0x000762af... (48 %)\r\r\nWriting at 0x0007b413... (51 %)\r\r\nWriting at 0x00080586... (54 %)\r\r\nWriting at 0x00085943... (57 %)\r\r\nWriting at 0x0008ad99... (60 %)\r\r\nWriting at 0x00090b63... (63 %)\r\r\nWriting at 0x00095fc2... (66 %)\r\r\nWriting at 0x0009b66d... (69 %)\r\r\nWriting at 0x000a1019... (72 %)\r\r\nWriting at 0x000a676e... (75 %)\r\r\nWriting at 0x000ac2e1... (78 %)\r\r\nWriting at 0x000b2525... (81 %)\r\r\nWriting at 0x000b7d5a... (84 %)\r\r\nWriting at 0x000bd43f... (87 %)\r\r\nWriting at 0x000c611f... (90 %)\r\r\nWriting at 0x000ce17a... (93 %)\r\r\nWriting at 0x000d4065... (96 %)\r\r\nWriting at 0x000da0bc... (100 %)\r\r\nWrote 849552 bytes (540189 compressed) at 0x00010000 in 5.7 seconds (effective 1202.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1633.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_3044",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf730 bytes. Smallest app partition is 0x100000 bytes. 0x308d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 506.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849712 bytes to 540336...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca97... (6 %)\r\r\nWriting at 0x00027578... (9 %)\r\r\nWriting at 0x0002c0c5... (12 %)\r\r\nWriting at 0x00034800... (15 %)\r\r\nWriting at 0x0003c8f5... (18 %)\r\r\nWriting at 0x0004286a... (21 %)\r\r\nWriting at 0x00048b6c... (24 %)\r\r\nWriting at 0x0004ea63... (27 %)\r\r\nWriting at 0x0005481e... (30 %)\r\r\nWriting at 0x0005aaf4... (33 %)\r\r\nWriting at 0x00060a3b... (36 %)\r\r\nWriting at 0x0006658c... (39 %)\r\r\nWriting at 0x0006c309... (42 %)\r\r\nWriting at 0x00071320... (45 %)\r\r\nWriting at 0x0007628c... (48 %)\r\r\nWriting at 0x0007b3e9... (51 %)\r\r\nWriting at 0x00080566... (54 %)\r\r\nWriting at 0x00085938... (57 %)\r\r\nWriting at 0x0008ad40... (60 %)\r\r\nWriting at 0x00090b3f... (63 %)\r\r\nWriting at 0x00095f7f... (66 %)\r\r\nWriting at 0x0009b65e... (69 %)\r\r\nWriting at 0x000a100f... (72 %)\r\r\nWriting at 0x000a6735... (75 %)\r\r\nWriting at 0x000ac2ca... (78 %)\r\r\nWriting at 0x000b2503... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd442... (87 %)\r\r\nWriting at 0x000c6114... (90 %)\r\r\nWriting at 0x000ce16e... (93 %)\r\r\nWriting at 0x000d4032... (96 %)\r\r\nWriting at 0x000da0b4... (100 %)\r\r\nWrote 849712 bytes (540336 compressed) at 0x00010000 in 5.8 seconds (effective 1176.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1602.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_30904",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf530 bytes. Smallest app partition is 0x100000 bytes. 0x30ad0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting.................................\r\r\n\r\r\nA serial exception error occurred: ClearCommError failed (PermissionError(13, 'The device does not recognize the command.', None, 22))\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_31096",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 540085...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca47... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c050... (12 %)\r\r\nWriting at 0x000347b3... (15 %)\r\r\nWriting at 0x0003c890... (18 %)\r\r\nWriting at 0x0004276d... (21 %)\r\r\nWriting at 0x00048a9b... (24 %)\r\r\nWriting at 0x0004e968... (27 %)\r\r\nWriting at 0x00054703... (30 %)\r\r\nWriting at 0x0005a9cf... (33 %)\r\r\nWriting at 0x0006091c... (36 %)\r\r\nWriting at 0x0006647e... (39 %)\r\r\nWriting at 0x0006c202... (42 %)\r\r\nWriting at 0x00071219... (45 %)\r\r\nWriting at 0x000761a7... (48 %)\r\r\nWriting at 0x0007b2e9... (51 %)\r\r\nWriting at 0x00080478... (54 %)\r\r\nWriting at 0x00085842... (57 %)\r\r\nWriting at 0x0008ac40... (60 %)\r\r\nWriting at 0x00090a3c... (63 %)\r\r\nWriting at 0x00095e91... (66 %)\r\r\nWriting at 0x0009b558... (69 %)\r\r\nWriting at 0x000a0f08... (72 %)\r\r\nWriting at 0x000a6625... (75 %)\r\r\nWriting at 0x000ac1c1... (78 %)\r\r\nWriting at 0x000b23f7... (81 %)\r\r\nWriting at 0x000b7c40... (84 %)\r\r\nWriting at 0x000bd339... (87 %)\r\r\nWriting at 0x000c6007... (90 %)\r\r\nWriting at 0x000ce063... (93 %)\r\r\nWriting at 0x000d3f85... (96 %)\r\r\nWriting at 0x000d9fbe... (100 %)\r\r\nWrote 849168 bytes (540085 compressed) at 0x00010000 in 5.9 seconds (effective 1147.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 544.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1593.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_31408",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'app_main':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:2114:21: error: 'getDS3231' undeclared (first use in this function)\r\n 2114 |         xTaskCreate(getDS3231, \"getDS3231\", configMINIMAL_STACK_SIZE * 6, NULL, 5, &getDS3231Handle);\r\n      |                     ^~~~~~~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:2114:21: note: each undeclared identifier is reported only once for each function it appears in\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_31920",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf530 bytes. Smallest app partition is 0x100000 bytes. 0x30ad0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849200 bytes to 540019...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa9... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0b4... (12 %)\r\r\nWriting at 0x000347e5... (15 %)\r\r\nWriting at 0x0003c8dc... (18 %)\r\r\nWriting at 0x00042832... (21 %)\r\r\nWriting at 0x00048b39... (24 %)\r\r\nWriting at 0x0004e9ed... (27 %)\r\r\nWriting at 0x000547ab... (30 %)\r\r\nWriting at 0x0005aa5d... (33 %)\r\r\nWriting at 0x00060a9a... (36 %)\r\r\nWriting at 0x00066511... (39 %)\r\r\nWriting at 0x0006c276... (42 %)\r\r\nWriting at 0x0007129b... (45 %)\r\r\nWriting at 0x0007622f... (48 %)\r\r\nWriting at 0x0007b36c... (51 %)\r\r\nWriting at 0x00080549... (54 %)\r\r\nWriting at 0x000858a2... (57 %)\r\r\nWriting at 0x0008acf7... (60 %)\r\r\nWriting at 0x00090ac3... (63 %)\r\r\nWriting at 0x00095f2d... (66 %)\r\r\nWriting at 0x0009b5ce... (69 %)\r\r\nWriting at 0x000a0f84... (72 %)\r\r\nWriting at 0x000a66e1... (75 %)\r\r\nWriting at 0x000ac250... (78 %)\r\r\nWriting at 0x000b24ac... (81 %)\r\r\nWriting at 0x000b7ce3... (84 %)\r\r\nWriting at 0x000bd38b... (87 %)\r\r\nWriting at 0x000c607c... (90 %)\r\r\nWriting at 0x000ce0f9... (93 %)\r\r\nWriting at 0x000d3fef... (96 %)\r\r\nWriting at 0x000da01c... (100 %)\r\r\nWrote 849200 bytes (540019 compressed) at 0x00010000 in 5.5 seconds (effective 1227.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1707.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_31952",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540197...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x0003483d... (15 %)\r\r\nWriting at 0x0003c933... (18 %)\r\r\nWriting at 0x000428d1... (21 %)\r\r\nWriting at 0x00048bc3... (24 %)\r\r\nWriting at 0x0004eadb... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab61... (33 %)\r\r\nWriting at 0x00060b02... (36 %)\r\r\nWriting at 0x00066603... (39 %)\r\r\nWriting at 0x0006c37d... (42 %)\r\r\nWriting at 0x0007138a... (45 %)\r\r\nWriting at 0x0007631a... (48 %)\r\r\nWriting at 0x0007b472... (51 %)\r\r\nWriting at 0x000805f9... (54 %)\r\r\nWriting at 0x000859bd... (57 %)\r\r\nWriting at 0x0008ae15... (60 %)\r\r\nWriting at 0x00090be7... (63 %)\r\r\nWriting at 0x0009604e... (66 %)\r\r\nWriting at 0x0009b6f6... (69 %)\r\r\nWriting at 0x000a10ad... (72 %)\r\r\nWriting at 0x000a67f7... (75 %)\r\r\nWriting at 0x000ac375... (78 %)\r\r\nWriting at 0x000b25b9... (81 %)\r\r\nWriting at 0x000b7de4... (84 %)\r\r\nWriting at 0x000bd4b3... (87 %)\r\r\nWriting at 0x000c619d... (90 %)\r\r\nWriting at 0x000ce201... (93 %)\r\r\nWriting at 0x000d40e0... (96 %)\r\r\nWriting at 0x000da134... (100 %)\r\r\nWrote 849696 bytes (540197 compressed) at 0x00010000 in 5.6 seconds (effective 1205.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 487.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1644.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_32244",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540194...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x00027558... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x000347ea... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x0004284f... (21 %)\r\r\nWriting at 0x00048b5f... (24 %)\r\r\nWriting at 0x0004ea8e... (27 %)\r\r\nWriting at 0x00054855... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060a53... (36 %)\r\r\nWriting at 0x0006658f... (39 %)\r\r\nWriting at 0x0006c312... (42 %)\r\r\nWriting at 0x0007131a... (45 %)\r\r\nWriting at 0x000762a3... (48 %)\r\r\nWriting at 0x0007b407... (51 %)\r\r\nWriting at 0x0008057a... (54 %)\r\r\nWriting at 0x00085937... (57 %)\r\r\nWriting at 0x0008ad8d... (60 %)\r\r\nWriting at 0x00090b55... (63 %)\r\r\nWriting at 0x00095fbc... (66 %)\r\r\nWriting at 0x0009b668... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a6769... (75 %)\r\r\nWriting at 0x000ac2e2... (78 %)\r\r\nWriting at 0x000b251e... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd434... (87 %)\r\r\nWriting at 0x000c6116... (90 %)\r\r\nWriting at 0x000ce16f... (93 %)\r\r\nWriting at 0x000d405d... (96 %)\r\r\nWriting at 0x000da0b1... (100 %)\r\r\nWrote 849552 bytes (540194 compressed) at 0x00010000 in 5.6 seconds (effective 1204.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1635.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_3232",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5b0 bytes. Smallest app partition is 0x100000 bytes. 0x30a50 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849328 bytes to 540053...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x00027561... (9 %)\r\r\nWriting at 0x0002c0b8... (12 %)\r\r\nWriting at 0x00034821... (15 %)\r\r\nWriting at 0x0003c914... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b6a... (24 %)\r\r\nWriting at 0x0004ea35... (27 %)\r\r\nWriting at 0x0005480a... (30 %)\r\r\nWriting at 0x0005aab7... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x0006655f... (39 %)\r\r\nWriting at 0x0006c2de... (42 %)\r\r\nWriting at 0x000712e5... (45 %)\r\r\nWriting at 0x00076284... (48 %)\r\r\nWriting at 0x0007b3c8... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x00085902... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f85... (66 %)\r\r\nWriting at 0x0009b62e... (69 %)\r\r\nWriting at 0x000a0fde... (72 %)\r\r\nWriting at 0x000a673a... (75 %)\r\r\nWriting at 0x000ac2a9... (78 %)\r\r\nWriting at 0x000b2509... (81 %)\r\r\nWriting at 0x000b7d3e... (84 %)\r\r\nWriting at 0x000bd3e0... (87 %)\r\r\nWriting at 0x000c60d7... (90 %)\r\r\nWriting at 0x000ce144... (93 %)\r\r\nWriting at 0x000d404a... (96 %)\r\r\nWriting at 0x000da074... (100 %)\r\r\nWrote 849328 bytes (540053 compressed) at 0x00010000 in 5.6 seconds (effective 1212.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1666.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_32756",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf540 bytes. Smallest app partition is 0x100000 bytes. 0x30ac0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849216 bytes to 540145...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274f3... (9 %)\r\r\nWriting at 0x0002c043... (12 %)\r\r\nWriting at 0x0003479f... (15 %)\r\r\nWriting at 0x0003c882... (18 %)\r\r\nWriting at 0x00042755... (21 %)\r\r\nWriting at 0x00048a8b... (24 %)\r\r\nWriting at 0x0004e944... (27 %)\r\r\nWriting at 0x000546f3... (30 %)\r\r\nWriting at 0x0005a96f... (33 %)\r\r\nWriting at 0x000608f4... (36 %)\r\r\nWriting at 0x00066454... (39 %)\r\r\nWriting at 0x0006c1e3... (42 %)\r\r\nWriting at 0x00071200... (45 %)\r\r\nWriting at 0x00076163... (48 %)\r\r\nWriting at 0x0007b2be... (51 %)\r\r\nWriting at 0x0008042f... (54 %)\r\r\nWriting at 0x0008581c... (57 %)\r\r\nWriting at 0x0008abf3... (60 %)\r\r\nWriting at 0x00090a1e... (63 %)\r\r\nWriting at 0x00095e3e... (66 %)\r\r\nWriting at 0x0009b542... (69 %)\r\r\nWriting at 0x000a0eea... (72 %)\r\r\nWriting at 0x000a65fb... (75 %)\r\r\nWriting at 0x000ac19d... (78 %)\r\r\nWriting at 0x000b23d4... (81 %)\r\r\nWriting at 0x000b7c20... (84 %)\r\r\nWriting at 0x000bd31c... (87 %)\r\r\nWriting at 0x000c5fe1... (90 %)\r\r\nWriting at 0x000ce045... (93 %)\r\r\nWriting at 0x000d3f4d... (96 %)\r\r\nWriting at 0x000d9fa4... (100 %)\r\r\nWrote 849216 bytes (540145 compressed) at 0x00010000 in 5.9 seconds (effective 1159.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 516.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1577.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_33540",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting..............\r\r\n\r\r\nA serial exception error occurred: Cannot configure port, something went wrong. Original message: PermissionError(13, 'The device does not recognize the command.', None, 22)\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_34376",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540053...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa1... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347fe... (15 %)\r\r\nWriting at 0x0003c8fd... (18 %)\r\r\nWriting at 0x0004284a... (21 %)\r\r\nWriting at 0x00048b55... (24 %)\r\r\nWriting at 0x0004ea51... (27 %)\r\r\nWriting at 0x000547fe... (30 %)\r\r\nWriting at 0x0005aaab... (33 %)\r\r\nWriting at 0x00060acb... (36 %)\r\r\nWriting at 0x00066547... (39 %)\r\r\nWriting at 0x0006c2c1... (42 %)\r\r\nWriting at 0x000712c9... (45 %)\r\r\nWriting at 0x0007626f... (48 %)\r\r\nWriting at 0x0007b3b1... (51 %)\r\r\nWriting at 0x00080573... (54 %)\r\r\nWriting at 0x000858ec... (57 %)\r\r\nWriting at 0x0008ad40... (60 %)\r\r\nWriting at 0x00090b10... (63 %)\r\r\nWriting at 0x00095f6d... (66 %)\r\r\nWriting at 0x0009b617... (69 %)\r\r\nWriting at 0x000a0fc9... (72 %)\r\r\nWriting at 0x000a6724... (75 %)\r\r\nWriting at 0x000ac294... (78 %)\r\r\nWriting at 0x000b24f1... (81 %)\r\r\nWriting at 0x000b7d29... (84 %)\r\r\nWriting at 0x000bd3cc... (87 %)\r\r\nWriting at 0x000c60c8... (90 %)\r\r\nWriting at 0x000ce133... (93 %)\r\r\nWriting at 0x000d4038... (96 %)\r\r\nWriting at 0x000da05f... (100 %)\r\r\nWrote 849312 bytes (540053 compressed) at 0x00010000 in 5.6 seconds (effective 1210.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 507.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_344",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf670 bytes. Smallest app partition is 0x100000 bytes. 0x30990 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849520 bytes to 540187...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0b3... (12 %)\r\r\nWriting at 0x000347f3... (15 %)\r\r\nWriting at 0x0003c8f5... (18 %)\r\r\nWriting at 0x0004284f... (21 %)\r\r\nWriting at 0x00048b64... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x0005484a... (30 %)\r\r\nWriting at 0x0005aadb... (33 %)\r\r\nWriting at 0x00060a44... (36 %)\r\r\nWriting at 0x0006657c... (39 %)\r\r\nWriting at 0x0006c309... (42 %)\r\r\nWriting at 0x0007131a... (45 %)\r\r\nWriting at 0x000762a5... (48 %)\r\r\nWriting at 0x0007b404... (51 %)\r\r\nWriting at 0x00080581... (54 %)\r\r\nWriting at 0x00085934... (57 %)\r\r\nWriting at 0x0008ad86... (60 %)\r\r\nWriting at 0x00090b49... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b651... (69 %)\r\r\nWriting at 0x000a0ffa... (72 %)\r\r\nWriting at 0x000a674f... (75 %)\r\r\nWriting at 0x000ac2c1... (78 %)\r\r\nWriting at 0x000b250a... (81 %)\r\r\nWriting at 0x000b7d3b... (84 %)\r\r\nWriting at 0x000bd420... (87 %)\r\r\nWriting at 0x000c6101... (90 %)\r\r\nWriting at 0x000ce15a... (93 %)\r\r\nWriting at 0x000d4045... (96 %)\r\r\nWriting at 0x000da09c... (100 %)\r\r\nWrote 849520 bytes (540187 compressed) at 0x00010000 in 5.6 seconds (effective 1204.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 500.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1631.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_34440",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 508.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540421...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8d... (6 %)\r\r\nWriting at 0x000275b5... (9 %)\r\r\nWriting at 0x0002c060... (12 %)\r\r\nWriting at 0x0003483c... (15 %)\r\r\nWriting at 0x0003c921... (18 %)\r\r\nWriting at 0x000428c5... (21 %)\r\r\nWriting at 0x00048bb4... (24 %)\r\r\nWriting at 0x0004ea98... (27 %)\r\r\nWriting at 0x00054864... (30 %)\r\r\nWriting at 0x0005ab22... (33 %)\r\r\nWriting at 0x00060a61... (36 %)\r\r\nWriting at 0x000665b5... (39 %)\r\r\nWriting at 0x0006c338... (42 %)\r\r\nWriting at 0x0007134d... (45 %)\r\r\nWriting at 0x000762bc... (48 %)\r\r\nWriting at 0x0007b40d... (51 %)\r\r\nWriting at 0x0008058b... (54 %)\r\r\nWriting at 0x00085953... (57 %)\r\r\nWriting at 0x0008ad4c... (60 %)\r\r\nWriting at 0x00090b53... (63 %)\r\r\nWriting at 0x00095f77... (66 %)\r\r\nWriting at 0x0009b672... (69 %)\r\r\nWriting at 0x000a101f... (72 %)\r\r\nWriting at 0x000a6741... (75 %)\r\r\nWriting at 0x000ac2d5... (78 %)\r\r\nWriting at 0x000b250b... (81 %)\r\r\nWriting at 0x000b7d5f... (84 %)\r\r\nWriting at 0x000bd455... (87 %)\r\r\nWriting at 0x000c6125... (90 %)\r\r\nWriting at 0x000ce17a... (93 %)\r\r\nWriting at 0x000d4021... (96 %)\r\r\nWriting at 0x000da0b8... (100 %)\r\r\nWrote 849824 bytes (540421 compressed) at 0x00010000 in 5.8 seconds (effective 1176.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1602.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_35296",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf670 bytes. Smallest app partition is 0x100000 bytes. 0x30990 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849520 bytes to 540187...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0b3... (12 %)\r\r\nWriting at 0x000347f3... (15 %)\r\r\nWriting at 0x0003c8f5... (18 %)\r\r\nWriting at 0x0004284f... (21 %)\r\r\nWriting at 0x00048b64... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x0005484a... (30 %)\r\r\nWriting at 0x0005aadb... (33 %)\r\r\nWriting at 0x00060a44... (36 %)\r\r\nWriting at 0x0006657c... (39 %)\r\r\nWriting at 0x0006c309... (42 %)\r\r\nWriting at 0x0007131a... (45 %)\r\r\nWriting at 0x000762a5... (48 %)\r\r\nWriting at 0x0007b404... (51 %)\r\r\nWriting at 0x00080581... (54 %)\r\r\nWriting at 0x00085934... (57 %)\r\r\nWriting at 0x0008ad86... (60 %)\r\r\nWriting at 0x00090b49... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b651... (69 %)\r\r\nWriting at 0x000a0ffa... (72 %)\r\r\nWriting at 0x000a674f... (75 %)\r\r\nWriting at 0x000ac2c1... (78 %)\r\r\nWriting at 0x000b250a... (81 %)\r\r\nWriting at 0x000b7d3b... (84 %)\r\r\nWriting at 0x000bd420... (87 %)\r\r\nWriting at 0x000c6101... (90 %)\r\r\nWriting at 0x000ce15a... (93 %)\r\r\nWriting at 0x000d4045... (96 %)\r\r\nWriting at 0x000da09c... (100 %)\r\r\nWrote 849520 bytes (540187 compressed) at 0x00010000 in 5.7 seconds (effective 1202.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 521.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1639.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_35496",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7b0 bytes. Smallest app partition is 0x100000 bytes. 0x30850 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849840 bytes to 540407...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5b... (6 %)\r\r\nWriting at 0x000275b9... (9 %)\r\r\nWriting at 0x0002c081... (12 %)\r\r\nWriting at 0x00034840... (15 %)\r\r\nWriting at 0x0003c935... (18 %)\r\r\nWriting at 0x000428d5... (21 %)\r\r\nWriting at 0x00048bb4... (24 %)\r\r\nWriting at 0x0004ea9c... (27 %)\r\r\nWriting at 0x00054862... (30 %)\r\r\nWriting at 0x0005ab13... (33 %)\r\r\nWriting at 0x00060a67... (36 %)\r\r\nWriting at 0x000665b4... (39 %)\r\r\nWriting at 0x0006c344... (42 %)\r\r\nWriting at 0x00071354... (45 %)\r\r\nWriting at 0x000762cc... (48 %)\r\r\nWriting at 0x0007b41b... (51 %)\r\r\nWriting at 0x0008059a... (54 %)\r\r\nWriting at 0x00085966... (57 %)\r\r\nWriting at 0x0008ad5c... (60 %)\r\r\nWriting at 0x00090b6d... (63 %)\r\r\nWriting at 0x00095f8d... (66 %)\r\r\nWriting at 0x0009b685... (69 %)\r\r\nWriting at 0x000a1036... (72 %)\r\r\nWriting at 0x000a675d... (75 %)\r\r\nWriting at 0x000ac2f0... (78 %)\r\r\nWriting at 0x000b2524... (81 %)\r\r\nWriting at 0x000b7d76... (84 %)\r\r\nWriting at 0x000bd46a... (87 %)\r\r\nWriting at 0x000c613b... (90 %)\r\r\nWriting at 0x000ce191... (93 %)\r\r\nWriting at 0x000d4040... (96 %)\r\r\nWriting at 0x000da0cc... (100 %)\r\r\nWrote 849840 bytes (540407 compressed) at 0x00010000 in 5.9 seconds (effective 1160.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 555.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1584.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_35620",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 483.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540056...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x00027558... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347f9... (15 %)\r\r\nWriting at 0x0003c8fa... (18 %)\r\r\nWriting at 0x00042848... (21 %)\r\r\nWriting at 0x00048b59... (24 %)\r\r\nWriting at 0x0004ea4d... (27 %)\r\r\nWriting at 0x000547fa... (30 %)\r\r\nWriting at 0x0005aaa6... (33 %)\r\r\nWriting at 0x00060aa8... (36 %)\r\r\nWriting at 0x00066542... (39 %)\r\r\nWriting at 0x0006c2bc... (42 %)\r\r\nWriting at 0x000712c4... (45 %)\r\r\nWriting at 0x00076269... (48 %)\r\r\nWriting at 0x0007b3ad... (51 %)\r\r\nWriting at 0x00080565... (54 %)\r\r\nWriting at 0x000858e4... (57 %)\r\r\nWriting at 0x0008ad34... (60 %)\r\r\nWriting at 0x00090b0d... (63 %)\r\r\nWriting at 0x00095f6b... (66 %)\r\r\nWriting at 0x0009b612... (69 %)\r\r\nWriting at 0x000a0fc5... (72 %)\r\r\nWriting at 0x000a671a... (75 %)\r\r\nWriting at 0x000ac288... (78 %)\r\r\nWriting at 0x000b24ea... (81 %)\r\r\nWriting at 0x000b7d1d... (84 %)\r\r\nWriting at 0x000bd3c9... (87 %)\r\r\nWriting at 0x000c60c3... (90 %)\r\r\nWriting at 0x000ce12c... (93 %)\r\r\nWriting at 0x000d4035... (96 %)\r\r\nWriting at 0x000da05a... (100 %)\r\r\nWrote 849312 bytes (540056 compressed) at 0x00010000 in 5.6 seconds (effective 1215.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1694.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_35860",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540178...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027590... (9 %)\r\r\nWriting at 0x0002c0e3... (12 %)\r\r\nWriting at 0x00034832... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428bc... (21 %)\r\r\nWriting at 0x00048b9d... (24 %)\r\r\nWriting at 0x0004eae5... (27 %)\r\r\nWriting at 0x000548b0... (30 %)\r\r\nWriting at 0x0005ab63... (33 %)\r\r\nWriting at 0x00060b33... (36 %)\r\r\nWriting at 0x00066604... (39 %)\r\r\nWriting at 0x0006c37b... (42 %)\r\r\nWriting at 0x00071387... (45 %)\r\r\nWriting at 0x00076315... (48 %)\r\r\nWriting at 0x0007b46d... (51 %)\r\r\nWriting at 0x000805f3... (54 %)\r\r\nWriting at 0x000859b2... (57 %)\r\r\nWriting at 0x0008adff... (60 %)\r\r\nWriting at 0x00090bd4... (63 %)\r\r\nWriting at 0x00096039... (66 %)\r\r\nWriting at 0x0009b6ec... (69 %)\r\r\nWriting at 0x000a109d... (72 %)\r\r\nWriting at 0x000a67ea... (75 %)\r\r\nWriting at 0x000ac35c... (78 %)\r\r\nWriting at 0x000b25aa... (81 %)\r\r\nWriting at 0x000b7dd0... (84 %)\r\r\nWriting at 0x000bd4a0... (87 %)\r\r\nWriting at 0x000c618d... (90 %)\r\r\nWriting at 0x000ce1f2... (93 %)\r\r\nWriting at 0x000d40cf... (96 %)\r\r\nWriting at 0x000da126... (100 %)\r\r\nWrote 849648 bytes (540178 compressed) at 0x00010000 in 5.6 seconds (effective 1212.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1700.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_3596",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.7 seconds (effective 1184.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 543.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1682.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_35984",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf760 bytes. Smallest app partition is 0x100000 bytes. 0x308a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 478.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849760 bytes to 540312...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027584... (9 %)\r\r\nWriting at 0x0002c052... (12 %)\r\r\nWriting at 0x0003481c... (15 %)\r\r\nWriting at 0x0003c915... (18 %)\r\r\nWriting at 0x0004289d... (21 %)\r\r\nWriting at 0x00048b8e... (24 %)\r\r\nWriting at 0x0004eaaf... (27 %)\r\r\nWriting at 0x0005488f... (30 %)\r\r\nWriting at 0x0005ab51... (33 %)\r\r\nWriting at 0x00060a8d... (36 %)\r\r\nWriting at 0x000665cf... (39 %)\r\r\nWriting at 0x0006c355... (42 %)\r\r\nWriting at 0x00071365... (45 %)\r\r\nWriting at 0x000762eb... (48 %)\r\r\nWriting at 0x0007b439... (51 %)\r\r\nWriting at 0x000805c4... (54 %)\r\r\nWriting at 0x00085986... (57 %)\r\r\nWriting at 0x0008add4... (60 %)\r\r\nWriting at 0x00090b9c... (63 %)\r\r\nWriting at 0x00096001... (66 %)\r\r\nWriting at 0x0009b6a6... (69 %)\r\r\nWriting at 0x000a1055... (72 %)\r\r\nWriting at 0x000a678f... (75 %)\r\r\nWriting at 0x000ac30e... (78 %)\r\r\nWriting at 0x000b2551... (81 %)\r\r\nWriting at 0x000b7d8d... (84 %)\r\r\nWriting at 0x000bd47a... (87 %)\r\r\nWriting at 0x000c6154... (90 %)\r\r\nWriting at 0x000ce1a8... (93 %)\r\r\nWriting at 0x000d407a... (96 %)\r\r\nWriting at 0x000da0f5... (100 %)\r\r\nWrote 849760 bytes (540312 compressed) at 0x00010000 in 5.7 seconds (effective 1201.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1656.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36252",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf620 bytes. Smallest app partition is 0x100000 bytes. 0x309e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849440 bytes to 540082...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa4... (6 %)\r\r\nWriting at 0x00027565... (9 %)\r\r\nWriting at 0x0002c0c4... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8ea... (18 %)\r\r\nWriting at 0x0004283d... (21 %)\r\r\nWriting at 0x00048b50... (24 %)\r\r\nWriting at 0x0004ea94... (27 %)\r\r\nWriting at 0x0005484a... (30 %)\r\r\nWriting at 0x0005aaf1... (33 %)\r\r\nWriting at 0x00060b04... (36 %)\r\r\nWriting at 0x000665a6... (39 %)\r\r\nWriting at 0x0006c31a... (42 %)\r\r\nWriting at 0x0007132d... (45 %)\r\r\nWriting at 0x000762c8... (48 %)\r\r\nWriting at 0x0007b415... (51 %)\r\r\nWriting at 0x000805c5... (54 %)\r\r\nWriting at 0x0008594e... (57 %)\r\r\nWriting at 0x0008ad98... (60 %)\r\r\nWriting at 0x00090b60... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b67a... (69 %)\r\r\nWriting at 0x000a1029... (72 %)\r\r\nWriting at 0x000a6780... (75 %)\r\r\nWriting at 0x000ac2ed... (78 %)\r\r\nWriting at 0x000b2541... (81 %)\r\r\nWriting at 0x000b7d81... (84 %)\r\r\nWriting at 0x000bd430... (87 %)\r\r\nWriting at 0x000c6124... (90 %)\r\r\nWriting at 0x000ce18c... (93 %)\r\r\nWriting at 0x000d4089... (96 %)\r\r\nWriting at 0x000da0c0... (100 %)\r\r\nWrote 849440 bytes (540082 compressed) at 0x00010000 in 5.6 seconds (effective 1210.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 509.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1683.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36256",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540103...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c04e... (12 %)\r\r\nWriting at 0x000347a2... (15 %)\r\r\nWriting at 0x0003c88d... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab7... (24 %)\r\r\nWriting at 0x0004e9ba... (27 %)\r\r\nWriting at 0x0005475c... (30 %)\r\r\nWriting at 0x0005aa30... (33 %)\r\r\nWriting at 0x00060977... (36 %)\r\r\nWriting at 0x000664da... (39 %)\r\r\nWriting at 0x0006c262... (42 %)\r\r\nWriting at 0x0007126f... (45 %)\r\r\nWriting at 0x000761ff... (48 %)\r\r\nWriting at 0x0007b33c... (51 %)\r\r\nWriting at 0x000804c8... (54 %)\r\r\nWriting at 0x00085889... (57 %)\r\r\nWriting at 0x0008ac81... (60 %)\r\r\nWriting at 0x00090a98... (63 %)\r\r\nWriting at 0x00095eeb... (66 %)\r\r\nWriting at 0x0009b5b3... (69 %)\r\r\nWriting at 0x000a0f67... (72 %)\r\r\nWriting at 0x000a6686... (75 %)\r\r\nWriting at 0x000ac21f... (78 %)\r\r\nWriting at 0x000b2458... (81 %)\r\r\nWriting at 0x000b7c95... (84 %)\r\r\nWriting at 0x000bd38a... (87 %)\r\r\nWriting at 0x000c605a... (90 %)\r\r\nWriting at 0x000ce0b3... (93 %)\r\r\nWriting at 0x000d3fc3... (96 %)\r\r\nWriting at 0x000da00e... (100 %)\r\r\nWrote 849264 bytes (540103 compressed) at 0x00010000 in 6.0 seconds (effective 1141.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1575.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36332",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5c0 bytes. Smallest app partition is 0x100000 bytes. 0x30a40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849344 bytes to 540009...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027541... (9 %)\r\r\nWriting at 0x0002c094... (12 %)\r\r\nWriting at 0x000347f3... (15 %)\r\r\nWriting at 0x0003c8de... (18 %)\r\r\nWriting at 0x00042809... (21 %)\r\r\nWriting at 0x00048b2d... (24 %)\r\r\nWriting at 0x0004ea5f... (27 %)\r\r\nWriting at 0x0005481d... (30 %)\r\r\nWriting at 0x0005aadb... (33 %)\r\r\nWriting at 0x00060af4... (36 %)\r\r\nWriting at 0x0006658b... (39 %)\r\r\nWriting at 0x0006c300... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a4... (48 %)\r\r\nWriting at 0x0007b3f6... (51 %)\r\r\nWriting at 0x000805b1... (54 %)\r\r\nWriting at 0x00085939... (57 %)\r\r\nWriting at 0x0008ad93... (60 %)\r\r\nWriting at 0x00090b5e... (63 %)\r\r\nWriting at 0x00095fc6... (66 %)\r\r\nWriting at 0x0009b66e... (69 %)\r\r\nWriting at 0x000a101d... (72 %)\r\r\nWriting at 0x000a6779... (75 %)\r\r\nWriting at 0x000ac2e8... (78 %)\r\r\nWriting at 0x000b2548... (81 %)\r\r\nWriting at 0x000b7d79... (84 %)\r\r\nWriting at 0x000bd422... (87 %)\r\r\nWriting at 0x000c6115... (90 %)\r\r\nWriting at 0x000ce18b... (93 %)\r\r\nWriting at 0x000d4091... (96 %)\r\r\nWriting at 0x000da0b7... (100 %)\r\r\nWrote 849344 bytes (540009 compressed) at 0x00010000 in 5.6 seconds (effective 1210.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 474.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1688.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36348",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 513.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eace... (27 %)\r\r\nWriting at 0x000548aa... (30 %)\r\r\nWriting at 0x0005ab58... (33 %)\r\r\nWriting at 0x00060a96... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c36f... (42 %)\r\r\nWriting at 0x00071388... (45 %)\r\r\nWriting at 0x0007630e... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008adf8... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6c0... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a67c0... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7dac... (84 %)\r\r\nWriting at 0x000bd499... (87 %)\r\r\nWriting at 0x000c6177... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da10d... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.6 seconds (effective 1206.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 578.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1633.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36672",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540199...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x0002758e... (9 %)\r\r\nWriting at 0x0002c0e2... (12 %)\r\r\nWriting at 0x00034838... (15 %)\r\r\nWriting at 0x0003c930... (18 %)\r\r\nWriting at 0x000428cf... (21 %)\r\r\nWriting at 0x00048bc0... (24 %)\r\r\nWriting at 0x0004ead8... (27 %)\r\r\nWriting at 0x000548b2... (30 %)\r\r\nWriting at 0x0005ab5e... (33 %)\r\r\nWriting at 0x00060aed... (36 %)\r\r\nWriting at 0x000665ff... (39 %)\r\r\nWriting at 0x0006c37b... (42 %)\r\r\nWriting at 0x00071387... (45 %)\r\r\nWriting at 0x00076315... (48 %)\r\r\nWriting at 0x0007b46f... (51 %)\r\r\nWriting at 0x000805f7... (54 %)\r\r\nWriting at 0x000859b7... (57 %)\r\r\nWriting at 0x0008ae0e... (60 %)\r\r\nWriting at 0x00090be5... (63 %)\r\r\nWriting at 0x0009604b... (66 %)\r\r\nWriting at 0x0009b6f3... (69 %)\r\r\nWriting at 0x000a10a9... (72 %)\r\r\nWriting at 0x000a67f2... (75 %)\r\r\nWriting at 0x000ac370... (78 %)\r\r\nWriting at 0x000b25b3... (81 %)\r\r\nWriting at 0x000b7dda... (84 %)\r\r\nWriting at 0x000bd4af... (87 %)\r\r\nWriting at 0x000c6199... (90 %)\r\r\nWriting at 0x000ce1fd... (93 %)\r\r\nWriting at 0x000d40da... (96 %)\r\r\nWriting at 0x000da12f... (100 %)\r\r\nWrote 849696 bytes (540199 compressed) at 0x00010000 in 5.7 seconds (effective 1202.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1649.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_36728",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 480.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540095...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x00027556... (9 %)\r\r\nWriting at 0x0002c0a7... (12 %)\r\r\nWriting at 0x000347e0... (15 %)\r\r\nWriting at 0x0003c8dc... (18 %)\r\r\nWriting at 0x00042818... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aaeb... (33 %)\r\r\nWriting at 0x00060aff... (36 %)\r\r\nWriting at 0x0006658c... (39 %)\r\r\nWriting at 0x0006c302... (42 %)\r\r\nWriting at 0x0007130e... (45 %)\r\r\nWriting at 0x000762a9... (48 %)\r\r\nWriting at 0x0007b3f9... (51 %)\r\r\nWriting at 0x0008059a... (54 %)\r\r\nWriting at 0x00085930... (57 %)\r\r\nWriting at 0x0008ad84... (60 %)\r\r\nWriting at 0x00090b51... (63 %)\r\r\nWriting at 0x00095fb5... (66 %)\r\r\nWriting at 0x0009b665... (69 %)\r\r\nWriting at 0x000a1016... (72 %)\r\r\nWriting at 0x000a6764... (75 %)\r\r\nWriting at 0x000ac2d8... (78 %)\r\r\nWriting at 0x000b2526... (81 %)\r\r\nWriting at 0x000b7d61... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c610e... (90 %)\r\r\nWriting at 0x000ce170... (93 %)\r\r\nWriting at 0x000d4067... (96 %)\r\r\nWriting at 0x000da0a1... (100 %)\r\r\nWrote 849424 bytes (540095 compressed) at 0x00010000 in 5.6 seconds (effective 1209.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 528.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1674.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_37116",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5f0 bytes. Smallest app partition is 0x100000 bytes. 0x30a10 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849392 bytes to 540120...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x00027539... (9 %)\r\r\nWriting at 0x0002c098... (12 %)\r\r\nWriting at 0x000347d0... (15 %)\r\r\nWriting at 0x0003c8be... (18 %)\r\r\nWriting at 0x000427dd... (21 %)\r\r\nWriting at 0x00048b1d... (24 %)\r\r\nWriting at 0x0004ea16... (27 %)\r\r\nWriting at 0x000547cc... (30 %)\r\r\nWriting at 0x0005aa92... (33 %)\r\r\nWriting at 0x000609f4... (36 %)\r\r\nWriting at 0x0006652f... (39 %)\r\r\nWriting at 0x0006c2bb... (42 %)\r\r\nWriting at 0x000712c2... (45 %)\r\r\nWriting at 0x00076258... (48 %)\r\r\nWriting at 0x0007b3ac... (51 %)\r\r\nWriting at 0x00080532... (54 %)\r\r\nWriting at 0x000858ee... (57 %)\r\r\nWriting at 0x0008ad44... (60 %)\r\r\nWriting at 0x00090b0a... (63 %)\r\r\nWriting at 0x00095f69... (66 %)\r\r\nWriting at 0x0009b60e... (69 %)\r\r\nWriting at 0x000a0fc1... (72 %)\r\r\nWriting at 0x000a671c... (75 %)\r\r\nWriting at 0x000ac29c... (78 %)\r\r\nWriting at 0x000b24d3... (81 %)\r\r\nWriting at 0x000b7d00... (84 %)\r\r\nWriting at 0x000bd3e4... (87 %)\r\r\nWriting at 0x000c60c3... (90 %)\r\r\nWriting at 0x000ce11b... (93 %)\r\r\nWriting at 0x000d4022... (96 %)\r\r\nWriting at 0x000da06e... (100 %)\r\r\nWrote 849392 bytes (540120 compressed) at 0x00010000 in 5.6 seconds (effective 1217.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1705.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_37528",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'getICM42670':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:702:21: error: implicit declaration of function 'convertToDegrees'; did you mean 'convert_to_degrees'? [-Werror=implicit-function-declaration]\r\n  702 |                 if (convertToDegrees(accel_y) > -35)\r\n      |                     ^~~~~~~~~~~~~~~~\r\n      |                     convert_to_degrees\r\ncc1.exe: some warnings being treated as errors\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38004",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 504.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540407...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x000275b9... (9 %)\r\r\nWriting at 0x0002c05d... (12 %)\r\r\nWriting at 0x0003483b... (15 %)\r\r\nWriting at 0x0003c920... (18 %)\r\r\nWriting at 0x000428c0... (21 %)\r\r\nWriting at 0x00048ba9... (24 %)\r\r\nWriting at 0x0004ea92... (27 %)\r\r\nWriting at 0x00054860... (30 %)\r\r\nWriting at 0x0005ab25... (33 %)\r\r\nWriting at 0x00060a65... (36 %)\r\r\nWriting at 0x000665bd... (39 %)\r\r\nWriting at 0x0006c33d... (42 %)\r\r\nWriting at 0x00071355... (45 %)\r\r\nWriting at 0x000762d0... (48 %)\r\r\nWriting at 0x0007b416... (51 %)\r\r\nWriting at 0x00080593... (54 %)\r\r\nWriting at 0x0008595f... (57 %)\r\r\nWriting at 0x0008ad58... (60 %)\r\r\nWriting at 0x00090b61... (63 %)\r\r\nWriting at 0x00095f83... (66 %)\r\r\nWriting at 0x0009b67b... (69 %)\r\r\nWriting at 0x000a102a... (72 %)\r\r\nWriting at 0x000a6753... (75 %)\r\r\nWriting at 0x000ac2e6... (78 %)\r\r\nWriting at 0x000b2518... (81 %)\r\r\nWriting at 0x000b7d6c... (84 %)\r\r\nWriting at 0x000bd45f... (87 %)\r\r\nWriting at 0x000c6131... (90 %)\r\r\nWriting at 0x000ce188... (93 %)\r\r\nWriting at 0x000d4034... (96 %)\r\r\nWriting at 0x000da0c1... (100 %)\r\r\nWrote 849824 bytes (540407 compressed) at 0x00010000 in 5.8 seconds (effective 1179.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 544.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1602.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38172",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540380...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x0002757e... (9 %)\r\r\nWriting at 0x0002c0cc... (12 %)\r\r\nWriting at 0x00034805... (15 %)\r\r\nWriting at 0x0003c8f6... (18 %)\r\r\nWriting at 0x0004285f... (21 %)\r\r\nWriting at 0x00048b68... (24 %)\r\r\nWriting at 0x0004ea39... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aa7f... (33 %)\r\r\nWriting at 0x000609f0... (36 %)\r\r\nWriting at 0x00066542... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712f7... (45 %)\r\r\nWriting at 0x0007624a... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x0008051a... (54 %)\r\r\nWriting at 0x00085901... (57 %)\r\r\nWriting at 0x0008ace2... (60 %)\r\r\nWriting at 0x00090b05... (63 %)\r\r\nWriting at 0x00095f30... (66 %)\r\r\nWriting at 0x0009b62d... (69 %)\r\r\nWriting at 0x000a0fd2... (72 %)\r\r\nWriting at 0x000a66e5... (75 %)\r\r\nWriting at 0x000ac270... (78 %)\r\r\nWriting at 0x000b24cb... (81 %)\r\r\nWriting at 0x000b7d1e... (84 %)\r\r\nWriting at 0x000bd41e... (87 %)\r\r\nWriting at 0x000c60e0... (90 %)\r\r\nWriting at 0x000ce143... (93 %)\r\r\nWriting at 0x000d4003... (96 %)\r\r\nWriting at 0x000da08d... (100 %)\r\r\nWrote 849728 bytes (540380 compressed) at 0x00010000 in 5.8 seconds (effective 1174.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1597.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38204",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6b0 bytes. Smallest app partition is 0x100000 bytes. 0x30950 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849584 bytes to 540128...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x00027594... (9 %)\r\r\nWriting at 0x0002c0f0... (12 %)\r\r\nWriting at 0x00034825... (15 %)\r\r\nWriting at 0x0003c926... (18 %)\r\r\nWriting at 0x000428a9... (21 %)\r\r\nWriting at 0x00048ba3... (24 %)\r\r\nWriting at 0x0004eacf... (27 %)\r\r\nWriting at 0x0005488a... (30 %)\r\r\nWriting at 0x0005ab2d... (33 %)\r\r\nWriting at 0x00060b02... (36 %)\r\r\nWriting at 0x000665c7... (39 %)\r\r\nWriting at 0x0006c346... (42 %)\r\r\nWriting at 0x0007135f... (45 %)\r\r\nWriting at 0x000762fc... (48 %)\r\r\nWriting at 0x0007b44b... (51 %)\r\r\nWriting at 0x000805f8... (54 %)\r\r\nWriting at 0x00085994... (57 %)\r\r\nWriting at 0x0008adf2... (60 %)\r\r\nWriting at 0x00090bbd... (63 %)\r\r\nWriting at 0x00096025... (66 %)\r\r\nWriting at 0x0009b6cc... (69 %)\r\r\nWriting at 0x000a107c... (72 %)\r\r\nWriting at 0x000a67da... (75 %)\r\r\nWriting at 0x000ac34a... (78 %)\r\r\nWriting at 0x000b25aa... (81 %)\r\r\nWriting at 0x000b7ddd... (84 %)\r\r\nWriting at 0x000bd485... (87 %)\r\r\nWriting at 0x000c617a... (90 %)\r\r\nWriting at 0x000ce1f3... (93 %)\r\r\nWriting at 0x000d40c9... (96 %)\r\r\nWriting at 0x000da118... (100 %)\r\r\nWrote 849584 bytes (540128 compressed) at 0x00010000 in 5.6 seconds (effective 1206.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1690.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38216",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf520 bytes. Smallest app partition is 0x100000 bytes. 0x30ae0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849184 bytes to 540122...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274ee... (9 %)\r\r\nWriting at 0x0002c03c... (12 %)\r\r\nWriting at 0x000347a3... (15 %)\r\r\nWriting at 0x0003c883... (18 %)\r\r\nWriting at 0x00042743... (21 %)\r\r\nWriting at 0x00048a7c... (24 %)\r\r\nWriting at 0x0004e93d... (27 %)\r\r\nWriting at 0x000546eb... (30 %)\r\r\nWriting at 0x0005a982... (33 %)\r\r\nWriting at 0x000608f1... (36 %)\r\r\nWriting at 0x0006644c... (39 %)\r\r\nWriting at 0x0006c1e6... (42 %)\r\r\nWriting at 0x000711fb... (45 %)\r\r\nWriting at 0x0007616b... (48 %)\r\r\nWriting at 0x0007b2c2... (51 %)\r\r\nWriting at 0x00080435... (54 %)\r\r\nWriting at 0x0008581b... (57 %)\r\r\nWriting at 0x0008abf9... (60 %)\r\r\nWriting at 0x00090a21... (63 %)\r\r\nWriting at 0x00095e3f... (66 %)\r\r\nWriting at 0x0009b542... (69 %)\r\r\nWriting at 0x000a0eee... (72 %)\r\r\nWriting at 0x000a660d... (75 %)\r\r\nWriting at 0x000ac1a3... (78 %)\r\r\nWriting at 0x000b23d7... (81 %)\r\r\nWriting at 0x000b7c27... (84 %)\r\r\nWriting at 0x000bd31b... (87 %)\r\r\nWriting at 0x000c5feb... (90 %)\r\r\nWriting at 0x000ce043... (93 %)\r\r\nWriting at 0x000d3f54... (96 %)\r\r\nWriting at 0x000d9fa5... (100 %)\r\r\nWrote 849184 bytes (540122 compressed) at 0x00010000 in 5.8 seconds (effective 1163.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 559.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1604.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38248",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4f0 bytes. Smallest app partition is 0x100000 bytes. 0x30b10 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849136 bytes to 539958...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab0... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x00034804... (15 %)\r\r\nWriting at 0x0003c8ee... (18 %)\r\r\nWriting at 0x0004283c... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547cb... (30 %)\r\r\nWriting at 0x0005aaa8... (33 %)\r\r\nWriting at 0x00060ad2... (36 %)\r\r\nWriting at 0x00066527... (39 %)\r\r\nWriting at 0x0006c29c... (42 %)\r\r\nWriting at 0x000712b0... (45 %)\r\r\nWriting at 0x0007624c... (48 %)\r\r\nWriting at 0x0007b383... (51 %)\r\r\nWriting at 0x000805bb... (54 %)\r\r\nWriting at 0x000858c2... (57 %)\r\r\nWriting at 0x0008ad29... (60 %)\r\r\nWriting at 0x00090ad2... (63 %)\r\r\nWriting at 0x00095f56... (66 %)\r\r\nWriting at 0x0009b5f5... (69 %)\r\r\nWriting at 0x000a0f96... (72 %)\r\r\nWriting at 0x000a6718... (75 %)\r\r\nWriting at 0x000ac266... (78 %)\r\r\nWriting at 0x000b24d8... (81 %)\r\r\nWriting at 0x000b7d1b... (84 %)\r\r\nWriting at 0x000bd44c... (87 %)\r\r\nWriting at 0x000c60a4... (90 %)\r\r\nWriting at 0x000ce111... (93 %)\r\r\nWriting at 0x000d4008... (96 %)\r\r\nWriting at 0x000da037... (100 %)\r\r\nWrote 849136 bytes (539958 compressed) at 0x00010000 in 5.8 seconds (effective 1165.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 505.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.8 seconds (effective 1631.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_3852",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 476.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540129...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c899... (18 %)\r\r\nWriting at 0x0004278d... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x00054809... (30 %)\r\r\nWriting at 0x0005aad0... (33 %)\r\r\nWriting at 0x00060a16... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2f9... (42 %)\r\r\nWriting at 0x0007130d... (45 %)\r\r\nWriting at 0x00076284... (48 %)\r\r\nWriting at 0x0007b3ca... (51 %)\r\r\nWriting at 0x0008053f... (54 %)\r\r\nWriting at 0x0008591d... (57 %)\r\r\nWriting at 0x0008ad11... (60 %)\r\r\nWriting at 0x00090b27... (63 %)\r\r\nWriting at 0x00095f4a... (66 %)\r\r\nWriting at 0x0009b64a... (69 %)\r\r\nWriting at 0x000a0ff7... (72 %)\r\r\nWriting at 0x000a6719... (75 %)\r\r\nWriting at 0x000ac2b3... (78 %)\r\r\nWriting at 0x000b24e9... (81 %)\r\r\nWriting at 0x000b7d2d... (84 %)\r\r\nWriting at 0x000bd422... (87 %)\r\r\nWriting at 0x000c60f0... (90 %)\r\r\nWriting at 0x000ce149... (93 %)\r\r\nWriting at 0x000d4053... (96 %)\r\r\nWriting at 0x000da0a4... (100 %)\r\r\nWrote 849456 bytes (540129 compressed) at 0x00010000 in 5.7 seconds (effective 1198.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 512.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1637.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38536",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf480 bytes. Smallest app partition is 0x100000 bytes. 0x30b80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 501.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849024 bytes to 540016...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca40... (6 %)\r\r\nWriting at 0x000274fb... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x000347a9... (15 %)\r\r\nWriting at 0x0003c883... (18 %)\r\r\nWriting at 0x00042754... (21 %)\r\r\nWriting at 0x00048a96... (24 %)\r\r\nWriting at 0x0004e91a... (27 %)\r\r\nWriting at 0x000546cf... (30 %)\r\r\nWriting at 0x0005a98a... (33 %)\r\r\nWriting at 0x000608c9... (36 %)\r\r\nWriting at 0x0006642c... (39 %)\r\r\nWriting at 0x0006c1ba... (42 %)\r\r\nWriting at 0x000711cc... (45 %)\r\r\nWriting at 0x0007615f... (48 %)\r\r\nWriting at 0x0007b2b7... (51 %)\r\r\nWriting at 0x00080436... (54 %)\r\r\nWriting at 0x00085801... (57 %)\r\r\nWriting at 0x0008ac48... (60 %)\r\r\nWriting at 0x00090a11... (63 %)\r\r\nWriting at 0x00095e6e... (66 %)\r\r\nWriting at 0x0009b512... (69 %)\r\r\nWriting at 0x000a0ec3... (72 %)\r\r\nWriting at 0x000a660c... (75 %)\r\r\nWriting at 0x000ac188... (78 %)\r\r\nWriting at 0x000b23c5... (81 %)\r\r\nWriting at 0x000b7bfe... (84 %)\r\r\nWriting at 0x000bd2ef... (87 %)\r\r\nWriting at 0x000c5fc5... (90 %)\r\r\nWriting at 0x000ce021... (93 %)\r\r\nWriting at 0x000d3f4c... (96 %)\r\r\nWriting at 0x000d9f7b... (100 %)\r\r\nWrote 849024 bytes (540016 compressed) at 0x00010000 in 5.8 seconds (effective 1171.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 549.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1601.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38616",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540179...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x0002758d... (9 %)\r\r\nWriting at 0x0002c0de... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c92f... (18 %)\r\r\nWriting at 0x000428b8... (21 %)\r\r\nWriting at 0x00048b95... (24 %)\r\r\nWriting at 0x0004eae3... (27 %)\r\r\nWriting at 0x000548ae... (30 %)\r\r\nWriting at 0x0005ab62... (33 %)\r\r\nWriting at 0x00060b2d... (36 %)\r\r\nWriting at 0x00066602... (39 %)\r\r\nWriting at 0x0006c379... (42 %)\r\r\nWriting at 0x00071385... (45 %)\r\r\nWriting at 0x00076313... (48 %)\r\r\nWriting at 0x0007b46b... (51 %)\r\r\nWriting at 0x000805f1... (54 %)\r\r\nWriting at 0x000859ae... (57 %)\r\r\nWriting at 0x0008adfd... (60 %)\r\r\nWriting at 0x00090bd2... (63 %)\r\r\nWriting at 0x00096037... (66 %)\r\r\nWriting at 0x0009b6ea... (69 %)\r\r\nWriting at 0x000a109b... (72 %)\r\r\nWriting at 0x000a67e7... (75 %)\r\r\nWriting at 0x000ac35a... (78 %)\r\r\nWriting at 0x000b25a5... (81 %)\r\r\nWriting at 0x000b7dcf... (84 %)\r\r\nWriting at 0x000bd49c... (87 %)\r\r\nWriting at 0x000c618b... (90 %)\r\r\nWriting at 0x000ce1f0... (93 %)\r\r\nWriting at 0x000d40cd... (96 %)\r\r\nWriting at 0x000da122... (100 %)\r\r\nWrote 849648 bytes (540179 compressed) at 0x00010000 in 5.6 seconds (effective 1216.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38648",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 487.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.6 seconds (effective 1212.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1708.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_38960",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6b0 bytes. Smallest app partition is 0x100000 bytes. 0x30950 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849584 bytes to 540164...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca5d... (6 %)\r\r\nWriting at 0x00027592... (9 %)\r\r\nWriting at 0x0002c0e9... (12 %)\r\r\nWriting at 0x00034826... (15 %)\r\r\nWriting at 0x0003c91e... (18 %)\r\r\nWriting at 0x000428aa... (21 %)\r\r\nWriting at 0x00048ba2... (24 %)\r\r\nWriting at 0x0004eac1... (27 %)\r\r\nWriting at 0x0005488a... (30 %)\r\r\nWriting at 0x0005ab29... (33 %)\r\r\nWriting at 0x00060af5... (36 %)\r\r\nWriting at 0x000665c8... (39 %)\r\r\nWriting at 0x0006c341... (42 %)\r\r\nWriting at 0x00071361... (45 %)\r\r\nWriting at 0x000762f0... (48 %)\r\r\nWriting at 0x0007b43e... (51 %)\r\r\nWriting at 0x000805d9... (54 %)\r\r\nWriting at 0x00085989... (57 %)\r\r\nWriting at 0x0008add5... (60 %)\r\r\nWriting at 0x00090b99... (63 %)\r\r\nWriting at 0x00096000... (66 %)\r\r\nWriting at 0x0009b6b4... (69 %)\r\r\nWriting at 0x000a1065... (72 %)\r\r\nWriting at 0x000a67b2... (75 %)\r\r\nWriting at 0x000ac324... (78 %)\r\r\nWriting at 0x000b2572... (81 %)\r\r\nWriting at 0x000b7d9a... (84 %)\r\r\nWriting at 0x000bd468... (87 %)\r\r\nWriting at 0x000c6156... (90 %)\r\r\nWriting at 0x000ce1bc... (93 %)\r\r\nWriting at 0x000d409b... (96 %)\r\r\nWriting at 0x000da0ec... (100 %)\r\r\nWrote 849584 bytes (540164 compressed) at 0x00010000 in 5.6 seconds (effective 1211.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 507.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1692.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39020",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf660 bytes. Smallest app partition is 0x100000 bytes. 0x309a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849504 bytes to 540149...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ea... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x00042849... (21 %)\r\r\nWriting at 0x00048b61... (24 %)\r\r\nWriting at 0x0004ea82... (27 %)\r\r\nWriting at 0x00054851... (30 %)\r\r\nWriting at 0x0005aaf1... (33 %)\r\r\nWriting at 0x00060a7a... (36 %)\r\r\nWriting at 0x00066595... (39 %)\r\r\nWriting at 0x0006c303... (42 %)\r\r\nWriting at 0x0007131c... (45 %)\r\r\nWriting at 0x000762b0... (48 %)\r\r\nWriting at 0x0007b40a... (51 %)\r\r\nWriting at 0x00080595... (54 %)\r\r\nWriting at 0x00085943... (57 %)\r\r\nWriting at 0x0008ad9d... (60 %)\r\r\nWriting at 0x00090b60... (63 %)\r\r\nWriting at 0x00095fc0... (66 %)\r\r\nWriting at 0x0009b66a... (69 %)\r\r\nWriting at 0x000a1029... (72 %)\r\r\nWriting at 0x000a676a... (75 %)\r\r\nWriting at 0x000ac2ef... (78 %)\r\r\nWriting at 0x000b252d... (81 %)\r\r\nWriting at 0x000b7d5c... (84 %)\r\r\nWriting at 0x000bd430... (87 %)\r\r\nWriting at 0x000c6115... (90 %)\r\r\nWriting at 0x000ce177... (93 %)\r\r\nWriting at 0x000d4069... (96 %)\r\r\nWriting at 0x000da0b8... (100 %)\r\r\nWrote 849504 bytes (540149 compressed) at 0x00010000 in 5.6 seconds (effective 1214.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1702.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39456",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540408...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca97... (6 %)\r\r\nWriting at 0x0002757e... (9 %)\r\r\nWriting at 0x0002c0d0... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8f4... (18 %)\r\r\nWriting at 0x0004285b... (21 %)\r\r\nWriting at 0x00048b65... (24 %)\r\r\nWriting at 0x0004ea38... (27 %)\r\r\nWriting at 0x0005480a... (30 %)\r\r\nWriting at 0x0005aa77... (33 %)\r\r\nWriting at 0x000609f0... (36 %)\r\r\nWriting at 0x00066541... (39 %)\r\r\nWriting at 0x0006c2d5... (42 %)\r\r\nWriting at 0x000712eb... (45 %)\r\r\nWriting at 0x00076248... (48 %)\r\r\nWriting at 0x0007b3a9... (51 %)\r\r\nWriting at 0x0008051b... (54 %)\r\r\nWriting at 0x000858fc... (57 %)\r\r\nWriting at 0x0008accf... (60 %)\r\r\nWriting at 0x00090aef... (63 %)\r\r\nWriting at 0x00095f12... (66 %)\r\r\nWriting at 0x0009b620... (69 %)\r\r\nWriting at 0x000a0fc6... (72 %)\r\r\nWriting at 0x000a66d7... (75 %)\r\r\nWriting at 0x000ac258... (78 %)\r\r\nWriting at 0x000b24ae... (81 %)\r\r\nWriting at 0x000b7cfb... (84 %)\r\r\nWriting at 0x000bd3ff... (87 %)\r\r\nWriting at 0x000c60bf... (90 %)\r\r\nWriting at 0x000ce127... (93 %)\r\r\nWriting at 0x000d3fd5... (96 %)\r\r\nWriting at 0x000da062... (100 %)\r\r\nWrote 849728 bytes (540408 compressed) at 0x00010000 in 5.8 seconds (effective 1180.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 565.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1599.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39468",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6c0 bytes. Smallest app partition is 0x100000 bytes. 0x30940 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849600 bytes to 540200...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca85... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e7... (12 %)\r\r\nWriting at 0x0003482b... (15 %)\r\r\nWriting at 0x0003c928... (18 %)\r\r\nWriting at 0x00042892... (21 %)\r\r\nWriting at 0x00048b8b... (24 %)\r\r\nWriting at 0x0004eab7... (27 %)\r\r\nWriting at 0x0005487d... (30 %)\r\r\nWriting at 0x0005ab26... (33 %)\r\r\nWriting at 0x00060ad5... (36 %)\r\r\nWriting at 0x000665c4... (39 %)\r\r\nWriting at 0x0006c33d... (42 %)\r\r\nWriting at 0x00071347... (45 %)\r\r\nWriting at 0x000762d7... (48 %)\r\r\nWriting at 0x0007b42f... (51 %)\r\r\nWriting at 0x000805b5... (54 %)\r\r\nWriting at 0x00085978... (57 %)\r\r\nWriting at 0x0008adc8... (60 %)\r\r\nWriting at 0x00090b91... (63 %)\r\r\nWriting at 0x00095ff4... (66 %)\r\r\nWriting at 0x0009b69d... (69 %)\r\r\nWriting at 0x000a1059... (72 %)\r\r\nWriting at 0x000a679a... (75 %)\r\r\nWriting at 0x000ac31f... (78 %)\r\r\nWriting at 0x000b255c... (81 %)\r\r\nWriting at 0x000b7d90... (84 %)\r\r\nWriting at 0x000bd462... (87 %)\r\r\nWriting at 0x000c6146... (90 %)\r\r\nWriting at 0x000ce1ac... (93 %)\r\r\nWriting at 0x000d408a... (96 %)\r\r\nWriting at 0x000da0dc... (100 %)\r\r\nWrote 849600 bytes (540200 compressed) at 0x00010000 in 5.6 seconds (effective 1218.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 521.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39624",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf730 bytes. Smallest app partition is 0x100000 bytes. 0x308d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849712 bytes to 540389...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca97... (6 %)\r\r\nWriting at 0x00027574... (9 %)\r\r\nWriting at 0x0002c080... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8f7... (18 %)\r\r\nWriting at 0x00042874... (21 %)\r\r\nWriting at 0x00048b71... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x00054813... (30 %)\r\r\nWriting at 0x0005aabc... (33 %)\r\r\nWriting at 0x00060a13... (36 %)\r\r\nWriting at 0x0006655e... (39 %)\r\r\nWriting at 0x0006c2ed... (42 %)\r\r\nWriting at 0x00071304... (45 %)\r\r\nWriting at 0x00076264... (48 %)\r\r\nWriting at 0x0007b3ce... (51 %)\r\r\nWriting at 0x00080539... (54 %)\r\r\nWriting at 0x00085915... (57 %)\r\r\nWriting at 0x0008acf9... (60 %)\r\r\nWriting at 0x00090b0f... (63 %)\r\r\nWriting at 0x00095f33... (66 %)\r\r\nWriting at 0x0009b635... (69 %)\r\r\nWriting at 0x000a0fda... (72 %)\r\r\nWriting at 0x000a66ef... (75 %)\r\r\nWriting at 0x000ac27b... (78 %)\r\r\nWriting at 0x000b24c5... (81 %)\r\r\nWriting at 0x000b7d15... (84 %)\r\r\nWriting at 0x000bd412... (87 %)\r\r\nWriting at 0x000c60d8... (90 %)\r\r\nWriting at 0x000ce13a... (93 %)\r\r\nWriting at 0x000d3ff7... (96 %)\r\r\nWriting at 0x000da078... (100 %)\r\r\nWrote 849712 bytes (540389 compressed) at 0x00010000 in 5.8 seconds (effective 1175.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1612.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39712",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540105...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e2... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b42... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483d... (30 %)\r\r\nWriting at 0x0005aae3... (33 %)\r\r\nWriting at 0x00060adb... (36 %)\r\r\nWriting at 0x00066579... (39 %)\r\r\nWriting at 0x0006c2fa... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007629d... (48 %)\r\r\nWriting at 0x0007b3ee... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085925... (57 %)\r\r\nWriting at 0x0008ad7b... (60 %)\r\r\nWriting at 0x00090b48... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b65c... (69 %)\r\r\nWriting at 0x000a100d... (72 %)\r\r\nWriting at 0x000a6757... (75 %)\r\r\nWriting at 0x000ac2cd... (78 %)\r\r\nWriting at 0x000b251b... (81 %)\r\r\nWriting at 0x000b7d4c... (84 %)\r\r\nWriting at 0x000bd413... (87 %)\r\r\nWriting at 0x000c60ff... (90 %)\r\r\nWriting at 0x000ce163... (93 %)\r\r\nWriting at 0x000d4052... (96 %)\r\r\nWriting at 0x000da09a... (100 %)\r\r\nWrote 849424 bytes (540105 compressed) at 0x00010000 in 5.6 seconds (effective 1207.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 507.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1682.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_39912",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4c0 bytes. Smallest app partition is 0x100000 bytes. 0x30b40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849088 bytes to 539928...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x00027561... (9 %)\r\r\nWriting at 0x0002c0b8... (12 %)\r\r\nWriting at 0x0003480c... (15 %)\r\r\nWriting at 0x0003c904... (18 %)\r\r\nWriting at 0x00042862... (21 %)\r\r\nWriting at 0x00048b5b... (24 %)\r\r\nWriting at 0x0004ea0e... (27 %)\r\r\nWriting at 0x000547d9... (30 %)\r\r\nWriting at 0x0005aa9f... (33 %)\r\r\nWriting at 0x00060ac3... (36 %)\r\r\nWriting at 0x0006650b... (39 %)\r\r\nWriting at 0x0006c27d... (42 %)\r\r\nWriting at 0x0007128e... (45 %)\r\r\nWriting at 0x0007621f... (48 %)\r\r\nWriting at 0x0007b35b... (51 %)\r\r\nWriting at 0x0008059d... (54 %)\r\r\nWriting at 0x0008589e... (57 %)\r\r\nWriting at 0x0008ad0d... (60 %)\r\r\nWriting at 0x00090ab3... (63 %)\r\r\nWriting at 0x00095f34... (66 %)\r\r\nWriting at 0x0009b5d9... (69 %)\r\r\nWriting at 0x000a0f77... (72 %)\r\r\nWriting at 0x000a66fe... (75 %)\r\r\nWriting at 0x000ac248... (78 %)\r\r\nWriting at 0x000b24c3... (81 %)\r\r\nWriting at 0x000b7cff... (84 %)\r\r\nWriting at 0x000bd42f... (87 %)\r\r\nWriting at 0x000c6092... (90 %)\r\r\nWriting at 0x000ce0fb... (93 %)\r\r\nWriting at 0x000d3ffa... (96 %)\r\r\nWriting at 0x000da029... (100 %)\r\r\nWrote 849088 bytes (539928 compressed) at 0x00010000 in 5.6 seconds (effective 1222.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1705.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4092",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540247...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347a5... (15 %)\r\r\nWriting at 0x0003c89c... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaa... (24 %)\r\r\nWriting at 0x0004ea1c... (27 %)\r\r\nWriting at 0x000547f6... (30 %)\r\r\nWriting at 0x0005aa27... (33 %)\r\r\nWriting at 0x000609eb... (36 %)\r\r\nWriting at 0x00066549... (39 %)\r\r\nWriting at 0x0006c2e5... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625b... (48 %)\r\r\nWriting at 0x0007b3af... (51 %)\r\r\nWriting at 0x00080532... (54 %)\r\r\nWriting at 0x00085903... (57 %)\r\r\nWriting at 0x0008acb6... (60 %)\r\r\nWriting at 0x00090b01... (63 %)\r\r\nWriting at 0x00095f14... (66 %)\r\r\nWriting at 0x0009b644... (69 %)\r\r\nWriting at 0x000a0feb... (72 %)\r\r\nWriting at 0x000a66e9... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24c8... (81 %)\r\r\nWriting at 0x000b7d12... (84 %)\r\r\nWriting at 0x000bd419... (87 %)\r\r\nWriting at 0x000c60cf... (90 %)\r\r\nWriting at 0x000ce13d... (93 %)\r\r\nWriting at 0x000d4029... (96 %)\r\r\nWriting at 0x000da084... (100 %)\r\r\nWrote 849568 bytes (540247 compressed) at 0x00010000 in 5.9 seconds (effective 1156.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 572.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1595.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4172",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting..................\r\r\n\r\r\nA serial exception error occurred: ClearCommError failed (PermissionError(13, 'The device does not recognize the command.', None, 22))\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_42000",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4c0 bytes. Smallest app partition is 0x100000 bytes. 0x30b40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849088 bytes to 539929...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x0002755f... (9 %)\r\r\nWriting at 0x0002c0b6... (12 %)\r\r\nWriting at 0x00034808... (15 %)\r\r\nWriting at 0x0003c8ff... (18 %)\r\r\nWriting at 0x00042857... (21 %)\r\r\nWriting at 0x00048b58... (24 %)\r\r\nWriting at 0x0004ea0e... (27 %)\r\r\nWriting at 0x000547d9... (30 %)\r\r\nWriting at 0x0005aa9f... (33 %)\r\r\nWriting at 0x00060ac3... (36 %)\r\r\nWriting at 0x0006650b... (39 %)\r\r\nWriting at 0x0006c27d... (42 %)\r\r\nWriting at 0x0007128e... (45 %)\r\r\nWriting at 0x0007621f... (48 %)\r\r\nWriting at 0x0007b35b... (51 %)\r\r\nWriting at 0x0008059d... (54 %)\r\r\nWriting at 0x0008589e... (57 %)\r\r\nWriting at 0x0008ad0d... (60 %)\r\r\nWriting at 0x00090ab3... (63 %)\r\r\nWriting at 0x00095f33... (66 %)\r\r\nWriting at 0x0009b5d9... (69 %)\r\r\nWriting at 0x000a0f76... (72 %)\r\r\nWriting at 0x000a66fa... (75 %)\r\r\nWriting at 0x000ac243... (78 %)\r\r\nWriting at 0x000b24c2... (81 %)\r\r\nWriting at 0x000b7cfe... (84 %)\r\r\nWriting at 0x000bd42e... (87 %)\r\r\nWriting at 0x000c6092... (90 %)\r\r\nWriting at 0x000ce0fa... (93 %)\r\r\nWriting at 0x000d3ff6... (96 %)\r\r\nWriting at 0x000da028... (100 %)\r\r\nWrote 849088 bytes (539929 compressed) at 0x00010000 in 5.6 seconds (effective 1221.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1709.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_42020",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf550 bytes. Smallest app partition is 0x100000 bytes. 0x30ab0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849232 bytes to 539997...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x00027562... (9 %)\r\r\nWriting at 0x0002c0b0... (12 %)\r\r\nWriting at 0x000347fe... (15 %)\r\r\nWriting at 0x0003c8ee... (18 %)\r\r\nWriting at 0x00042855... (21 %)\r\r\nWriting at 0x00048b60... (24 %)\r\r\nWriting at 0x0004ea3c... (27 %)\r\r\nWriting at 0x000547e9... (30 %)\r\r\nWriting at 0x0005aab6... (33 %)\r\r\nWriting at 0x00060ae3... (36 %)\r\r\nWriting at 0x00066555... (39 %)\r\r\nWriting at 0x0006c2ca... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076278... (48 %)\r\r\nWriting at 0x0007b3ac... (51 %)\r\r\nWriting at 0x000805be... (54 %)\r\r\nWriting at 0x000858e8... (57 %)\r\r\nWriting at 0x0008ad3c... (60 %)\r\r\nWriting at 0x00090afe... (63 %)\r\r\nWriting at 0x00095f67... (66 %)\r\r\nWriting at 0x0009b60e... (69 %)\r\r\nWriting at 0x000a0fbb... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac286... (78 %)\r\r\nWriting at 0x000b24eb... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60b4... (90 %)\r\r\nWriting at 0x000ce130... (93 %)\r\r\nWriting at 0x000d4028... (96 %)\r\r\nWriting at 0x000da053... (100 %)\r\r\nWrote 849232 bytes (539997 compressed) at 0x00010000 in 5.6 seconds (effective 1222.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 536.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1697.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_42092",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4f0 bytes. Smallest app partition is 0x100000 bytes. 0x30b10 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849136 bytes to 539968...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa1... (6 %)\r\r\nWriting at 0x0002755f... (9 %)\r\r\nWriting at 0x0002c0b8... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8fd... (18 %)\r\r\nWriting at 0x00042849... (21 %)\r\r\nWriting at 0x00048b4d... (24 %)\r\r\nWriting at 0x0004ea03... (27 %)\r\r\nWriting at 0x000547ac... (30 %)\r\r\nWriting at 0x0005aa89... (33 %)\r\r\nWriting at 0x00060ac2... (36 %)\r\r\nWriting at 0x0006651b... (39 %)\r\r\nWriting at 0x0006c28d... (42 %)\r\r\nWriting at 0x0007129c... (45 %)\r\r\nWriting at 0x0007622e... (48 %)\r\r\nWriting at 0x0007b363... (51 %)\r\r\nWriting at 0x0008057a... (54 %)\r\r\nWriting at 0x000858a5... (57 %)\r\r\nWriting at 0x0008acfe... (60 %)\r\r\nWriting at 0x00090ac5... (63 %)\r\r\nWriting at 0x00095f42... (66 %)\r\r\nWriting at 0x0009b5e5... (69 %)\r\r\nWriting at 0x000a0f84... (72 %)\r\r\nWriting at 0x000a670d... (75 %)\r\r\nWriting at 0x000ac24f... (78 %)\r\r\nWriting at 0x000b24c5... (81 %)\r\r\nWriting at 0x000b7d01... (84 %)\r\r\nWriting at 0x000bd443... (87 %)\r\r\nWriting at 0x000c609d... (90 %)\r\r\nWriting at 0x000ce10b... (93 %)\r\r\nWriting at 0x000d3ff6... (96 %)\r\r\nWriting at 0x000da039... (100 %)\r\r\nWrote 849136 bytes (539968 compressed) at 0x00010000 in 5.5 seconds (effective 1230.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 571.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1722.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_42200",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540106...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0a8... (12 %)\r\r\nWriting at 0x000347e1... (15 %)\r\r\nWriting at 0x0003c8dc... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b3b... (24 %)\r\r\nWriting at 0x0004ea75... (27 %)\r\r\nWriting at 0x00054839... (30 %)\r\r\nWriting at 0x0005aae1... (33 %)\r\r\nWriting at 0x00060ad6... (36 %)\r\r\nWriting at 0x00066578... (39 %)\r\r\nWriting at 0x0006c2f8... (42 %)\r\r\nWriting at 0x00071303... (45 %)\r\r\nWriting at 0x00076299... (48 %)\r\r\nWriting at 0x0007b3ec... (51 %)\r\r\nWriting at 0x00080583... (54 %)\r\r\nWriting at 0x00085924... (57 %)\r\r\nWriting at 0x0008ad79... (60 %)\r\r\nWriting at 0x00090b46... (63 %)\r\r\nWriting at 0x00095fa7... (66 %)\r\r\nWriting at 0x0009b65b... (69 %)\r\r\nWriting at 0x000a100c... (72 %)\r\r\nWriting at 0x000a6757... (75 %)\r\r\nWriting at 0x000ac2cc... (78 %)\r\r\nWriting at 0x000b251a... (81 %)\r\r\nWriting at 0x000b7d47... (84 %)\r\r\nWriting at 0x000bd412... (87 %)\r\r\nWriting at 0x000c60fe... (90 %)\r\r\nWriting at 0x000ce162... (93 %)\r\r\nWriting at 0x000d4052... (96 %)\r\r\nWriting at 0x000da099... (100 %)\r\r\nWrote 849424 bytes (540106 compressed) at 0x00010000 in 5.6 seconds (effective 1212.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 543.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_42616",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf490 bytes. Smallest app partition is 0x100000 bytes. 0x30b70 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 497.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849040 bytes to 540033...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca47... (6 %)\r\r\nWriting at 0x000274fd... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347ad... (15 %)\r\r\nWriting at 0x0003c88f... (18 %)\r\r\nWriting at 0x00042777... (21 %)\r\r\nWriting at 0x00048a9d... (24 %)\r\r\nWriting at 0x0004e91f... (27 %)\r\r\nWriting at 0x000546d0... (30 %)\r\r\nWriting at 0x0005a98f... (33 %)\r\r\nWriting at 0x000608d1... (36 %)\r\r\nWriting at 0x00066434... (39 %)\r\r\nWriting at 0x0006c1b3... (42 %)\r\r\nWriting at 0x000711c1... (45 %)\r\r\nWriting at 0x0007615b... (48 %)\r\r\nWriting at 0x0007b2ac... (51 %)\r\r\nWriting at 0x0008042c... (54 %)\r\r\nWriting at 0x000857ed... (57 %)\r\r\nWriting at 0x0008ac3b... (60 %)\r\r\nWriting at 0x000909fa... (63 %)\r\r\nWriting at 0x00095e65... (66 %)\r\r\nWriting at 0x0009b50b... (69 %)\r\r\nWriting at 0x000a0eba... (72 %)\r\r\nWriting at 0x000a65ef... (75 %)\r\r\nWriting at 0x000ac178... (78 %)\r\r\nWriting at 0x000b23b6... (81 %)\r\r\nWriting at 0x000b7bf1... (84 %)\r\r\nWriting at 0x000bd2e1... (87 %)\r\r\nWriting at 0x000c5fbb... (90 %)\r\r\nWriting at 0x000ce00f... (93 %)\r\r\nWriting at 0x000d3f42... (96 %)\r\r\nWriting at 0x000d9f73... (100 %)\r\r\nWrote 849040 bytes (540033 compressed) at 0x00010000 in 5.9 seconds (effective 1154.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 561.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1583.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_43172",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540198...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347fd... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x00042852... (21 %)\r\r\nWriting at 0x00048b5e... (24 %)\r\r\nWriting at 0x0004ea6f... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aaf0... (33 %)\r\r\nWriting at 0x00060a59... (36 %)\r\r\nWriting at 0x0006659b... (39 %)\r\r\nWriting at 0x0006c31c... (42 %)\r\r\nWriting at 0x0007132e... (45 %)\r\r\nWriting at 0x000762b3... (48 %)\r\r\nWriting at 0x0007b413... (51 %)\r\r\nWriting at 0x0008058a... (54 %)\r\r\nWriting at 0x00085946... (57 %)\r\r\nWriting at 0x0008ad9c... (60 %)\r\r\nWriting at 0x00090b67... (63 %)\r\r\nWriting at 0x00095fc0... (66 %)\r\r\nWriting at 0x0009b669... (69 %)\r\r\nWriting at 0x000a1018... (72 %)\r\r\nWriting at 0x000a6768... (75 %)\r\r\nWriting at 0x000ac2df... (78 %)\r\r\nWriting at 0x000b2524... (81 %)\r\r\nWriting at 0x000b7d57... (84 %)\r\r\nWriting at 0x000bd43a... (87 %)\r\r\nWriting at 0x000c611c... (90 %)\r\r\nWriting at 0x000ce172... (93 %)\r\r\nWriting at 0x000d405f... (96 %)\r\r\nWriting at 0x000da0b3... (100 %)\r\r\nWrote 849552 bytes (540198 compressed) at 0x00010000 in 5.6 seconds (effective 1211.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 530.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1694.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_43212",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849280 bytes to 540023...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa9... (6 %)\r\r\nWriting at 0x0002755c... (9 %)\r\r\nWriting at 0x0002c0ae... (12 %)\r\r\nWriting at 0x000347f9... (15 %)\r\r\nWriting at 0x0003c8f7... (18 %)\r\r\nWriting at 0x00042853... (21 %)\r\r\nWriting at 0x00048b5c... (24 %)\r\r\nWriting at 0x0004ea47... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aaa3... (33 %)\r\r\nWriting at 0x00060aee... (36 %)\r\r\nWriting at 0x00066568... (39 %)\r\r\nWriting at 0x0006c2d2... (42 %)\r\r\nWriting at 0x000712fa... (45 %)\r\r\nWriting at 0x00076282... (48 %)\r\r\nWriting at 0x0007b3c4... (51 %)\r\r\nWriting at 0x000805a8... (54 %)\r\r\nWriting at 0x000858fa... (57 %)\r\r\nWriting at 0x0008ad51... (60 %)\r\r\nWriting at 0x00090b14... (63 %)\r\r\nWriting at 0x00095f7f... (66 %)\r\r\nWriting at 0x0009b622... (69 %)\r\r\nWriting at 0x000a0fd0... (72 %)\r\r\nWriting at 0x000a6733... (75 %)\r\r\nWriting at 0x000ac2a3... (78 %)\r\r\nWriting at 0x000b2502... (81 %)\r\r\nWriting at 0x000b7d3b... (84 %)\r\r\nWriting at 0x000bd3e1... (87 %)\r\r\nWriting at 0x000c60d0... (90 %)\r\r\nWriting at 0x000ce14f... (93 %)\r\r\nWriting at 0x000d4044... (96 %)\r\r\nWriting at 0x000da06e... (100 %)\r\r\nWrote 849280 bytes (540023 compressed) at 0x00010000 in 5.6 seconds (effective 1214.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 507.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1704.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_43892",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf770 bytes. Smallest app partition is 0x100000 bytes. 0x30890 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849776 bytes to 540314...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002758b... (9 %)\r\r\nWriting at 0x0002c0e3... (12 %)\r\r\nWriting at 0x0003481f... (15 %)\r\r\nWriting at 0x0003c914... (18 %)\r\r\nWriting at 0x000428a5... (21 %)\r\r\nWriting at 0x00048b9e... (24 %)\r\r\nWriting at 0x0004eaca... (27 %)\r\r\nWriting at 0x0005489a... (30 %)\r\r\nWriting at 0x0005ab3c... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x000665c8... (39 %)\r\r\nWriting at 0x0006c353... (42 %)\r\r\nWriting at 0x00071361... (45 %)\r\r\nWriting at 0x000762ea... (48 %)\r\r\nWriting at 0x0007b432... (51 %)\r\r\nWriting at 0x000805c4... (54 %)\r\r\nWriting at 0x00085985... (57 %)\r\r\nWriting at 0x0008adbb... (60 %)\r\r\nWriting at 0x00090b99... (63 %)\r\r\nWriting at 0x00096006... (66 %)\r\r\nWriting at 0x0009b6ab... (69 %)\r\r\nWriting at 0x000a105d... (72 %)\r\r\nWriting at 0x000a6792... (75 %)\r\r\nWriting at 0x000ac314... (78 %)\r\r\nWriting at 0x000b255a... (81 %)\r\r\nWriting at 0x000b7d97... (84 %)\r\r\nWriting at 0x000bd485... (87 %)\r\r\nWriting at 0x000c6160... (90 %)\r\r\nWriting at 0x000ce1b4... (93 %)\r\r\nWriting at 0x000d407f... (96 %)\r\r\nWriting at 0x000da0ff... (100 %)\r\r\nWrote 849776 bytes (540314 compressed) at 0x00010000 in 5.6 seconds (effective 1203.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1640.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_43956",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 504.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540412...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca56... (6 %)\r\r\nWriting at 0x000275b5... (9 %)\r\r\nWriting at 0x0002c058... (12 %)\r\r\nWriting at 0x00034836... (15 %)\r\r\nWriting at 0x0003c918... (18 %)\r\r\nWriting at 0x000428b0... (21 %)\r\r\nWriting at 0x00048ba0... (24 %)\r\r\nWriting at 0x0004ea8a... (27 %)\r\r\nWriting at 0x0005485a... (30 %)\r\r\nWriting at 0x0005ab1d... (33 %)\r\r\nWriting at 0x00060a5e... (36 %)\r\r\nWriting at 0x000665b1... (39 %)\r\r\nWriting at 0x0006c335... (42 %)\r\r\nWriting at 0x0007134e... (45 %)\r\r\nWriting at 0x000762c7... (48 %)\r\r\nWriting at 0x0007b40d... (51 %)\r\r\nWriting at 0x0008058d... (54 %)\r\r\nWriting at 0x00085958... (57 %)\r\r\nWriting at 0x0008ad49... (60 %)\r\r\nWriting at 0x00090b5b... (63 %)\r\r\nWriting at 0x00095f77... (66 %)\r\r\nWriting at 0x0009b674... (69 %)\r\r\nWriting at 0x000a1023... (72 %)\r\r\nWriting at 0x000a674a... (75 %)\r\r\nWriting at 0x000ac2d7... (78 %)\r\r\nWriting at 0x000b2511... (81 %)\r\r\nWriting at 0x000b7d64... (84 %)\r\r\nWriting at 0x000bd459... (87 %)\r\r\nWriting at 0x000c6129... (90 %)\r\r\nWriting at 0x000ce181... (93 %)\r\r\nWriting at 0x000d4028... (96 %)\r\r\nWriting at 0x000da0ba... (100 %)\r\r\nWrote 849824 bytes (540412 compressed) at 0x00010000 in 5.8 seconds (effective 1173.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 5.0 seconds (effective 1588.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_44004",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x0004282a... (21 %)\r\r\nWriting at 0x00048b46... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x0005483e... (30 %)\r\r\nWriting at 0x0005aae4... (33 %)\r\r\nWriting at 0x00060adc... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fe... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x000762a1... (48 %)\r\r\nWriting at 0x0007b3f0... (51 %)\r\r\nWriting at 0x00080589... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad7f... (60 %)\r\r\nWriting at 0x00090b4a... (63 %)\r\r\nWriting at 0x00095fac... (66 %)\r\r\nWriting at 0x0009b660... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a675e... (75 %)\r\r\nWriting at 0x000ac2d0... (78 %)\r\r\nWriting at 0x000b2520... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da09e... (100 %)\r\r\nWrote 849424 bytes (540102 compressed) at 0x00010000 in 5.6 seconds (effective 1208.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1702.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4428",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_44308",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf550 bytes. Smallest app partition is 0x100000 bytes. 0x30ab0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting....\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\n\r\r\nA serial exception error occurred: Cannot configure port, something went wrong. Original message: PermissionError(13, 'The device does not recognize the command.', None, 22)\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_44356",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757e... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034802... (15 %)\r\r\nWriting at 0x0003c8e5... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eacd... (27 %)\r\r\nWriting at 0x0005489f... (30 %)\r\r\nWriting at 0x0005ab57... (33 %)\r\r\nWriting at 0x00060a92... (36 %)\r\r\nWriting at 0x000665e0... (39 %)\r\r\nWriting at 0x0006c36d... (42 %)\r\r\nWriting at 0x00071386... (45 %)\r\r\nWriting at 0x0007630d... (48 %)\r\r\nWriting at 0x0007b469... (51 %)\r\r\nWriting at 0x000805e9... (54 %)\r\r\nWriting at 0x000859af... (57 %)\r\r\nWriting at 0x0008adf4... (60 %)\r\r\nWriting at 0x00090bb5... (63 %)\r\r\nWriting at 0x0009601a... (66 %)\r\r\nWriting at 0x0009b6bf... (69 %)\r\r\nWriting at 0x000a106e... (72 %)\r\r\nWriting at 0x000a67bf... (75 %)\r\r\nWriting at 0x000ac32f... (78 %)\r\r\nWriting at 0x000b2572... (81 %)\r\r\nWriting at 0x000b7dab... (84 %)\r\r\nWriting at 0x000bd498... (87 %)\r\r\nWriting at 0x000c6176... (90 %)\r\r\nWriting at 0x000ce1c9... (93 %)\r\r\nWriting at 0x000d40a1... (96 %)\r\r\nWriting at 0x000da10c... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.6 seconds (effective 1206.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1650.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4448",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 461.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540144...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca31... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347a0... (15 %)\r\r\nWriting at 0x0003c895... (18 %)\r\r\nWriting at 0x00042788... (21 %)\r\r\nWriting at 0x00048aba... (24 %)\r\r\nWriting at 0x0004eaa0... (27 %)\r\r\nWriting at 0x00054862... (30 %)\r\r\nWriting at 0x0005aaf6... (33 %)\r\r\nWriting at 0x00060a6e... (36 %)\r\r\nWriting at 0x000665b7... (39 %)\r\r\nWriting at 0x0006c349... (42 %)\r\r\nWriting at 0x00071368... (45 %)\r\r\nWriting at 0x000762d7... (48 %)\r\r\nWriting at 0x0007b42d... (51 %)\r\r\nWriting at 0x000805aa... (54 %)\r\r\nWriting at 0x00085979... (57 %)\r\r\nWriting at 0x0008ad6c... (60 %)\r\r\nWriting at 0x00090b8b... (63 %)\r\r\nWriting at 0x00095fa8... (66 %)\r\r\nWriting at 0x0009b6a6... (69 %)\r\r\nWriting at 0x000a1052... (72 %)\r\r\nWriting at 0x000a6779... (75 %)\r\r\nWriting at 0x000ac311... (78 %)\r\r\nWriting at 0x000b2542... (81 %)\r\r\nWriting at 0x000b7d8d... (84 %)\r\r\nWriting at 0x000bd481... (87 %)\r\r\nWriting at 0x000c614e... (90 %)\r\r\nWriting at 0x000ce1a3... (93 %)\r\r\nWriting at 0x000d40aa... (96 %)\r\r\nWriting at 0x000da0fb... (100 %)\r\r\nWrote 849568 bytes (540144 compressed) at 0x00010000 in 5.7 seconds (effective 1190.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 492.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1537.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4480",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5b0 bytes. Smallest app partition is 0x100000 bytes. 0x30a50 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 502.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849328 bytes to 540150...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347ba... (15 %)\r\r\nWriting at 0x0003c89b... (18 %)\r\r\nWriting at 0x00042792... (21 %)\r\r\nWriting at 0x00048abd... (24 %)\r\r\nWriting at 0x0004e9b2... (27 %)\r\r\nWriting at 0x0005476b... (30 %)\r\r\nWriting at 0x0005a9eb... (33 %)\r\r\nWriting at 0x0006096a... (36 %)\r\r\nWriting at 0x000664ca... (39 %)\r\r\nWriting at 0x0006c25d... (42 %)\r\r\nWriting at 0x00071277... (45 %)\r\r\nWriting at 0x000761e5... (48 %)\r\r\nWriting at 0x0007b33a... (51 %)\r\r\nWriting at 0x000804a9... (54 %)\r\r\nWriting at 0x00085889... (57 %)\r\r\nWriting at 0x0008ac72... (60 %)\r\r\nWriting at 0x00090a97... (63 %)\r\r\nWriting at 0x00095eb5... (66 %)\r\r\nWriting at 0x0009b5b6... (69 %)\r\r\nWriting at 0x000a0f60... (72 %)\r\r\nWriting at 0x000a6683... (75 %)\r\r\nWriting at 0x000ac218... (78 %)\r\r\nWriting at 0x000b244f... (81 %)\r\r\nWriting at 0x000b7c93... (84 %)\r\r\nWriting at 0x000bd38c... (87 %)\r\r\nWriting at 0x000c6058... (90 %)\r\r\nWriting at 0x000ce0b3... (93 %)\r\r\nWriting at 0x000d3fb9... (96 %)\r\r\nWriting at 0x000da009... (100 %)\r\r\nWrote 849328 bytes (540150 compressed) at 0x00010000 in 5.7 seconds (effective 1181.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 549.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1614.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45104",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5c0 bytes. Smallest app partition is 0x100000 bytes. 0x30a40 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 496.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849344 bytes to 540002...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x0002753f... (9 %)\r\r\nWriting at 0x0002c099... (12 %)\r\r\nWriting at 0x000347ef... (15 %)\r\r\nWriting at 0x0003c8df... (18 %)\r\r\nWriting at 0x00042809... (21 %)\r\r\nWriting at 0x00048b29... (24 %)\r\r\nWriting at 0x0004ea6c... (27 %)\r\r\nWriting at 0x00054826... (30 %)\r\r\nWriting at 0x0005aae3... (33 %)\r\r\nWriting at 0x00060b18... (36 %)\r\r\nWriting at 0x00066592... (39 %)\r\r\nWriting at 0x0006c305... (42 %)\r\r\nWriting at 0x00071310... (45 %)\r\r\nWriting at 0x000762ab... (48 %)\r\r\nWriting at 0x0007b3fc... (51 %)\r\r\nWriting at 0x000805c0... (54 %)\r\r\nWriting at 0x0008593f... (57 %)\r\r\nWriting at 0x0008ad99... (60 %)\r\r\nWriting at 0x00090b67... (63 %)\r\r\nWriting at 0x00095fce... (66 %)\r\r\nWriting at 0x0009b677... (69 %)\r\r\nWriting at 0x000a1024... (72 %)\r\r\nWriting at 0x000a6786... (75 %)\r\r\nWriting at 0x000ac2f1... (78 %)\r\r\nWriting at 0x000b2553... (81 %)\r\r\nWriting at 0x000b7d80... (84 %)\r\r\nWriting at 0x000bd430... (87 %)\r\r\nWriting at 0x000c611c... (90 %)\r\r\nWriting at 0x000ce192... (93 %)\r\r\nWriting at 0x000d4097... (96 %)\r\r\nWriting at 0x000da0bf... (100 %)\r\r\nWrote 849344 bytes (540002 compressed) at 0x00010000 in 5.6 seconds (effective 1210.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1696.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4536",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 502.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 539974...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8e8... (18 %)\r\r\nWriting at 0x00042835... (21 %)\r\r\nWriting at 0x00048b48... (24 %)\r\r\nWriting at 0x0004ea16... (27 %)\r\r\nWriting at 0x000547be... (30 %)\r\r\nWriting at 0x0005aa86... (33 %)\r\r\nWriting at 0x00060ab0... (36 %)\r\r\nWriting at 0x0006652b... (39 %)\r\r\nWriting at 0x0006c2a3... (42 %)\r\r\nWriting at 0x000712b5... (45 %)\r\r\nWriting at 0x00076249... (48 %)\r\r\nWriting at 0x0007b37b... (51 %)\r\r\nWriting at 0x0008059b... (54 %)\r\r\nWriting at 0x000858bd... (57 %)\r\r\nWriting at 0x0008ad1e... (60 %)\r\r\nWriting at 0x00090ad7... (63 %)\r\r\nWriting at 0x00095f49... (66 %)\r\r\nWriting at 0x0009b5f4... (69 %)\r\r\nWriting at 0x000a0f94... (72 %)\r\r\nWriting at 0x000a6718... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d0b... (84 %)\r\r\nWriting at 0x000bd449... (87 %)\r\r\nWriting at 0x000c6090... (90 %)\r\r\nWriting at 0x000ce117... (93 %)\r\r\nWriting at 0x000d3fff... (96 %)\r\r\nWriting at 0x000da03a... (100 %)\r\r\nWrote 849168 bytes (539974 compressed) at 0x00010000 in 5.5 seconds (effective 1235.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1725.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45360",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...................\r\r\n\r\r\nA serial exception error occurred: Cannot configure port, something went wrong. Original message: OSError(22, 'A device which does not exist was specified.', None, 433)\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45504",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf640 bytes. Smallest app partition is 0x100000 bytes. 0x309c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849472 bytes to 540181...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347d4... (15 %)\r\r\nWriting at 0x0003c8d6... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b3b... (24 %)\r\r\nWriting at 0x0004ea39... (27 %)\r\r\nWriting at 0x00054804... (30 %)\r\r\nWriting at 0x0005aab3... (33 %)\r\r\nWriting at 0x00060a15... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2d7... (42 %)\r\r\nWriting at 0x000712db... (45 %)\r\r\nWriting at 0x00076267... (48 %)\r\r\nWriting at 0x0007b3c8... (51 %)\r\r\nWriting at 0x00080546... (54 %)\r\r\nWriting at 0x000858f8... (57 %)\r\r\nWriting at 0x0008ad4b... (60 %)\r\r\nWriting at 0x00090b1c... (63 %)\r\r\nWriting at 0x00095f78... (66 %)\r\r\nWriting at 0x0009b624... (69 %)\r\r\nWriting at 0x000a0fcc... (72 %)\r\r\nWriting at 0x000a6725... (75 %)\r\r\nWriting at 0x000ac29e... (78 %)\r\r\nWriting at 0x000b24db... (81 %)\r\r\nWriting at 0x000b7d0e... (84 %)\r\r\nWriting at 0x000bd3f2... (87 %)\r\r\nWriting at 0x000c60d3... (90 %)\r\r\nWriting at 0x000ce12d... (93 %)\r\r\nWriting at 0x000d4018... (96 %)\r\r\nWriting at 0x000da070... (100 %)\r\r\nWrote 849472 bytes (540181 compressed) at 0x00010000 in 5.6 seconds (effective 1207.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1679.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4560",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf760 bytes. Smallest app partition is 0x100000 bytes. 0x308a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 483.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849760 bytes to 540321...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9d... (6 %)\r\r\nWriting at 0x0002758f... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x0003481c... (15 %)\r\r\nWriting at 0x0003c90b... (18 %)\r\r\nWriting at 0x0004288e... (21 %)\r\r\nWriting at 0x00048b8f... (24 %)\r\r\nWriting at 0x0004eacc... (27 %)\r\r\nWriting at 0x00054895... (30 %)\r\r\nWriting at 0x0005ab40... (33 %)\r\r\nWriting at 0x00060a7b... (36 %)\r\r\nWriting at 0x000665ca... (39 %)\r\r\nWriting at 0x0006c359... (42 %)\r\r\nWriting at 0x00071363... (45 %)\r\r\nWriting at 0x000762eb... (48 %)\r\r\nWriting at 0x0007b438... (51 %)\r\r\nWriting at 0x000805c7... (54 %)\r\r\nWriting at 0x00085987... (57 %)\r\r\nWriting at 0x0008add4... (60 %)\r\r\nWriting at 0x00090b96... (63 %)\r\r\nWriting at 0x00095ffb... (66 %)\r\r\nWriting at 0x0009b6a3... (69 %)\r\r\nWriting at 0x000a1053... (72 %)\r\r\nWriting at 0x000a6785... (75 %)\r\r\nWriting at 0x000ac30b... (78 %)\r\r\nWriting at 0x000b2552... (81 %)\r\r\nWriting at 0x000b7d8e... (84 %)\r\r\nWriting at 0x000bd47c... (87 %)\r\r\nWriting at 0x000c6156... (90 %)\r\r\nWriting at 0x000ce1aa... (93 %)\r\r\nWriting at 0x000d4075... (96 %)\r\r\nWriting at 0x000da0f5... (100 %)\r\r\nWrote 849760 bytes (540321 compressed) at 0x00010000 in 5.6 seconds (effective 1212.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1658.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45608",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540287...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b70... (24 %)\r\r\nWriting at 0x0004eab4... (27 %)\r\r\nWriting at 0x0005488c... (30 %)\r\r\nWriting at 0x0005ab3e... (33 %)\r\r\nWriting at 0x00060a7a... (36 %)\r\r\nWriting at 0x000665cb... (39 %)\r\r\nWriting at 0x0006c357... (42 %)\r\r\nWriting at 0x00071371... (45 %)\r\r\nWriting at 0x000762f5... (48 %)\r\r\nWriting at 0x0007b44c... (51 %)\r\r\nWriting at 0x000805d2... (54 %)\r\r\nWriting at 0x00085992... (57 %)\r\r\nWriting at 0x0008add8... (60 %)\r\r\nWriting at 0x00090b9b... (63 %)\r\r\nWriting at 0x00095ffd... (66 %)\r\r\nWriting at 0x0009b6a7... (69 %)\r\r\nWriting at 0x000a1058... (72 %)\r\r\nWriting at 0x000a6792... (75 %)\r\r\nWriting at 0x000ac312... (78 %)\r\r\nWriting at 0x000b2554... (81 %)\r\r\nWriting at 0x000b7d92... (84 %)\r\r\nWriting at 0x000bd47f... (87 %)\r\r\nWriting at 0x000c6159... (90 %)\r\r\nWriting at 0x000ce1ac... (93 %)\r\r\nWriting at 0x000d4080... (96 %)\r\r\nWriting at 0x000da0f4... (100 %)\r\r\nWrote 849728 bytes (540287 compressed) at 0x00010000 in 5.7 seconds (effective 1197.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 571.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1633.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45780",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540095...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x00027556... (9 %)\r\r\nWriting at 0x0002c0a7... (12 %)\r\r\nWriting at 0x000347e0... (15 %)\r\r\nWriting at 0x0003c8dc... (18 %)\r\r\nWriting at 0x00042818... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aaeb... (33 %)\r\r\nWriting at 0x00060aff... (36 %)\r\r\nWriting at 0x0006658c... (39 %)\r\r\nWriting at 0x0006c302... (42 %)\r\r\nWriting at 0x0007130e... (45 %)\r\r\nWriting at 0x000762a9... (48 %)\r\r\nWriting at 0x0007b3f9... (51 %)\r\r\nWriting at 0x0008059a... (54 %)\r\r\nWriting at 0x00085930... (57 %)\r\r\nWriting at 0x0008ad84... (60 %)\r\r\nWriting at 0x00090b51... (63 %)\r\r\nWriting at 0x00095fb5... (66 %)\r\r\nWriting at 0x0009b665... (69 %)\r\r\nWriting at 0x000a1016... (72 %)\r\r\nWriting at 0x000a6764... (75 %)\r\r\nWriting at 0x000ac2d8... (78 %)\r\r\nWriting at 0x000b2526... (81 %)\r\r\nWriting at 0x000b7d61... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c610e... (90 %)\r\r\nWriting at 0x000ce170... (93 %)\r\r\nWriting at 0x000d4067... (96 %)\r\r\nWriting at 0x000da0a1... (100 %)\r\r\nWrote 849424 bytes (540095 compressed) at 0x00010000 in 5.6 seconds (effective 1205.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1689.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45864",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 539974...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ff... (15 %)\r\r\nWriting at 0x0003c8e8... (18 %)\r\r\nWriting at 0x00042835... (21 %)\r\r\nWriting at 0x00048b48... (24 %)\r\r\nWriting at 0x0004ea16... (27 %)\r\r\nWriting at 0x000547be... (30 %)\r\r\nWriting at 0x0005aa86... (33 %)\r\r\nWriting at 0x00060ab0... (36 %)\r\r\nWriting at 0x0006652b... (39 %)\r\r\nWriting at 0x0006c2a3... (42 %)\r\r\nWriting at 0x000712b5... (45 %)\r\r\nWriting at 0x00076249... (48 %)\r\r\nWriting at 0x0007b37b... (51 %)\r\r\nWriting at 0x0008059b... (54 %)\r\r\nWriting at 0x000858bd... (57 %)\r\r\nWriting at 0x0008ad1e... (60 %)\r\r\nWriting at 0x00090ad7... (63 %)\r\r\nWriting at 0x00095f49... (66 %)\r\r\nWriting at 0x0009b5f4... (69 %)\r\r\nWriting at 0x000a0f94... (72 %)\r\r\nWriting at 0x000a6718... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d0b... (84 %)\r\r\nWriting at 0x000bd449... (87 %)\r\r\nWriting at 0x000c6090... (90 %)\r\r\nWriting at 0x000ce117... (93 %)\r\r\nWriting at 0x000d3fff... (96 %)\r\r\nWriting at 0x000da03a... (100 %)\r\r\nWrote 849168 bytes (539974 compressed) at 0x00010000 in 5.5 seconds (effective 1232.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1719.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_45872",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5e0 bytes. Smallest app partition is 0x100000 bytes. 0x30a20 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849376 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002753e... (9 %)\r\r\nWriting at 0x0002c08f... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8c5... (18 %)\r\r\nWriting at 0x000427e3... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aab2... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076272... (48 %)\r\r\nWriting at 0x0007b3c6... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f89... (66 %)\r\r\nWriting at 0x0009b632... (69 %)\r\r\nWriting at 0x000a0fec... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac2b5... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce13b... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da085... (100 %)\r\r\nWrote 849376 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1209.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 546.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1692.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46248",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf510 bytes. Smallest app partition is 0x100000 bytes. 0x30af0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849168 bytes to 540086...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca46... (6 %)\r\r\nWriting at 0x000274fa... (9 %)\r\r\nWriting at 0x0002c050... (12 %)\r\r\nWriting at 0x000347b3... (15 %)\r\r\nWriting at 0x0003c890... (18 %)\r\r\nWriting at 0x0004276d... (21 %)\r\r\nWriting at 0x00048a9b... (24 %)\r\r\nWriting at 0x0004e966... (27 %)\r\r\nWriting at 0x00054700... (30 %)\r\r\nWriting at 0x0005a9cf... (33 %)\r\r\nWriting at 0x0006091a... (36 %)\r\r\nWriting at 0x0006647d... (39 %)\r\r\nWriting at 0x0006c200... (42 %)\r\r\nWriting at 0x00071217... (45 %)\r\r\nWriting at 0x000761a0... (48 %)\r\r\nWriting at 0x0007b2e5... (51 %)\r\r\nWriting at 0x00080471... (54 %)\r\r\nWriting at 0x00085841... (57 %)\r\r\nWriting at 0x0008ac3e... (60 %)\r\r\nWriting at 0x00090a3b... (63 %)\r\r\nWriting at 0x00095e8f... (66 %)\r\r\nWriting at 0x0009b556... (69 %)\r\r\nWriting at 0x000a0f08... (72 %)\r\r\nWriting at 0x000a6624... (75 %)\r\r\nWriting at 0x000ac1bf... (78 %)\r\r\nWriting at 0x000b23f7... (81 %)\r\r\nWriting at 0x000b7c3f... (84 %)\r\r\nWriting at 0x000bd338... (87 %)\r\r\nWriting at 0x000c6005... (90 %)\r\r\nWriting at 0x000ce062... (93 %)\r\r\nWriting at 0x000d3f83... (96 %)\r\r\nWriting at 0x000d9fbc... (100 %)\r\r\nWrote 849168 bytes (540086 compressed) at 0x00010000 in 5.9 seconds (effective 1153.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1592.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46400",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5b0 bytes. Smallest app partition is 0x100000 bytes. 0x30a50 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849328 bytes to 540016...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa8... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0b6... (12 %)\r\r\nWriting at 0x0003481c... (15 %)\r\r\nWriting at 0x0003c913... (18 %)\r\r\nWriting at 0x00042870... (21 %)\r\r\nWriting at 0x00048b67... (24 %)\r\r\nWriting at 0x0004ea6d... (27 %)\r\r\nWriting at 0x00054828... (30 %)\r\r\nWriting at 0x0005aadd... (33 %)\r\r\nWriting at 0x00060b1d... (36 %)\r\r\nWriting at 0x00066590... (39 %)\r\r\nWriting at 0x0006c2ff... (42 %)\r\r\nWriting at 0x00071320... (45 %)\r\r\nWriting at 0x000762b0... (48 %)\r\r\nWriting at 0x0007b3ec... (51 %)\r\r\nWriting at 0x000805db... (54 %)\r\r\nWriting at 0x00085921... (57 %)\r\r\nWriting at 0x0008ad79... (60 %)\r\r\nWriting at 0x00090b4e... (63 %)\r\r\nWriting at 0x00095fb0... (66 %)\r\r\nWriting at 0x0009b654... (69 %)\r\r\nWriting at 0x000a1003... (72 %)\r\r\nWriting at 0x000a6771... (75 %)\r\r\nWriting at 0x000ac2d6... (78 %)\r\r\nWriting at 0x000b2538... (81 %)\r\r\nWriting at 0x000b7d6e... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c60ff... (90 %)\r\r\nWriting at 0x000ce17d... (93 %)\r\r\nWriting at 0x000d4073... (96 %)\r\r\nWriting at 0x000da09d... (100 %)\r\r\nWrote 849328 bytes (540016 compressed) at 0x00010000 in 5.6 seconds (effective 1215.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 547.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1696.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46420",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 513.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eace... (27 %)\r\r\nWriting at 0x000548aa... (30 %)\r\r\nWriting at 0x0005ab58... (33 %)\r\r\nWriting at 0x00060a96... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c36f... (42 %)\r\r\nWriting at 0x00071388... (45 %)\r\r\nWriting at 0x0007630e... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008adf8... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6c0... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a67c0... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7dac... (84 %)\r\r\nWriting at 0x000bd499... (87 %)\r\r\nWriting at 0x000c6177... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da10d... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.6 seconds (effective 1210.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 565.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1609.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46436",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540221...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027590... (9 %)\r\r\nWriting at 0x0002c0e3... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428cf... (21 %)\r\r\nWriting at 0x00048bb4... (24 %)\r\r\nWriting at 0x0004eadb... (27 %)\r\r\nWriting at 0x000548bd... (30 %)\r\r\nWriting at 0x0005ab62... (33 %)\r\r\nWriting at 0x00060ae1... (36 %)\r\r\nWriting at 0x000665ef... (39 %)\r\r\nWriting at 0x0006c377... (42 %)\r\r\nWriting at 0x0007137c... (45 %)\r\r\nWriting at 0x00076308... (48 %)\r\r\nWriting at 0x0007b465... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859af... (57 %)\r\r\nWriting at 0x0008ae07... (60 %)\r\r\nWriting at 0x00090bcb... (63 %)\r\r\nWriting at 0x00096034... (66 %)\r\r\nWriting at 0x0009b6de... (69 %)\r\r\nWriting at 0x000a1094... (72 %)\r\r\nWriting at 0x000a67d7... (75 %)\r\r\nWriting at 0x000ac35f... (78 %)\r\r\nWriting at 0x000b259a... (81 %)\r\r\nWriting at 0x000b7dc8... (84 %)\r\r\nWriting at 0x000bd49d... (87 %)\r\r\nWriting at 0x000c6183... (90 %)\r\r\nWriting at 0x000ce1e7... (93 %)\r\r\nWriting at 0x000d40c4... (96 %)\r\r\nWriting at 0x000da11d... (100 %)\r\r\nWrote 849696 bytes (540221 compressed) at 0x00010000 in 5.6 seconds (effective 1213.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 520.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1663.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46652",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6b0 bytes. Smallest app partition is 0x100000 bytes. 0x30950 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 487.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849584 bytes to 540164...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca2b... (6 %)\r\r\nWriting at 0x0002758f... (9 %)\r\r\nWriting at 0x0002c0e4... (12 %)\r\r\nWriting at 0x0003481d... (15 %)\r\r\nWriting at 0x0003c916... (18 %)\r\r\nWriting at 0x0004289f... (21 %)\r\r\nWriting at 0x00048b9e... (24 %)\r\r\nWriting at 0x0004eac1... (27 %)\r\r\nWriting at 0x0005488a... (30 %)\r\r\nWriting at 0x0005ab29... (33 %)\r\r\nWriting at 0x00060af4... (36 %)\r\r\nWriting at 0x000665c8... (39 %)\r\r\nWriting at 0x0006c340... (42 %)\r\r\nWriting at 0x0007135d... (45 %)\r\r\nWriting at 0x000762ee... (48 %)\r\r\nWriting at 0x0007b43d... (51 %)\r\r\nWriting at 0x000805d2... (54 %)\r\r\nWriting at 0x00085988... (57 %)\r\r\nWriting at 0x0008add4... (60 %)\r\r\nWriting at 0x00090b98... (63 %)\r\r\nWriting at 0x00095fff... (66 %)\r\r\nWriting at 0x0009b6b3... (69 %)\r\r\nWriting at 0x000a1064... (72 %)\r\r\nWriting at 0x000a67af... (75 %)\r\r\nWriting at 0x000ac322... (78 %)\r\r\nWriting at 0x000b256d... (81 %)\r\r\nWriting at 0x000b7d98... (84 %)\r\r\nWriting at 0x000bd464... (87 %)\r\r\nWriting at 0x000c6154... (90 %)\r\r\nWriting at 0x000ce1ba... (93 %)\r\r\nWriting at 0x000d409a... (96 %)\r\r\nWriting at 0x000da0e9... (100 %)\r\r\nWrote 849584 bytes (540164 compressed) at 0x00010000 in 5.6 seconds (effective 1208.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 505.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1694.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46752",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 457.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540195...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x00027595... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034847... (15 %)\r\r\nWriting at 0x0003c945... (18 %)\r\r\nWriting at 0x000428e1... (21 %)\r\r\nWriting at 0x00048bc0... (24 %)\r\r\nWriting at 0x0004ead8... (27 %)\r\r\nWriting at 0x000548a9... (30 %)\r\r\nWriting at 0x0005ab55... (33 %)\r\r\nWriting at 0x00060b0d... (36 %)\r\r\nWriting at 0x000665fd... (39 %)\r\r\nWriting at 0x0006c372... (42 %)\r\r\nWriting at 0x0007137f... (45 %)\r\r\nWriting at 0x00076312... (48 %)\r\r\nWriting at 0x0007b46c... (51 %)\r\r\nWriting at 0x000805f8... (54 %)\r\r\nWriting at 0x000859b4... (57 %)\r\r\nWriting at 0x0008ae0d... (60 %)\r\r\nWriting at 0x00090bd9... (63 %)\r\r\nWriting at 0x00096040... (66 %)\r\r\nWriting at 0x0009b6e8... (69 %)\r\r\nWriting at 0x000a109d... (72 %)\r\r\nWriting at 0x000a67e6... (75 %)\r\r\nWriting at 0x000ac365... (78 %)\r\r\nWriting at 0x000b25a9... (81 %)\r\r\nWriting at 0x000b7dd4... (84 %)\r\r\nWriting at 0x000bd4a6... (87 %)\r\r\nWriting at 0x000c6190... (90 %)\r\r\nWriting at 0x000ce1f2... (93 %)\r\r\nWriting at 0x000d40d3... (96 %)\r\r\nWriting at 0x000da124... (100 %)\r\r\nWrote 849680 bytes (540195 compressed) at 0x00010000 in 5.9 seconds (effective 1153.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 486.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1610.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_46848",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540191...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x0002755a... (9 %)\r\r\nWriting at 0x0002c0b0... (12 %)\r\r\nWriting at 0x000347eb... (15 %)\r\r\nWriting at 0x0003c8ff... (18 %)\r\r\nWriting at 0x00042851... (21 %)\r\r\nWriting at 0x00048b62... (24 %)\r\r\nWriting at 0x0004ea90... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005aaf3... (33 %)\r\r\nWriting at 0x00060a59... (36 %)\r\r\nWriting at 0x00066595... (39 %)\r\r\nWriting at 0x0006c31a... (42 %)\r\r\nWriting at 0x0007131d... (45 %)\r\r\nWriting at 0x000762a6... (48 %)\r\r\nWriting at 0x0007b40a... (51 %)\r\r\nWriting at 0x0008057c... (54 %)\r\r\nWriting at 0x0008593b... (57 %)\r\r\nWriting at 0x0008ad91... (60 %)\r\r\nWriting at 0x00090b5a... (63 %)\r\r\nWriting at 0x00095fc5... (66 %)\r\r\nWriting at 0x0009b66c... (69 %)\r\r\nWriting at 0x000a1012... (72 %)\r\r\nWriting at 0x000a6770... (75 %)\r\r\nWriting at 0x000ac2e5... (78 %)\r\r\nWriting at 0x000b2521... (81 %)\r\r\nWriting at 0x000b7d53... (84 %)\r\r\nWriting at 0x000bd437... (87 %)\r\r\nWriting at 0x000c6119... (90 %)\r\r\nWriting at 0x000ce175... (93 %)\r\r\nWriting at 0x000d4063... (96 %)\r\r\nWriting at 0x000da0ba... (100 %)\r\r\nWrote 849552 bytes (540191 compressed) at 0x00010000 in 5.6 seconds (effective 1214.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 494.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1644.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47000",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5f0 bytes. Smallest app partition is 0x100000 bytes. 0x30a10 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849392 bytes to 540126...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x00027538... (9 %)\r\r\nWriting at 0x0002c090... (12 %)\r\r\nWriting at 0x000347d7... (15 %)\r\r\nWriting at 0x0003c8c1... (18 %)\r\r\nWriting at 0x000427d4... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea15... (27 %)\r\r\nWriting at 0x000547ce... (30 %)\r\r\nWriting at 0x0005aa93... (33 %)\r\r\nWriting at 0x000609fa... (36 %)\r\r\nWriting at 0x0006652c... (39 %)\r\r\nWriting at 0x0006c2bb... (42 %)\r\r\nWriting at 0x000712c2... (45 %)\r\r\nWriting at 0x00076252... (48 %)\r\r\nWriting at 0x0007b3aa... (51 %)\r\r\nWriting at 0x00080531... (54 %)\r\r\nWriting at 0x000858ed... (57 %)\r\r\nWriting at 0x0008ad45... (60 %)\r\r\nWriting at 0x00090aff... (63 %)\r\r\nWriting at 0x00095f65... (66 %)\r\r\nWriting at 0x0009b60d... (69 %)\r\r\nWriting at 0x000a0fc1... (72 %)\r\r\nWriting at 0x000a6711... (75 %)\r\r\nWriting at 0x000ac28e... (78 %)\r\r\nWriting at 0x000b24c8... (81 %)\r\r\nWriting at 0x000b7cf5... (84 %)\r\r\nWriting at 0x000bd3d9... (87 %)\r\r\nWriting at 0x000c60b5... (90 %)\r\r\nWriting at 0x000ce10e... (93 %)\r\r\nWriting at 0x000d4012... (96 %)\r\r\nWriting at 0x000da05f... (100 %)\r\r\nWrote 849392 bytes (540126 compressed) at 0x00010000 in 5.6 seconds (effective 1213.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 524.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1687.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47132",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf650 bytes. Smallest app partition is 0x100000 bytes. 0x309b0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849488 bytes to 540157...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca67... (6 %)\r\r\nWriting at 0x00027551... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347d4... (15 %)\r\r\nWriting at 0x0003c8d6... (18 %)\r\r\nWriting at 0x0004282e... (21 %)\r\r\nWriting at 0x00048b45... (24 %)\r\r\nWriting at 0x0004ea68... (27 %)\r\r\nWriting at 0x00054830... (30 %)\r\r\nWriting at 0x0005aada... (33 %)\r\r\nWriting at 0x00060a3a... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2f5... (42 %)\r\r\nWriting at 0x000712fd... (45 %)\r\r\nWriting at 0x0007628d... (48 %)\r\r\nWriting at 0x0007b3ed... (51 %)\r\r\nWriting at 0x0008056b... (54 %)\r\r\nWriting at 0x00085921... (57 %)\r\r\nWriting at 0x0008ad71... (60 %)\r\r\nWriting at 0x00090b47... (63 %)\r\r\nWriting at 0x00095fa7... (66 %)\r\r\nWriting at 0x0009b64e... (69 %)\r\r\nWriting at 0x000a0ff9... (72 %)\r\r\nWriting at 0x000a674b... (75 %)\r\r\nWriting at 0x000ac2ce... (78 %)\r\r\nWriting at 0x000b2503... (81 %)\r\r\nWriting at 0x000b7d41... (84 %)\r\r\nWriting at 0x000bd418... (87 %)\r\r\nWriting at 0x000c60fc... (90 %)\r\r\nWriting at 0x000ce15f... (93 %)\r\r\nWriting at 0x000d404c... (96 %)\r\r\nWriting at 0x000da096... (100 %)\r\r\nWrote 849488 bytes (540157 compressed) at 0x00010000 in 5.6 seconds (effective 1210.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 497.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1675.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47416",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540217...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9d... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034839... (15 %)\r\r\nWriting at 0x0003c938... (18 %)\r\r\nWriting at 0x000428d2... (21 %)\r\r\nWriting at 0x00048bbc... (24 %)\r\r\nWriting at 0x0004eade... (27 %)\r\r\nWriting at 0x000548c5... (30 %)\r\r\nWriting at 0x0005ab65... (33 %)\r\r\nWriting at 0x00060ae7... (36 %)\r\r\nWriting at 0x000665f1... (39 %)\r\r\nWriting at 0x0006c379... (42 %)\r\r\nWriting at 0x0007137f... (45 %)\r\r\nWriting at 0x0007630c... (48 %)\r\r\nWriting at 0x0007b465... (51 %)\r\r\nWriting at 0x000805ed... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008ae09... (60 %)\r\r\nWriting at 0x00090bce... (63 %)\r\r\nWriting at 0x00096036... (66 %)\r\r\nWriting at 0x0009b6e0... (69 %)\r\r\nWriting at 0x000a1095... (72 %)\r\r\nWriting at 0x000a67da... (75 %)\r\r\nWriting at 0x000ac362... (78 %)\r\r\nWriting at 0x000b259d... (81 %)\r\r\nWriting at 0x000b7dca... (84 %)\r\r\nWriting at 0x000bd4a0... (87 %)\r\r\nWriting at 0x000c6185... (90 %)\r\r\nWriting at 0x000ce1e9... (93 %)\r\r\nWriting at 0x000d40c9... (96 %)\r\r\nWriting at 0x000da120... (100 %)\r\r\nWrote 849696 bytes (540217 compressed) at 0x00010000 in 5.6 seconds (effective 1205.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 503.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1644.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47464",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540032...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x00027560... (9 %)\r\r\nWriting at 0x0002c0b1... (12 %)\r\r\nWriting at 0x000347fe... (15 %)\r\r\nWriting at 0x0003c8f6... (18 %)\r\r\nWriting at 0x00042856... (21 %)\r\r\nWriting at 0x00048b5e... (24 %)\r\r\nWriting at 0x0004ea51... (27 %)\r\r\nWriting at 0x000547f9... (30 %)\r\r\nWriting at 0x0005aab3... (33 %)\r\r\nWriting at 0x00060ae6... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2c2... (42 %)\r\r\nWriting at 0x000712e1... (45 %)\r\r\nWriting at 0x00076270... (48 %)\r\r\nWriting at 0x0007b3ad... (51 %)\r\r\nWriting at 0x0008058d... (54 %)\r\r\nWriting at 0x000858e7... (57 %)\r\r\nWriting at 0x0008ad3e... (60 %)\r\r\nWriting at 0x00090b01... (63 %)\r\r\nWriting at 0x00095f5e... (66 %)\r\r\nWriting at 0x0009b603... (69 %)\r\r\nWriting at 0x000a0fb3... (72 %)\r\r\nWriting at 0x000a6716... (75 %)\r\r\nWriting at 0x000ac281... (78 %)\r\r\nWriting at 0x000b24e3... (81 %)\r\r\nWriting at 0x000b7d20... (84 %)\r\r\nWriting at 0x000bd3c9... (87 %)\r\r\nWriting at 0x000c60b9... (90 %)\r\r\nWriting at 0x000ce134... (93 %)\r\r\nWriting at 0x000d402b... (96 %)\r\r\nWriting at 0x000da055... (100 %)\r\r\nWrote 849264 bytes (540032 compressed) at 0x00010000 in 5.6 seconds (effective 1218.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 511.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1704.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47736",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540189...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027592... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428c5... (21 %)\r\r\nWriting at 0x00048bad... (24 %)\r\r\nWriting at 0x0004eadc... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab66... (33 %)\r\r\nWriting at 0x00060b14... (36 %)\r\r\nWriting at 0x0006660d... (39 %)\r\r\nWriting at 0x0006c38e... (42 %)\r\r\nWriting at 0x0007139a... (45 %)\r\r\nWriting at 0x00076329... (48 %)\r\r\nWriting at 0x0007b47e... (51 %)\r\r\nWriting at 0x00080606... (54 %)\r\r\nWriting at 0x000859c8... (57 %)\r\r\nWriting at 0x0008ae15... (60 %)\r\r\nWriting at 0x00090be6... (63 %)\r\r\nWriting at 0x0009604b... (66 %)\r\r\nWriting at 0x0009b6f3... (69 %)\r\r\nWriting at 0x000a10ab... (72 %)\r\r\nWriting at 0x000a67f4... (75 %)\r\r\nWriting at 0x000ac373... (78 %)\r\r\nWriting at 0x000b25b7... (81 %)\r\r\nWriting at 0x000b7de1... (84 %)\r\r\nWriting at 0x000bd4b2... (87 %)\r\r\nWriting at 0x000c619b... (90 %)\r\r\nWriting at 0x000ce202... (93 %)\r\r\nWriting at 0x000d40e1... (96 %)\r\r\nWriting at 0x000da135... (100 %)\r\r\nWrote 849680 bytes (540189 compressed) at 0x00010000 in 5.7 seconds (effective 1202.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1642.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47824",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 478.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540201...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x0002754f... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e5... (15 %)\r\r\nWriting at 0x0003c8e8... (18 %)\r\r\nWriting at 0x00042844... (21 %)\r\r\nWriting at 0x00048b4f... (24 %)\r\r\nWriting at 0x0004ea95... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005aaff... (33 %)\r\r\nWriting at 0x00060a60... (36 %)\r\r\nWriting at 0x000665a1... (39 %)\r\r\nWriting at 0x0006c324... (42 %)\r\r\nWriting at 0x00071326... (45 %)\r\r\nWriting at 0x000762b0... (48 %)\r\r\nWriting at 0x0007b415... (51 %)\r\r\nWriting at 0x0008058f... (54 %)\r\r\nWriting at 0x00085944... (57 %)\r\r\nWriting at 0x0008ad9b... (60 %)\r\r\nWriting at 0x00090b5f... (63 %)\r\r\nWriting at 0x00095fc0... (66 %)\r\r\nWriting at 0x0009b66d... (69 %)\r\r\nWriting at 0x000a1014... (72 %)\r\r\nWriting at 0x000a676b... (75 %)\r\r\nWriting at 0x000ac2dd... (78 %)\r\r\nWriting at 0x000b2525... (81 %)\r\r\nWriting at 0x000b7d55... (84 %)\r\r\nWriting at 0x000bd43b... (87 %)\r\r\nWriting at 0x000c611c... (90 %)\r\r\nWriting at 0x000ce176... (93 %)\r\r\nWriting at 0x000d4063... (96 %)\r\r\nWriting at 0x000da0b4... (100 %)\r\r\nWrote 849568 bytes (540201 compressed) at 0x00010000 in 5.6 seconds (effective 1207.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 547.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1640.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_47892",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf700 bytes. Smallest app partition is 0x100000 bytes. 0x30900 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849664 bytes to 540188...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x0002758b... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c933... (18 %)\r\r\nWriting at 0x000428cd... (21 %)\r\r\nWriting at 0x00048ba7... (24 %)\r\r\nWriting at 0x0004eae3... (27 %)\r\r\nWriting at 0x000548bb... (30 %)\r\r\nWriting at 0x0005ab51... (33 %)\r\r\nWriting at 0x00060b11... (36 %)\r\r\nWriting at 0x000665f6... (39 %)\r\r\nWriting at 0x0006c372... (42 %)\r\r\nWriting at 0x0007137d... (45 %)\r\r\nWriting at 0x0007630d... (48 %)\r\r\nWriting at 0x0007b45e... (51 %)\r\r\nWriting at 0x000805ed... (54 %)\r\r\nWriting at 0x000859ab... (57 %)\r\r\nWriting at 0x0008adfd... (60 %)\r\r\nWriting at 0x00090bc4... (63 %)\r\r\nWriting at 0x00096031... (66 %)\r\r\nWriting at 0x0009b6d9... (69 %)\r\r\nWriting at 0x000a1091... (72 %)\r\r\nWriting at 0x000a67dc... (75 %)\r\r\nWriting at 0x000ac35a... (78 %)\r\r\nWriting at 0x000b259f... (81 %)\r\r\nWriting at 0x000b7dca... (84 %)\r\r\nWriting at 0x000bd49b... (87 %)\r\r\nWriting at 0x000c6184... (90 %)\r\r\nWriting at 0x000ce1ea... (93 %)\r\r\nWriting at 0x000d40ca... (96 %)\r\r\nWriting at 0x000da11c... (100 %)\r\r\nWrote 849664 bytes (540188 compressed) at 0x00010000 in 5.6 seconds (effective 1205.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48160",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5b0 bytes. Smallest app partition is 0x100000 bytes. 0x30a50 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 497.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849328 bytes to 540019...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa7... (6 %)\r\r\nWriting at 0x0002755f... (9 %)\r\r\nWriting at 0x0002c0b5... (12 %)\r\r\nWriting at 0x0003481c... (15 %)\r\r\nWriting at 0x0003c912... (18 %)\r\r\nWriting at 0x0004286c... (21 %)\r\r\nWriting at 0x00048b66... (24 %)\r\r\nWriting at 0x0004ea6b... (27 %)\r\r\nWriting at 0x00054824... (30 %)\r\r\nWriting at 0x0005aad9... (33 %)\r\r\nWriting at 0x00060b16... (36 %)\r\r\nWriting at 0x0006658b... (39 %)\r\r\nWriting at 0x0006c2f9... (42 %)\r\r\nWriting at 0x0007131b... (45 %)\r\r\nWriting at 0x000762ab... (48 %)\r\r\nWriting at 0x0007b3e7... (51 %)\r\r\nWriting at 0x000805c5... (54 %)\r\r\nWriting at 0x0008591d... (57 %)\r\r\nWriting at 0x0008ad76... (60 %)\r\r\nWriting at 0x00090b44... (63 %)\r\r\nWriting at 0x00095fa9... (66 %)\r\r\nWriting at 0x0009b64b... (69 %)\r\r\nWriting at 0x000a1000... (72 %)\r\r\nWriting at 0x000a676e... (75 %)\r\r\nWriting at 0x000ac2d2... (78 %)\r\r\nWriting at 0x000b2531... (81 %)\r\r\nWriting at 0x000b7d63... (84 %)\r\r\nWriting at 0x000bd40b... (87 %)\r\r\nWriting at 0x000c60f9... (90 %)\r\r\nWriting at 0x000ce178... (93 %)\r\r\nWriting at 0x000d406b... (96 %)\r\r\nWriting at 0x000da09a... (100 %)\r\r\nWrote 849328 bytes (540019 compressed) at 0x00010000 in 5.6 seconds (effective 1211.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 487.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1694.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48164",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf650 bytes. Smallest app partition is 0x100000 bytes. 0x309b0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849488 bytes to 540153...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca87... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0b1... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8d6... (18 %)\r\r\nWriting at 0x0004281b... (21 %)\r\r\nWriting at 0x00048b40... (24 %)\r\r\nWriting at 0x0004ea71... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aaea... (33 %)\r\r\nWriting at 0x00060a68... (36 %)\r\r\nWriting at 0x00066581... (39 %)\r\r\nWriting at 0x0006c305... (42 %)\r\r\nWriting at 0x00071314... (45 %)\r\r\nWriting at 0x000762a9... (48 %)\r\r\nWriting at 0x0007b3fc... (51 %)\r\r\nWriting at 0x00080588... (54 %)\r\r\nWriting at 0x00085932... (57 %)\r\r\nWriting at 0x0008ad81... (60 %)\r\r\nWriting at 0x00090b43... (63 %)\r\r\nWriting at 0x00095fab... (66 %)\r\r\nWriting at 0x0009b653... (69 %)\r\r\nWriting at 0x000a1004... (72 %)\r\r\nWriting at 0x000a6752... (75 %)\r\r\nWriting at 0x000ac2d2... (78 %)\r\r\nWriting at 0x000b250f... (81 %)\r\r\nWriting at 0x000b7d42... (84 %)\r\r\nWriting at 0x000bd41b... (87 %)\r\r\nWriting at 0x000c60ff... (90 %)\r\r\nWriting at 0x000ce15e... (93 %)\r\r\nWriting at 0x000d4050... (96 %)\r\r\nWriting at 0x000da09a... (100 %)\r\r\nWrote 849488 bytes (540153 compressed) at 0x00010000 in 5.6 seconds (effective 1216.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1718.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_4824",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'getVL53L1X':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:510:9: error: expected expression before '}' token\r\n  510 |         }\r\n      |         ^\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48316",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf7a0 bytes. Smallest app partition is 0x100000 bytes. 0x30860 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849824 bytes to 540411...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca56... (6 %)\r\r\nWriting at 0x000275b6... (9 %)\r\r\nWriting at 0x0002c05e... (12 %)\r\r\nWriting at 0x00034836... (15 %)\r\r\nWriting at 0x0003c91b... (18 %)\r\r\nWriting at 0x000428b0... (21 %)\r\r\nWriting at 0x00048ba6... (24 %)\r\r\nWriting at 0x0004ea8d... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005ab1e... (33 %)\r\r\nWriting at 0x00060a5e... (36 %)\r\r\nWriting at 0x000665b1... (39 %)\r\r\nWriting at 0x0006c336... (42 %)\r\r\nWriting at 0x0007134f... (45 %)\r\r\nWriting at 0x000762c7... (48 %)\r\r\nWriting at 0x0007b40f... (51 %)\r\r\nWriting at 0x0008058e... (54 %)\r\r\nWriting at 0x0008595a... (57 %)\r\r\nWriting at 0x0008ad4d... (60 %)\r\r\nWriting at 0x00090b5c... (63 %)\r\r\nWriting at 0x00095f7c... (66 %)\r\r\nWriting at 0x0009b676... (69 %)\r\r\nWriting at 0x000a1026... (72 %)\r\r\nWriting at 0x000a674d... (75 %)\r\r\nWriting at 0x000ac2e1... (78 %)\r\r\nWriting at 0x000b2516... (81 %)\r\r\nWriting at 0x000b7d68... (84 %)\r\r\nWriting at 0x000bd45c... (87 %)\r\r\nWriting at 0x000c612b... (90 %)\r\r\nWriting at 0x000ce183... (93 %)\r\r\nWriting at 0x000d402e... (96 %)\r\r\nWriting at 0x000da0bd... (100 %)\r\r\nWrote 849824 bytes (540411 compressed) at 0x00010000 in 5.9 seconds (effective 1159.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 577.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1591.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48536",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4a0 bytes. Smallest app partition is 0x100000 bytes. 0x30b60 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849056 bytes to 539868...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca35... (6 %)\r\r\nWriting at 0x000274d6... (9 %)\r\r\nWriting at 0x0002c069... (12 %)\r\r\nWriting at 0x0003479f... (15 %)\r\r\nWriting at 0x0003c880... (18 %)\r\r\nWriting at 0x0004274f... (21 %)\r\r\nWriting at 0x00048a8a... (24 %)\r\r\nWriting at 0x0004e9c8... (27 %)\r\r\nWriting at 0x0005478c... (30 %)\r\r\nWriting at 0x0005aa30... (33 %)\r\r\nWriting at 0x000609d0... (36 %)\r\r\nWriting at 0x000664e5... (39 %)\r\r\nWriting at 0x0006c265... (42 %)\r\r\nWriting at 0x00071272... (45 %)\r\r\nWriting at 0x00076200... (48 %)\r\r\nWriting at 0x0007b358... (51 %)\r\r\nWriting at 0x000804e1... (54 %)\r\r\nWriting at 0x000858a2... (57 %)\r\r\nWriting at 0x0008aced... (60 %)\r\r\nWriting at 0x00090aca... (63 %)\r\r\nWriting at 0x00095f2c... (66 %)\r\r\nWriting at 0x0009b5df... (69 %)\r\r\nWriting at 0x000a0f96... (72 %)\r\r\nWriting at 0x000a66ec... (75 %)\r\r\nWriting at 0x000ac25e... (78 %)\r\r\nWriting at 0x000b24ae... (81 %)\r\r\nWriting at 0x000b7cd7... (84 %)\r\r\nWriting at 0x000bd39c... (87 %)\r\r\nWriting at 0x000c6088... (90 %)\r\r\nWriting at 0x000ce0f0... (93 %)\r\r\nWriting at 0x000d402f... (96 %)\r\r\nWriting at 0x000da051... (100 %)\r\r\nWrote 849056 bytes (539868 compressed) at 0x00010000 in 5.6 seconds (effective 1206.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1648.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48684",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf730 bytes. Smallest app partition is 0x100000 bytes. 0x308d0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849712 bytes to 540258...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0e6... (12 %)\r\r\nWriting at 0x00034832... (15 %)\r\r\nWriting at 0x0003c92b... (18 %)\r\r\nWriting at 0x000428b8... (21 %)\r\r\nWriting at 0x00048ba2... (24 %)\r\r\nWriting at 0x0004ead9... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab65... (33 %)\r\r\nWriting at 0x00060abd... (36 %)\r\r\nWriting at 0x000665eb... (39 %)\r\r\nWriting at 0x0006c36e... (42 %)\r\r\nWriting at 0x0007137a... (45 %)\r\r\nWriting at 0x00076306... (48 %)\r\r\nWriting at 0x0007b460... (51 %)\r\r\nWriting at 0x000805df... (54 %)\r\r\nWriting at 0x000859a0... (57 %)\r\r\nWriting at 0x0008aded... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x00096018... (66 %)\r\r\nWriting at 0x0009b6bd... (69 %)\r\r\nWriting at 0x000a106c... (72 %)\r\r\nWriting at 0x000a67cc... (75 %)\r\r\nWriting at 0x000ac338... (78 %)\r\r\nWriting at 0x000b257b... (81 %)\r\r\nWriting at 0x000b7da5... (84 %)\r\r\nWriting at 0x000bd491... (87 %)\r\r\nWriting at 0x000c616f... (90 %)\r\r\nWriting at 0x000ce1cb... (93 %)\r\r\nWriting at 0x000d409a... (96 %)\r\r\nWriting at 0x000da107... (100 %)\r\r\nWrote 849712 bytes (540258 compressed) at 0x00010000 in 5.6 seconds (effective 1208.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 522.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1645.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_48832",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf620 bytes. Smallest app partition is 0x100000 bytes. 0x309e0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 501.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849440 bytes to 540115...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaa... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347e6... (15 %)\r\r\nWriting at 0x0003c8e4... (18 %)\r\r\nWriting at 0x00042813... (21 %)\r\r\nWriting at 0x00048b37... (24 %)\r\r\nWriting at 0x0004ea61... (27 %)\r\r\nWriting at 0x00054835... (30 %)\r\r\nWriting at 0x0005aad8... (33 %)\r\r\nWriting at 0x00060a99... (36 %)\r\r\nWriting at 0x00066582... (39 %)\r\r\nWriting at 0x0006c308... (42 %)\r\r\nWriting at 0x0007131c... (45 %)\r\r\nWriting at 0x000762b0... (48 %)\r\r\nWriting at 0x0007b403... (51 %)\r\r\nWriting at 0x00080595... (54 %)\r\r\nWriting at 0x0008593d... (57 %)\r\r\nWriting at 0x0008ad8f... (60 %)\r\r\nWriting at 0x00090b4c... (63 %)\r\r\nWriting at 0x00095fb3... (66 %)\r\r\nWriting at 0x0009b65b... (69 %)\r\r\nWriting at 0x000a1014... (72 %)\r\r\nWriting at 0x000a675a... (75 %)\r\r\nWriting at 0x000ac2d9... (78 %)\r\r\nWriting at 0x000b2519... (81 %)\r\r\nWriting at 0x000b7d4a... (84 %)\r\r\nWriting at 0x000bd41d... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da0a7... (100 %)\r\r\nWrote 849440 bytes (540115 compressed) at 0x00010000 in 5.6 seconds (effective 1218.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1701.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49108",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540193...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347e9... (15 %)\r\r\nWriting at 0x0003c8fc... (18 %)\r\r\nWriting at 0x00042849... (21 %)\r\r\nWriting at 0x00048b5d... (24 %)\r\r\nWriting at 0x0004ea8d... (27 %)\r\r\nWriting at 0x00054855... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060a50... (36 %)\r\r\nWriting at 0x0006658f... (39 %)\r\r\nWriting at 0x0006c312... (42 %)\r\r\nWriting at 0x0007131a... (45 %)\r\r\nWriting at 0x000762a3... (48 %)\r\r\nWriting at 0x0007b406... (51 %)\r\r\nWriting at 0x0008057a... (54 %)\r\r\nWriting at 0x00085937... (57 %)\r\r\nWriting at 0x0008ad8d... (60 %)\r\r\nWriting at 0x00090b55... (63 %)\r\r\nWriting at 0x00095fbc... (66 %)\r\r\nWriting at 0x0009b668... (69 %)\r\r\nWriting at 0x000a100f... (72 %)\r\r\nWriting at 0x000a6769... (75 %)\r\r\nWriting at 0x000ac2e3... (78 %)\r\r\nWriting at 0x000b251e... (81 %)\r\r\nWriting at 0x000b7d4e... (84 %)\r\r\nWriting at 0x000bd434... (87 %)\r\r\nWriting at 0x000c6117... (90 %)\r\r\nWriting at 0x000ce170... (93 %)\r\r\nWriting at 0x000d405e... (96 %)\r\r\nWriting at 0x000da0b2... (100 %)\r\r\nWrote 849552 bytes (540193 compressed) at 0x00010000 in 5.6 seconds (effective 1207.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1647.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49116",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nIn file included from C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:7:\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'getVL53L1X':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:487:47: error: 'ulNotificationValue' undeclared (first use in this function)\r\n  487 |         if (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\r\n      |                                               ^~~~~~~~~~~~~~~~~~~\r\nC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos/task.h:2870:110: note: in definition of macro 'xTaskNotifyWait'\r\n 2870 |     xTaskGenericNotifyWait( tskDEFAULT_INDEX_TO_NOTIFY, ( ulBitsToClearOnEntry ), ( ulBitsToClearOnExit ), ( pulNotificationValue ), ( xTicksToWait ) )\r\n      |                                                                                                              ^~~~~~~~~~~~~~~~~~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:487:47: note: each undeclared identifier is reported only once for each function it appears in\r\n  487 |         if (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\r\n      |                                               ^~~~~~~~~~~~~~~~~~~\r\nC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include/freertos/task.h:2870:110: note: in definition of macro 'xTaskNotifyWait'\r\n 2870 |     xTaskGenericNotifyWait( tskDEFAULT_INDEX_TO_NOTIFY, ( ulBitsToClearOnEntry ), ( ulBitsToClearOnExit ), ( pulNotificationValue ), ( xTicksToWait ) )\r\n      |                                                                                                              ^~~~~~~~~~~~~~~~~~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'ST7789':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:921:14: warning: unused variable 'oneLidar' [-Wunused-variable]\r\n  921 |         bool oneLidar = true;\r\n      |              ^~~~~~~~\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49232",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf640 bytes. Smallest app partition is 0x100000 bytes. 0x309c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 487.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849472 bytes to 540184...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0a9... (12 %)\r\r\nWriting at 0x000347e1... (15 %)\r\r\nWriting at 0x0003c8e0... (18 %)\r\r\nWriting at 0x0004282b... (21 %)\r\r\nWriting at 0x00048b38... (24 %)\r\r\nWriting at 0x0004ea3b... (27 %)\r\r\nWriting at 0x0005480a... (30 %)\r\r\nWriting at 0x0005aab8... (33 %)\r\r\nWriting at 0x00060a14... (36 %)\r\r\nWriting at 0x00066548... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712df... (45 %)\r\r\nWriting at 0x00076266... (48 %)\r\r\nWriting at 0x0007b3cb... (51 %)\r\r\nWriting at 0x00080543... (54 %)\r\r\nWriting at 0x000858fb... (57 %)\r\r\nWriting at 0x0008ad51... (60 %)\r\r\nWriting at 0x00090b19... (63 %)\r\r\nWriting at 0x00095f78... (66 %)\r\r\nWriting at 0x0009b621... (69 %)\r\r\nWriting at 0x000a0fd0... (72 %)\r\r\nWriting at 0x000a671f... (75 %)\r\r\nWriting at 0x000ac29c... (78 %)\r\r\nWriting at 0x000b24da... (81 %)\r\r\nWriting at 0x000b7d0c... (84 %)\r\r\nWriting at 0x000bd3f0... (87 %)\r\r\nWriting at 0x000c60d0... (90 %)\r\r\nWriting at 0x000ce12a... (93 %)\r\r\nWriting at 0x000d4015... (96 %)\r\r\nWriting at 0x000da06d... (100 %)\r\r\nWrote 849472 bytes (540184 compressed) at 0x00010000 in 5.6 seconds (effective 1208.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 506.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1666.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49396",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6c0 bytes. Smallest app partition is 0x100000 bytes. 0x30940 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 469.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849600 bytes to 540189...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca85... (6 %)\r\r\nWriting at 0x00027595... (9 %)\r\r\nWriting at 0x0002c0e7... (12 %)\r\r\nWriting at 0x00034835... (15 %)\r\r\nWriting at 0x0003c924... (18 %)\r\r\nWriting at 0x000428a3... (21 %)\r\r\nWriting at 0x00048b93... (24 %)\r\r\nWriting at 0x0004eac0... (27 %)\r\r\nWriting at 0x00054887... (30 %)\r\r\nWriting at 0x0005ab1f... (33 %)\r\r\nWriting at 0x00060ac4... (36 %)\r\r\nWriting at 0x000665bf... (39 %)\r\r\nWriting at 0x0006c342... (42 %)\r\r\nWriting at 0x00071354... (45 %)\r\r\nWriting at 0x000762e3... (48 %)\r\r\nWriting at 0x0007b432... (51 %)\r\r\nWriting at 0x000805c0... (54 %)\r\r\nWriting at 0x0008597e... (57 %)\r\r\nWriting at 0x0008adce... (60 %)\r\r\nWriting at 0x00090b96... (63 %)\r\r\nWriting at 0x00095ffd... (66 %)\r\r\nWriting at 0x0009b6a5... (69 %)\r\r\nWriting at 0x000a105e... (72 %)\r\r\nWriting at 0x000a67a3... (75 %)\r\r\nWriting at 0x000ac325... (78 %)\r\r\nWriting at 0x000b2565... (81 %)\r\r\nWriting at 0x000b7d92... (84 %)\r\r\nWriting at 0x000bd467... (87 %)\r\r\nWriting at 0x000c614d... (90 %)\r\r\nWriting at 0x000ce1b5... (93 %)\r\r\nWriting at 0x000d408e... (96 %)\r\r\nWriting at 0x000da0e9... (100 %)\r\r\nWrote 849600 bytes (540189 compressed) at 0x00010000 in 5.6 seconds (effective 1204.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1678.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49544",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5e0 bytes. Smallest app partition is 0x100000 bytes. 0x30a20 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849376 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002753e... (9 %)\r\r\nWriting at 0x0002c08f... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8c5... (18 %)\r\r\nWriting at 0x000427e3... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aab2... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076272... (48 %)\r\r\nWriting at 0x0007b3c6... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f89... (66 %)\r\r\nWriting at 0x0009b632... (69 %)\r\r\nWriting at 0x000a0fec... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac2b5... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce13b... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da085... (100 %)\r\r\nWrote 849376 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1216.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 536.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1703.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49728",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'ST7789':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:1521:17: error: 'else' without a previous 'if'\r\n 1521 |                 else if (currentScreen == 1)\r\n      |                 ^~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:930:14: warning: variable 'lidarWasOn' set but not used [-Wunused-but-set-variable]\r\n  930 |         bool lidarWasOn = false;\r\n      |              ^~~~~~~~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: At top level:\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:2149:1: error: expected identifier or '(' before '}' token\r\n 2149 | }\r\n      | ^\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49744",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf560 bytes. Smallest app partition is 0x100000 bytes. 0x30aa0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 480.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849248 bytes to 539999...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caab... (6 %)\r\r\nWriting at 0x00027565... (9 %)\r\r\nWriting at 0x0002c0b9... (12 %)\r\r\nWriting at 0x00034804... (15 %)\r\r\nWriting at 0x0003c8fd... (18 %)\r\r\nWriting at 0x00042855... (21 %)\r\r\nWriting at 0x00048b5f... (24 %)\r\r\nWriting at 0x0004ea6f... (27 %)\r\r\nWriting at 0x00054816... (30 %)\r\r\nWriting at 0x0005aaf2... (33 %)\r\r\nWriting at 0x00060b03... (36 %)\r\r\nWriting at 0x00066585... (39 %)\r\r\nWriting at 0x0006c2ef... (42 %)\r\r\nWriting at 0x00071308... (45 %)\r\r\nWriting at 0x0007629d... (48 %)\r\r\nWriting at 0x0007b3cf... (51 %)\r\r\nWriting at 0x000805e6... (54 %)\r\r\nWriting at 0x0008590d... (57 %)\r\r\nWriting at 0x0008ad64... (60 %)\r\r\nWriting at 0x00090b21... (63 %)\r\r\nWriting at 0x00095f93... (66 %)\r\r\nWriting at 0x0009b635... (69 %)\r\r\nWriting at 0x000a0fd7... (72 %)\r\r\nWriting at 0x000a675f... (75 %)\r\r\nWriting at 0x000ac2a2... (78 %)\r\r\nWriting at 0x000b250f... (81 %)\r\r\nWriting at 0x000b7d3e... (84 %)\r\r\nWriting at 0x000bd410... (87 %)\r\r\nWriting at 0x000c60ce... (90 %)\r\r\nWriting at 0x000ce148... (93 %)\r\r\nWriting at 0x000d4041... (96 %)\r\r\nWriting at 0x000da067... (100 %)\r\r\nWrote 849248 bytes (539999 compressed) at 0x00010000 in 5.6 seconds (effective 1220.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 571.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1709.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49764",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6e0 bytes. Smallest app partition is 0x100000 bytes. 0x30920 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849632 bytes to 540194...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027591... (9 %)\r\r\nWriting at 0x0002c0e7... (12 %)\r\r\nWriting at 0x00034829... (15 %)\r\r\nWriting at 0x0003c91d... (18 %)\r\r\nWriting at 0x000428a7... (21 %)\r\r\nWriting at 0x00048b8c... (24 %)\r\r\nWriting at 0x0004eac3... (27 %)\r\r\nWriting at 0x00054890... (30 %)\r\r\nWriting at 0x0005ab34... (33 %)\r\r\nWriting at 0x00060ae3... (36 %)\r\r\nWriting at 0x000665d4... (39 %)\r\r\nWriting at 0x0006c345... (42 %)\r\r\nWriting at 0x0007135c... (45 %)\r\r\nWriting at 0x000762f1... (48 %)\r\r\nWriting at 0x0007b446... (51 %)\r\r\nWriting at 0x000805ce... (54 %)\r\r\nWriting at 0x00085990... (57 %)\r\r\nWriting at 0x0008adda... (60 %)\r\r\nWriting at 0x00090ba8... (63 %)\r\r\nWriting at 0x00096010... (66 %)\r\r\nWriting at 0x0009b6b8... (69 %)\r\r\nWriting at 0x000a106d... (72 %)\r\r\nWriting at 0x000a67b6... (75 %)\r\r\nWriting at 0x000ac336... (78 %)\r\r\nWriting at 0x000b2578... (81 %)\r\r\nWriting at 0x000b7dad... (84 %)\r\r\nWriting at 0x000bd476... (87 %)\r\r\nWriting at 0x000c6160... (90 %)\r\r\nWriting at 0x000ce1c5... (93 %)\r\r\nWriting at 0x000d40a4... (96 %)\r\r\nWriting at 0x000da0f9... (100 %)\r\r\nWrote 849632 bytes (540194 compressed) at 0x00010000 in 5.6 seconds (effective 1212.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 515.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1692.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_49832",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5e0 bytes. Smallest app partition is 0x100000 bytes. 0x30a20 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849376 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002753e... (9 %)\r\r\nWriting at 0x0002c08f... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8c5... (18 %)\r\r\nWriting at 0x000427e3... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aab2... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076272... (48 %)\r\r\nWriting at 0x0007b3c6... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f89... (66 %)\r\r\nWriting at 0x0009b632... (69 %)\r\r\nWriting at 0x000a0fec... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac2b5... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce13b... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da085... (100 %)\r\r\nWrote 849376 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1218.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 524.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1685.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50224",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 503.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540271...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x00027582... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034812... (15 %)\r\r\nWriting at 0x0003c90b... (18 %)\r\r\nWriting at 0x00042886... (21 %)\r\r\nWriting at 0x00048b7e... (24 %)\r\r\nWriting at 0x0004eaa8... (27 %)\r\r\nWriting at 0x00054873... (30 %)\r\r\nWriting at 0x0005ab37... (33 %)\r\r\nWriting at 0x00060a7e... (36 %)\r\r\nWriting at 0x000665ca... (39 %)\r\r\nWriting at 0x0006c34f... (42 %)\r\r\nWriting at 0x0007135f... (45 %)\r\r\nWriting at 0x000762e6... (48 %)\r\r\nWriting at 0x0007b444... (51 %)\r\r\nWriting at 0x000805be... (54 %)\r\r\nWriting at 0x00085979... (57 %)\r\r\nWriting at 0x0008adcb... (60 %)\r\r\nWriting at 0x00090b91... (63 %)\r\r\nWriting at 0x00095ff7... (66 %)\r\r\nWriting at 0x0009b69a... (69 %)\r\r\nWriting at 0x000a1049... (72 %)\r\r\nWriting at 0x000a6790... (75 %)\r\r\nWriting at 0x000ac30b... (78 %)\r\r\nWriting at 0x000b2548... (81 %)\r\r\nWriting at 0x000b7d86... (84 %)\r\r\nWriting at 0x000bd471... (87 %)\r\r\nWriting at 0x000c614f... (90 %)\r\r\nWriting at 0x000ce19d... (93 %)\r\r\nWriting at 0x000d4072... (96 %)\r\r\nWriting at 0x000da0e2... (100 %)\r\r\nWrote 849696 bytes (540271 compressed) at 0x00010000 in 5.8 seconds (effective 1181.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 567.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1620.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50228",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf660 bytes. Smallest app partition is 0x100000 bytes. 0x309a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849504 bytes to 540196...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa9... (6 %)\r\r\nWriting at 0x0002755c... (9 %)\r\r\nWriting at 0x0002c0bb... (12 %)\r\r\nWriting at 0x000347ee... (15 %)\r\r\nWriting at 0x0003c8f3... (18 %)\r\r\nWriting at 0x0004284d... (21 %)\r\r\nWriting at 0x00048b61... (24 %)\r\r\nWriting at 0x0004ea5f... (27 %)\r\r\nWriting at 0x0005482d... (30 %)\r\r\nWriting at 0x0005aacd... (33 %)\r\r\nWriting at 0x00060a30... (36 %)\r\r\nWriting at 0x0006656a... (39 %)\r\r\nWriting at 0x0006c2f2... (42 %)\r\r\nWriting at 0x00071302... (45 %)\r\r\nWriting at 0x00076289... (48 %)\r\r\nWriting at 0x0007b3ea... (51 %)\r\r\nWriting at 0x0008055d... (54 %)\r\r\nWriting at 0x00085918... (57 %)\r\r\nWriting at 0x0008ad5d... (60 %)\r\r\nWriting at 0x00090b2e... (63 %)\r\r\nWriting at 0x00095f8a... (66 %)\r\r\nWriting at 0x0009b630... (69 %)\r\r\nWriting at 0x000a0fde... (72 %)\r\r\nWriting at 0x000a6737... (75 %)\r\r\nWriting at 0x000ac2ae... (78 %)\r\r\nWriting at 0x000b24f1... (81 %)\r\r\nWriting at 0x000b7d27... (84 %)\r\r\nWriting at 0x000bd40b... (87 %)\r\r\nWriting at 0x000c60ee... (90 %)\r\r\nWriting at 0x000ce144... (93 %)\r\r\nWriting at 0x000d4030... (96 %)\r\r\nWriting at 0x000da083... (100 %)\r\r\nWrote 849504 bytes (540196 compressed) at 0x00010000 in 5.6 seconds (effective 1205.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 488.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1674.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50252",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\n\r\r\nA fatal error occurred: Could not open COM35, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50328",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf760 bytes. Smallest app partition is 0x100000 bytes. 0x308a0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849760 bytes to 540332...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x0002758c... (9 %)\r\r\nWriting at 0x0002c0dd... (12 %)\r\r\nWriting at 0x00034817... (15 %)\r\r\nWriting at 0x0003c904... (18 %)\r\r\nWriting at 0x00042889... (21 %)\r\r\nWriting at 0x00048b86... (24 %)\r\r\nWriting at 0x0004eab1... (27 %)\r\r\nWriting at 0x00054882... (30 %)\r\r\nWriting at 0x0005ab31... (33 %)\r\r\nWriting at 0x00060a65... (36 %)\r\r\nWriting at 0x000665bb... (39 %)\r\r\nWriting at 0x0006c346... (42 %)\r\r\nWriting at 0x00071353... (45 %)\r\r\nWriting at 0x000762da... (48 %)\r\r\nWriting at 0x0007b421... (51 %)\r\r\nWriting at 0x000805b4... (54 %)\r\r\nWriting at 0x00085977... (57 %)\r\r\nWriting at 0x0008ada9... (60 %)\r\r\nWriting at 0x00090b7e... (63 %)\r\r\nWriting at 0x00095fd1... (66 %)\r\r\nWriting at 0x0009b691... (69 %)\r\r\nWriting at 0x000a1040... (72 %)\r\r\nWriting at 0x000a676e... (75 %)\r\r\nWriting at 0x000ac2fb... (78 %)\r\r\nWriting at 0x000b2538... (81 %)\r\r\nWriting at 0x000b7d7e... (84 %)\r\r\nWriting at 0x000bd46d... (87 %)\r\r\nWriting at 0x000c6143... (90 %)\r\r\nWriting at 0x000ce19b... (93 %)\r\r\nWriting at 0x000d405c... (96 %)\r\r\nWriting at 0x000da0e6... (100 %)\r\r\nWrote 849760 bytes (540332 compressed) at 0x00010000 in 5.6 seconds (effective 1205.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 517.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1651.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50376",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 479.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540108...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaf... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0ac... (12 %)\r\r\nWriting at 0x000347d5... (15 %)\r\r\nWriting at 0x0003c8d7... (18 %)\r\r\nWriting at 0x0004280a... (21 %)\r\r\nWriting at 0x00048b35... (24 %)\r\r\nWriting at 0x0004ea61... (27 %)\r\r\nWriting at 0x00054834... (30 %)\r\r\nWriting at 0x0005aad8... (33 %)\r\r\nWriting at 0x00060a93... (36 %)\r\r\nWriting at 0x00066582... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x00071317... (45 %)\r\r\nWriting at 0x000762ac... (48 %)\r\r\nWriting at 0x0007b401... (51 %)\r\r\nWriting at 0x00080594... (54 %)\r\r\nWriting at 0x0008593d... (57 %)\r\r\nWriting at 0x0008ad94... (60 %)\r\r\nWriting at 0x00090b64... (63 %)\r\r\nWriting at 0x00095fbf... (66 %)\r\r\nWriting at 0x0009b666... (69 %)\r\r\nWriting at 0x000a1028... (72 %)\r\r\nWriting at 0x000a676f... (75 %)\r\r\nWriting at 0x000ac2e8... (78 %)\r\r\nWriting at 0x000b2531... (81 %)\r\r\nWriting at 0x000b7d62... (84 %)\r\r\nWriting at 0x000bd42c... (87 %)\r\r\nWriting at 0x000c611a... (90 %)\r\r\nWriting at 0x000ce17f... (93 %)\r\r\nWriting at 0x000d4071... (96 %)\r\r\nWriting at 0x000da0b7... (100 %)\r\r\nWrote 849456 bytes (540108 compressed) at 0x00010000 in 5.6 seconds (effective 1215.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1675.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50444",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf130 bytes. Smallest app partition is 0x100000 bytes. 0x30ed0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 471.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 848176 bytes to 539411...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cb04... (6 %)\r\r\nWriting at 0x000274d1... (9 %)\r\r\nWriting at 0x0002c12c... (12 %)\r\r\nWriting at 0x000347a2... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x0004273f... (21 %)\r\r\nWriting at 0x00048a9a... (24 %)\r\r\nWriting at 0x0004e9c4... (27 %)\r\r\nWriting at 0x000546de... (30 %)\r\r\nWriting at 0x0005a9cc... (33 %)\r\r\nWriting at 0x000609d2... (36 %)\r\r\nWriting at 0x00066415... (39 %)\r\r\nWriting at 0x0006c13a... (42 %)\r\r\nWriting at 0x00071179... (45 %)\r\r\nWriting at 0x00076127... (48 %)\r\r\nWriting at 0x0007b228... (51 %)\r\r\nWriting at 0x00080542... (54 %)\r\r\nWriting at 0x000857a0... (57 %)\r\r\nWriting at 0x0008ac36... (60 %)\r\r\nWriting at 0x000909a3... (63 %)\r\r\nWriting at 0x00095e29... (66 %)\r\r\nWriting at 0x0009b514... (69 %)\r\r\nWriting at 0x000a0eaf... (72 %)\r\r\nWriting at 0x000a6621... (75 %)\r\r\nWriting at 0x000ac170... (78 %)\r\r\nWriting at 0x000b23ad... (81 %)\r\r\nWriting at 0x000b7bdb... (84 %)\r\r\nWriting at 0x000bd35b... (87 %)\r\r\nWriting at 0x000c5fe3... (90 %)\r\r\nWriting at 0x000cdfd0... (93 %)\r\r\nWriting at 0x000d3f40... (96 %)\r\r\nWriting at 0x000d9f48... (100 %)\r\r\nWrote 848176 bytes (539411 compressed) at 0x00010000 in 5.7 seconds (effective 1180.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 501.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.8 seconds (effective 1647.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50520",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf750 bytes. Smallest app partition is 0x100000 bytes. 0x308b0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 494.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849744 bytes to 540292...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x00027581... (9 %)\r\r\nWriting at 0x0002c0d5... (12 %)\r\r\nWriting at 0x00034807... (15 %)\r\r\nWriting at 0x0003c8ed... (18 %)\r\r\nWriting at 0x00042881... (21 %)\r\r\nWriting at 0x00048b74... (24 %)\r\r\nWriting at 0x0004eac0... (27 %)\r\r\nWriting at 0x00054891... (30 %)\r\r\nWriting at 0x0005ab32... (33 %)\r\r\nWriting at 0x00060a6b... (36 %)\r\r\nWriting at 0x000665be... (39 %)\r\r\nWriting at 0x0006c34a... (42 %)\r\r\nWriting at 0x00071362... (45 %)\r\r\nWriting at 0x000762ed... (48 %)\r\r\nWriting at 0x0007b439... (51 %)\r\r\nWriting at 0x000805c9... (54 %)\r\r\nWriting at 0x00085989... (57 %)\r\r\nWriting at 0x0008adbb... (60 %)\r\r\nWriting at 0x00090b98... (63 %)\r\r\nWriting at 0x00096002... (66 %)\r\r\nWriting at 0x0009b6aa... (69 %)\r\r\nWriting at 0x000a105c... (72 %)\r\r\nWriting at 0x000a678d... (75 %)\r\r\nWriting at 0x000ac312... (78 %)\r\r\nWriting at 0x000b255a... (81 %)\r\r\nWriting at 0x000b7d97... (84 %)\r\r\nWriting at 0x000bd485... (87 %)\r\r\nWriting at 0x000c615f... (90 %)\r\r\nWriting at 0x000ce1b4... (93 %)\r\r\nWriting at 0x000d4086... (96 %)\r\r\nWriting at 0x000da0fb... (100 %)\r\r\nWrote 849744 bytes (540292 compressed) at 0x00010000 in 5.7 seconds (effective 1195.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 552.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1619.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50532",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540210...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8d... (6 %)\r\r\nWriting at 0x00027584... (9 %)\r\r\nWriting at 0x0002c0d9... (12 %)\r\r\nWriting at 0x00034811... (15 %)\r\r\nWriting at 0x0003c8ff... (18 %)\r\r\nWriting at 0x0004288d... (21 %)\r\r\nWriting at 0x00048b86... (24 %)\r\r\nWriting at 0x0004ead6... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab71... (33 %)\r\r\nWriting at 0x00060acb... (36 %)\r\r\nWriting at 0x00066601... (39 %)\r\r\nWriting at 0x0006c392... (42 %)\r\r\nWriting at 0x0007139d... (45 %)\r\r\nWriting at 0x00076338... (48 %)\r\r\nWriting at 0x0007b492... (51 %)\r\r\nWriting at 0x00080619... (54 %)\r\r\nWriting at 0x000859ce... (57 %)\r\r\nWriting at 0x0008ae1b... (60 %)\r\r\nWriting at 0x00090be5... (63 %)\r\r\nWriting at 0x0009604b... (66 %)\r\r\nWriting at 0x0009b6ea... (69 %)\r\r\nWriting at 0x000a109d... (72 %)\r\r\nWriting at 0x000a67f3... (75 %)\r\r\nWriting at 0x000ac36c... (78 %)\r\r\nWriting at 0x000b25af... (81 %)\r\r\nWriting at 0x000b7dd2... (84 %)\r\r\nWriting at 0x000bd4bd... (87 %)\r\r\nWriting at 0x000c619b... (90 %)\r\r\nWriting at 0x000ce200... (93 %)\r\r\nWriting at 0x000d40db... (96 %)\r\r\nWriting at 0x000da133... (100 %)\r\r\nWrote 849696 bytes (540210 compressed) at 0x00010000 in 5.6 seconds (effective 1205.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1639.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50572",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf720 bytes. Smallest app partition is 0x100000 bytes. 0x308e0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 478.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849696 bytes to 540221...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027590... (9 %)\r\r\nWriting at 0x0002c0e3... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428cf... (21 %)\r\r\nWriting at 0x00048bb4... (24 %)\r\r\nWriting at 0x0004eadb... (27 %)\r\r\nWriting at 0x000548bd... (30 %)\r\r\nWriting at 0x0005ab62... (33 %)\r\r\nWriting at 0x00060ae1... (36 %)\r\r\nWriting at 0x000665ef... (39 %)\r\r\nWriting at 0x0006c377... (42 %)\r\r\nWriting at 0x0007137c... (45 %)\r\r\nWriting at 0x00076308... (48 %)\r\r\nWriting at 0x0007b465... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859af... (57 %)\r\r\nWriting at 0x0008ae07... (60 %)\r\r\nWriting at 0x00090bcb... (63 %)\r\r\nWriting at 0x00096034... (66 %)\r\r\nWriting at 0x0009b6de... (69 %)\r\r\nWriting at 0x000a1094... (72 %)\r\r\nWriting at 0x000a67d7... (75 %)\r\r\nWriting at 0x000ac35f... (78 %)\r\r\nWriting at 0x000b259a... (81 %)\r\r\nWriting at 0x000b7dc8... (84 %)\r\r\nWriting at 0x000bd49d... (87 %)\r\r\nWriting at 0x000c6183... (90 %)\r\r\nWriting at 0x000ce1e7... (93 %)\r\r\nWriting at 0x000d40c4... (96 %)\r\r\nWriting at 0x000da11d... (100 %)\r\r\nWrote 849696 bytes (540221 compressed) at 0x00010000 in 5.6 seconds (effective 1204.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1659.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50632",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6c0 bytes. Smallest app partition is 0x100000 bytes. 0x30940 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849600 bytes to 540188...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca62... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034831... (15 %)\r\r\nWriting at 0x0003c923... (18 %)\r\r\nWriting at 0x000428a3... (21 %)\r\r\nWriting at 0x00048b92... (24 %)\r\r\nWriting at 0x0004eabf... (27 %)\r\r\nWriting at 0x00054885... (30 %)\r\r\nWriting at 0x0005ab1f... (33 %)\r\r\nWriting at 0x00060ac4... (36 %)\r\r\nWriting at 0x000665c1... (39 %)\r\r\nWriting at 0x0006c342... (42 %)\r\r\nWriting at 0x00071356... (45 %)\r\r\nWriting at 0x000762e5... (48 %)\r\r\nWriting at 0x0007b437... (51 %)\r\r\nWriting at 0x000805c1... (54 %)\r\r\nWriting at 0x0008597f... (57 %)\r\r\nWriting at 0x0008add0... (60 %)\r\r\nWriting at 0x00090b9b... (63 %)\r\r\nWriting at 0x00095ffe... (66 %)\r\r\nWriting at 0x0009b6a6... (69 %)\r\r\nWriting at 0x000a105e... (72 %)\r\r\nWriting at 0x000a67a4... (75 %)\r\r\nWriting at 0x000ac325... (78 %)\r\r\nWriting at 0x000b2565... (81 %)\r\r\nWriting at 0x000b7d92... (84 %)\r\r\nWriting at 0x000bd468... (87 %)\r\r\nWriting at 0x000c614f... (90 %)\r\r\nWriting at 0x000ce1b5... (93 %)\r\r\nWriting at 0x000d4091... (96 %)\r\r\nWriting at 0x000da0e2... (100 %)\r\r\nWrote 849600 bytes (540188 compressed) at 0x00010000 in 5.6 seconds (effective 1205.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 501.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1693.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50844",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf750 bytes. Smallest app partition is 0x100000 bytes. 0x308b0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 510.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849744 bytes to 540262...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8d... (6 %)\r\r\nWriting at 0x00027581... (9 %)\r\r\nWriting at 0x0002c0d5... (12 %)\r\r\nWriting at 0x00034806... (15 %)\r\r\nWriting at 0x0003c8ec... (18 %)\r\r\nWriting at 0x00042881... (21 %)\r\r\nWriting at 0x00048b71... (24 %)\r\r\nWriting at 0x0004eae4... (27 %)\r\r\nWriting at 0x000548bb... (30 %)\r\r\nWriting at 0x0005ab54... (33 %)\r\r\nWriting at 0x00060a92... (36 %)\r\r\nWriting at 0x000665e0... (39 %)\r\r\nWriting at 0x0006c36d... (42 %)\r\r\nWriting at 0x0007138b... (45 %)\r\r\nWriting at 0x00076314... (48 %)\r\r\nWriting at 0x0007b470... (51 %)\r\r\nWriting at 0x000805f2... (54 %)\r\r\nWriting at 0x000859b5... (57 %)\r\r\nWriting at 0x0008adf7... (60 %)\r\r\nWriting at 0x00090bc3... (63 %)\r\r\nWriting at 0x0009602e... (66 %)\r\r\nWriting at 0x0009b6d1... (69 %)\r\r\nWriting at 0x000a1081... (72 %)\r\r\nWriting at 0x000a67cd... (75 %)\r\r\nWriting at 0x000ac33c... (78 %)\r\r\nWriting at 0x000b2585... (81 %)\r\r\nWriting at 0x000b7db9... (84 %)\r\r\nWriting at 0x000bd4a7... (87 %)\r\r\nWriting at 0x000c6184... (90 %)\r\r\nWriting at 0x000ce1d6... (93 %)\r\r\nWriting at 0x000d40ae... (96 %)\r\r\nWriting at 0x000da11c... (100 %)\r\r\nWrote 849744 bytes (540262 compressed) at 0x00010000 in 5.6 seconds (effective 1203.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 559.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1624.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_50852",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf640 bytes. Smallest app partition is 0x100000 bytes. 0x309c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849472 bytes to 540138...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347cf... (15 %)\r\r\nWriting at 0x0003c8d2... (18 %)\r\r\nWriting at 0x0004280e... (21 %)\r\r\nWriting at 0x00048b3c... (24 %)\r\r\nWriting at 0x0004ea7a... (27 %)\r\r\nWriting at 0x00054840... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060a88... (36 %)\r\r\nWriting at 0x00066584... (39 %)\r\r\nWriting at 0x0006c2fb... (42 %)\r\r\nWriting at 0x0007130b... (45 %)\r\r\nWriting at 0x000762a0... (48 %)\r\r\nWriting at 0x0007b3f6... (51 %)\r\r\nWriting at 0x00080579... (54 %)\r\r\nWriting at 0x0008592b... (57 %)\r\r\nWriting at 0x0008ad80... (60 %)\r\r\nWriting at 0x00090b47... (63 %)\r\r\nWriting at 0x00095fae... (66 %)\r\r\nWriting at 0x0009b658... (69 %)\r\r\nWriting at 0x000a100d... (72 %)\r\r\nWriting at 0x000a6755... (75 %)\r\r\nWriting at 0x000ac2db... (78 %)\r\r\nWriting at 0x000b2514... (81 %)\r\r\nWriting at 0x000b7d4e... (84 %)\r\r\nWriting at 0x000bd41e... (87 %)\r\r\nWriting at 0x000c6105... (90 %)\r\r\nWriting at 0x000ce16a... (93 %)\r\r\nWriting at 0x000d405a... (96 %)\r\r\nWriting at 0x000da0a6... (100 %)\r\r\nWrote 849472 bytes (540138 compressed) at 0x00010000 in 5.6 seconds (effective 1215.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51012",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf590 bytes. Smallest app partition is 0x100000 bytes. 0x30a70 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849296 bytes to 540031...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa1... (6 %)\r\r\nWriting at 0x00027562... (9 %)\r\r\nWriting at 0x0002c0b4... (12 %)\r\r\nWriting at 0x00034812... (15 %)\r\r\nWriting at 0x0003c906... (18 %)\r\r\nWriting at 0x00042850... (21 %)\r\r\nWriting at 0x00048b5a... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x000547fa... (30 %)\r\r\nWriting at 0x0005aaa2... (33 %)\r\r\nWriting at 0x00060ad4... (36 %)\r\r\nWriting at 0x0006654d... (39 %)\r\r\nWriting at 0x0006c2cc... (42 %)\r\r\nWriting at 0x000712ee... (45 %)\r\r\nWriting at 0x00076280... (48 %)\r\r\nWriting at 0x0007b3b8... (51 %)\r\r\nWriting at 0x00080598... (54 %)\r\r\nWriting at 0x000858f7... (57 %)\r\r\nWriting at 0x0008ad4d... (60 %)\r\r\nWriting at 0x00090b17... (63 %)\r\r\nWriting at 0x00095f77... (66 %)\r\r\nWriting at 0x0009b61b... (69 %)\r\r\nWriting at 0x000a0fcf... (72 %)\r\r\nWriting at 0x000a6730... (75 %)\r\r\nWriting at 0x000ac29c... (78 %)\r\r\nWriting at 0x000b24ff... (81 %)\r\r\nWriting at 0x000b7d38... (84 %)\r\r\nWriting at 0x000bd3e2... (87 %)\r\r\nWriting at 0x000c60d3... (90 %)\r\r\nWriting at 0x000ce14f... (93 %)\r\r\nWriting at 0x000d4045... (96 %)\r\r\nWriting at 0x000da06d... (100 %)\r\r\nWrote 849296 bytes (540031 compressed) at 0x00010000 in 5.6 seconds (effective 1214.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1680.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51128",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 489.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849280 bytes to 540019...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa9... (6 %)\r\r\nWriting at 0x0002755d... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x000347fd... (15 %)\r\r\nWriting at 0x0003c8f7... (18 %)\r\r\nWriting at 0x00042854... (21 %)\r\r\nWriting at 0x00048b56... (24 %)\r\r\nWriting at 0x0004ea49... (27 %)\r\r\nWriting at 0x00054802... (30 %)\r\r\nWriting at 0x0005aab3... (33 %)\r\r\nWriting at 0x00060af6... (36 %)\r\r\nWriting at 0x0006656d... (39 %)\r\r\nWriting at 0x0006c2d9... (42 %)\r\r\nWriting at 0x00071301... (45 %)\r\r\nWriting at 0x0007628d... (48 %)\r\r\nWriting at 0x0007b3cb... (51 %)\r\r\nWriting at 0x000805bf... (54 %)\r\r\nWriting at 0x000858ff... (57 %)\r\r\nWriting at 0x0008ad55... (60 %)\r\r\nWriting at 0x00090b1b... (63 %)\r\r\nWriting at 0x00095f85... (66 %)\r\r\nWriting at 0x0009b627... (69 %)\r\r\nWriting at 0x000a0fdb... (72 %)\r\r\nWriting at 0x000a6739... (75 %)\r\r\nWriting at 0x000ac2ad... (78 %)\r\r\nWriting at 0x000b250d... (81 %)\r\r\nWriting at 0x000b7d43... (84 %)\r\r\nWriting at 0x000bd3e9... (87 %)\r\r\nWriting at 0x000c60d6... (90 %)\r\r\nWriting at 0x000ce156... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da074... (100 %)\r\r\nWrote 849280 bytes (540019 compressed) at 0x00010000 in 5.6 seconds (effective 1212.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 531.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1692.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51136",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf590 bytes. Smallest app partition is 0x100000 bytes. 0x30a70 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849296 bytes to 540039...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa8... (6 %)\r\r\nWriting at 0x00027564... (9 %)\r\r\nWriting at 0x0002c0b6... (12 %)\r\r\nWriting at 0x00034817... (15 %)\r\r\nWriting at 0x0003c908... (18 %)\r\r\nWriting at 0x00042853... (21 %)\r\r\nWriting at 0x00048b58... (24 %)\r\r\nWriting at 0x0004ea39... (27 %)\r\r\nWriting at 0x000547f0... (30 %)\r\r\nWriting at 0x0005aa99... (33 %)\r\r\nWriting at 0x00060abf... (36 %)\r\r\nWriting at 0x00066541... (39 %)\r\r\nWriting at 0x0006c2c1... (42 %)\r\r\nWriting at 0x000712c9... (45 %)\r\r\nWriting at 0x0007626c... (48 %)\r\r\nWriting at 0x0007b3ae... (51 %)\r\r\nWriting at 0x00080579... (54 %)\r\r\nWriting at 0x000858ed... (57 %)\r\r\nWriting at 0x0008ad40... (60 %)\r\r\nWriting at 0x00090b08... (63 %)\r\r\nWriting at 0x00095f6d... (66 %)\r\r\nWriting at 0x0009b612... (69 %)\r\r\nWriting at 0x000a0fc4... (72 %)\r\r\nWriting at 0x000a6721... (75 %)\r\r\nWriting at 0x000ac290... (78 %)\r\r\nWriting at 0x000b24f0... (81 %)\r\r\nWriting at 0x000b7d29... (84 %)\r\r\nWriting at 0x000bd3d6... (87 %)\r\r\nWriting at 0x000c60c8... (90 %)\r\r\nWriting at 0x000ce13c... (93 %)\r\r\nWriting at 0x000d4039... (96 %)\r\r\nWriting at 0x000da064... (100 %)\r\r\nWrote 849296 bytes (540039 compressed) at 0x00010000 in 5.6 seconds (effective 1216.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 489.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51260",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 507.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540222...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca89... (6 %)\r\r\nWriting at 0x00027578... (9 %)\r\r\nWriting at 0x0002c0c6... (12 %)\r\r\nWriting at 0x0003480a... (15 %)\r\r\nWriting at 0x0003c908... (18 %)\r\r\nWriting at 0x0004288d... (21 %)\r\r\nWriting at 0x00048b7e... (24 %)\r\r\nWriting at 0x0004ea88... (27 %)\r\r\nWriting at 0x0005485c... (30 %)\r\r\nWriting at 0x0005ab14... (33 %)\r\r\nWriting at 0x00060a76... (36 %)\r\r\nWriting at 0x000665b8... (39 %)\r\r\nWriting at 0x0006c346... (42 %)\r\r\nWriting at 0x0007134e... (45 %)\r\r\nWriting at 0x000762d7... (48 %)\r\r\nWriting at 0x0007b43c... (51 %)\r\r\nWriting at 0x000805b3... (54 %)\r\r\nWriting at 0x00085974... (57 %)\r\r\nWriting at 0x0008adcc... (60 %)\r\r\nWriting at 0x00090ba0... (63 %)\r\r\nWriting at 0x00096007... (66 %)\r\r\nWriting at 0x0009b6aa... (69 %)\r\r\nWriting at 0x000a105f... (72 %)\r\r\nWriting at 0x000a67b0... (75 %)\r\r\nWriting at 0x000ac32d... (78 %)\r\r\nWriting at 0x000b2566... (81 %)\r\r\nWriting at 0x000b7d93... (84 %)\r\r\nWriting at 0x000bd475... (87 %)\r\r\nWriting at 0x000c6156... (90 %)\r\r\nWriting at 0x000ce1b3... (93 %)\r\r\nWriting at 0x000d4098... (96 %)\r\r\nWriting at 0x000da0ec... (100 %)\r\r\nWrote 849648 bytes (540222 compressed) at 0x00010000 in 5.7 seconds (effective 1183.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 560.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1606.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51632",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system is not functioning.', None, 31))\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51872",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM6\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c1:6b:24\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 558.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eace... (27 %)\r\r\nWriting at 0x000548aa... (30 %)\r\r\nWriting at 0x0005ab58... (33 %)\r\r\nWriting at 0x00060a96... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c36f... (42 %)\r\r\nWriting at 0x00071388... (45 %)\r\r\nWriting at 0x0007630e... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008adf8... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6c0... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a67c0... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7dac... (84 %)\r\r\nWriting at 0x000bd499... (87 %)\r\r\nWriting at 0x000c6177... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da10d... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.5 seconds (effective 1227.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 549.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.6 seconds (effective 1722.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51876",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf770 bytes. Smallest app partition is 0x100000 bytes. 0x30890 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 485.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849776 bytes to 540315...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x0002758d... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034823... (15 %)\r\r\nWriting at 0x0003c916... (18 %)\r\r\nWriting at 0x000428ab... (21 %)\r\r\nWriting at 0x00048ba1... (24 %)\r\r\nWriting at 0x0004eacd... (27 %)\r\r\nWriting at 0x0005489a... (30 %)\r\r\nWriting at 0x0005ab3c... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x000665c8... (39 %)\r\r\nWriting at 0x0006c353... (42 %)\r\r\nWriting at 0x00071362... (45 %)\r\r\nWriting at 0x000762ea... (48 %)\r\r\nWriting at 0x0007b432... (51 %)\r\r\nWriting at 0x000805c3... (54 %)\r\r\nWriting at 0x00085987... (57 %)\r\r\nWriting at 0x0008adbb... (60 %)\r\r\nWriting at 0x00090b99... (63 %)\r\r\nWriting at 0x00096007... (66 %)\r\r\nWriting at 0x0009b6af... (69 %)\r\r\nWriting at 0x000a105f... (72 %)\r\r\nWriting at 0x000a6793... (75 %)\r\r\nWriting at 0x000ac314... (78 %)\r\r\nWriting at 0x000b255b... (81 %)\r\r\nWriting at 0x000b7d98... (84 %)\r\r\nWriting at 0x000bd485... (87 %)\r\r\nWriting at 0x000c6160... (90 %)\r\r\nWriting at 0x000ce1b4... (93 %)\r\r\nWriting at 0x000d407f... (96 %)\r\r\nWriting at 0x000da0ff... (100 %)\r\r\nWrote 849776 bytes (540315 compressed) at 0x00010000 in 5.7 seconds (effective 1200.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 521.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1639.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51900",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting............................\r\r\n\r\r\nA serial exception error occurred: ClearCommError failed (PermissionError(13, 'The device does not recognize the command.', None, 22))\r\r\nNote: This error originates from pySerial. It is likely not a problem with esptool, but with the hardware connection or drivers.\r\r\nFor troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_51992",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849280 bytes to 540053...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x00027562... (9 %)\r\r\nWriting at 0x0002c0b3... (12 %)\r\r\nWriting at 0x000347fe... (15 %)\r\r\nWriting at 0x0003c8ee... (18 %)\r\r\nWriting at 0x00042849... (21 %)\r\r\nWriting at 0x00048b52... (24 %)\r\r\nWriting at 0x0004ea45... (27 %)\r\r\nWriting at 0x000547f9... (30 %)\r\r\nWriting at 0x0005aa99... (33 %)\r\r\nWriting at 0x00060adb... (36 %)\r\r\nWriting at 0x00066538... (39 %)\r\r\nWriting at 0x0006c2ab... (42 %)\r\r\nWriting at 0x000712b8... (45 %)\r\r\nWriting at 0x00076258... (48 %)\r\r\nWriting at 0x0007b39c... (51 %)\r\r\nWriting at 0x00080564... (54 %)\r\r\nWriting at 0x000858d6... (57 %)\r\r\nWriting at 0x0008ad28... (60 %)\r\r\nWriting at 0x00090ae6... (63 %)\r\r\nWriting at 0x00095f4f... (66 %)\r\r\nWriting at 0x0009b5f8... (69 %)\r\r\nWriting at 0x000a0fa9... (72 %)\r\r\nWriting at 0x000a66fd... (75 %)\r\r\nWriting at 0x000ac268... (78 %)\r\r\nWriting at 0x000b24c4... (81 %)\r\r\nWriting at 0x000b7d02... (84 %)\r\r\nWriting at 0x000bd3ae... (87 %)\r\r\nWriting at 0x000c60a6... (90 %)\r\r\nWriting at 0x000ce111... (93 %)\r\r\nWriting at 0x000d4019... (96 %)\r\r\nWriting at 0x000da041... (100 %)\r\r\nWrote 849280 bytes (540053 compressed) at 0x00010000 in 5.6 seconds (effective 1223.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 537.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1702.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52080",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6f0 bytes. Smallest app partition is 0x100000 bytes. 0x30910 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849648 bytes to 540182...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x0002758c... (9 %)\r\r\nWriting at 0x0002c0df... (12 %)\r\r\nWriting at 0x0003482e... (15 %)\r\r\nWriting at 0x0003c92b... (18 %)\r\r\nWriting at 0x000428b6... (21 %)\r\r\nWriting at 0x00048b93... (24 %)\r\r\nWriting at 0x0004eae2... (27 %)\r\r\nWriting at 0x000548ad... (30 %)\r\r\nWriting at 0x0005ab61... (33 %)\r\r\nWriting at 0x00060b2c... (36 %)\r\r\nWriting at 0x00066601... (39 %)\r\r\nWriting at 0x0006c378... (42 %)\r\r\nWriting at 0x00071384... (45 %)\r\r\nWriting at 0x00076312... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805f0... (54 %)\r\r\nWriting at 0x000859ae... (57 %)\r\r\nWriting at 0x0008adfc... (60 %)\r\r\nWriting at 0x00090bd1... (63 %)\r\r\nWriting at 0x00096036... (66 %)\r\r\nWriting at 0x0009b6e9... (69 %)\r\r\nWriting at 0x000a109a... (72 %)\r\r\nWriting at 0x000a67e7... (75 %)\r\r\nWriting at 0x000ac359... (78 %)\r\r\nWriting at 0x000b25a5... (81 %)\r\r\nWriting at 0x000b7dca... (84 %)\r\r\nWriting at 0x000bd49b... (87 %)\r\r\nWriting at 0x000c618a... (90 %)\r\r\nWriting at 0x000ce1ef... (93 %)\r\r\nWriting at 0x000d40c9... (96 %)\r\r\nWriting at 0x000da122... (100 %)\r\r\nWrote 849648 bytes (540182 compressed) at 0x00010000 in 5.6 seconds (effective 1218.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 532.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1691.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52272",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf570 bytes. Smallest app partition is 0x100000 bytes. 0x30a90 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM6\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c1:6b:24\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 516.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849264 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c04e... (12 %)\r\r\nWriting at 0x000347a2... (15 %)\r\r\nWriting at 0x0003c88d... (18 %)\r\r\nWriting at 0x00042786... (21 %)\r\r\nWriting at 0x00048ab7... (24 %)\r\r\nWriting at 0x0004e9ca... (27 %)\r\r\nWriting at 0x0005476e... (30 %)\r\r\nWriting at 0x0005aa43... (33 %)\r\r\nWriting at 0x00060988... (36 %)\r\r\nWriting at 0x000664eb... (39 %)\r\r\nWriting at 0x0006c277... (42 %)\r\r\nWriting at 0x00071281... (45 %)\r\r\nWriting at 0x0007620d... (48 %)\r\r\nWriting at 0x0007b34d... (51 %)\r\r\nWriting at 0x000804db... (54 %)\r\r\nWriting at 0x0008589d... (57 %)\r\r\nWriting at 0x0008ac9a... (60 %)\r\r\nWriting at 0x00090aa9... (63 %)\r\r\nWriting at 0x00095f07... (66 %)\r\r\nWriting at 0x0009b5c8... (69 %)\r\r\nWriting at 0x000a0f78... (72 %)\r\r\nWriting at 0x000a669a... (75 %)\r\r\nWriting at 0x000ac22f... (78 %)\r\r\nWriting at 0x000b2470... (81 %)\r\r\nWriting at 0x000b7ca9... (84 %)\r\r\nWriting at 0x000bd39a... (87 %)\r\r\nWriting at 0x000c606d... (90 %)\r\r\nWriting at 0x000ce0c3... (93 %)\r\r\nWriting at 0x000d3fe2... (96 %)\r\r\nWriting at 0x000da021... (100 %)\r\r\nWrote 849264 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1218.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 547.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1677.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52560",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf580 bytes. Smallest app partition is 0x100000 bytes. 0x30a80 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849280 bytes to 540037...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa9... (6 %)\r\r\nWriting at 0x00027561... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x000347fd... (15 %)\r\r\nWriting at 0x0003c8eb... (18 %)\r\r\nWriting at 0x00042835... (21 %)\r\r\nWriting at 0x00048b4a... (24 %)\r\r\nWriting at 0x0004ea43... (27 %)\r\r\nWriting at 0x000547f8... (30 %)\r\r\nWriting at 0x0005aa9e... (33 %)\r\r\nWriting at 0x00060ae8... (36 %)\r\r\nWriting at 0x00066556... (39 %)\r\r\nWriting at 0x0006c2c2... (42 %)\r\r\nWriting at 0x000712e7... (45 %)\r\r\nWriting at 0x00076277... (48 %)\r\r\nWriting at 0x0007b3b0... (51 %)\r\r\nWriting at 0x0008058c... (54 %)\r\r\nWriting at 0x000858ee... (57 %)\r\r\nWriting at 0x0008ad45... (60 %)\r\r\nWriting at 0x00090b07... (63 %)\r\r\nWriting at 0x00095f65... (66 %)\r\r\nWriting at 0x0009b60e... (69 %)\r\r\nWriting at 0x000a0fbe... (72 %)\r\r\nWriting at 0x000a6721... (75 %)\r\r\nWriting at 0x000ac28c... (78 %)\r\r\nWriting at 0x000b24ea... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3d0... (87 %)\r\r\nWriting at 0x000c60c4... (90 %)\r\r\nWriting at 0x000ce13f... (93 %)\r\r\nWriting at 0x000d4037... (96 %)\r\r\nWriting at 0x000da061... (100 %)\r\r\nWrote 849280 bytes (540037 compressed) at 0x00010000 in 5.6 seconds (effective 1216.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 531.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1700.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52684",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5f0 bytes. Smallest app partition is 0x100000 bytes. 0x30a10 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 490.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849392 bytes to 540121...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x0002753b... (9 %)\r\r\nWriting at 0x0002c09a... (12 %)\r\r\nWriting at 0x000347d1... (15 %)\r\r\nWriting at 0x0003c8c0... (18 %)\r\r\nWriting at 0x000427e1... (21 %)\r\r\nWriting at 0x00048b18... (24 %)\r\r\nWriting at 0x0004ea1a... (27 %)\r\r\nWriting at 0x000547d5... (30 %)\r\r\nWriting at 0x0005aaa1... (33 %)\r\r\nWriting at 0x00060a06... (36 %)\r\r\nWriting at 0x0006653c... (39 %)\r\r\nWriting at 0x0006c2c3... (42 %)\r\r\nWriting at 0x000712cd... (45 %)\r\r\nWriting at 0x00076260... (48 %)\r\r\nWriting at 0x0007b3b7... (51 %)\r\r\nWriting at 0x0008053b... (54 %)\r\r\nWriting at 0x000858f7... (57 %)\r\r\nWriting at 0x0008ad50... (60 %)\r\r\nWriting at 0x00090b13... (63 %)\r\r\nWriting at 0x00095f77... (66 %)\r\r\nWriting at 0x0009b618... (69 %)\r\r\nWriting at 0x000a0fce... (72 %)\r\r\nWriting at 0x000a671e... (75 %)\r\r\nWriting at 0x000ac29f... (78 %)\r\r\nWriting at 0x000b24d9... (81 %)\r\r\nWriting at 0x000b7cfe... (84 %)\r\r\nWriting at 0x000bd3e2... (87 %)\r\r\nWriting at 0x000c60c1... (90 %)\r\r\nWriting at 0x000ce11b... (93 %)\r\r\nWriting at 0x000d401b... (96 %)\r\r\nWriting at 0x000da06b... (100 %)\r\r\nWrote 849392 bytes (540121 compressed) at 0x00010000 in 5.6 seconds (effective 1207.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 509.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1695.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52700",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540098...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca90... (6 %)\r\r\nWriting at 0x00027557... (9 %)\r\r\nWriting at 0x0002c0ab... (12 %)\r\r\nWriting at 0x000347e6... (15 %)\r\r\nWriting at 0x0003c8da... (18 %)\r\r\nWriting at 0x00042819... (21 %)\r\r\nWriting at 0x00048b34... (24 %)\r\r\nWriting at 0x0004ea6a... (27 %)\r\r\nWriting at 0x00054830... (30 %)\r\r\nWriting at 0x0005aae2... (33 %)\r\r\nWriting at 0x00060ab4... (36 %)\r\r\nWriting at 0x00066581... (39 %)\r\r\nWriting at 0x0006c308... (42 %)\r\r\nWriting at 0x0007131f... (45 %)\r\r\nWriting at 0x000762b1... (48 %)\r\r\nWriting at 0x0007b3ff... (51 %)\r\r\nWriting at 0x0008059d... (54 %)\r\r\nWriting at 0x0008593d... (57 %)\r\r\nWriting at 0x0008ad90... (60 %)\r\r\nWriting at 0x00090b50... (63 %)\r\r\nWriting at 0x00095fb4... (66 %)\r\r\nWriting at 0x0009b668... (69 %)\r\r\nWriting at 0x000a1018... (72 %)\r\r\nWriting at 0x000a6760... (75 %)\r\r\nWriting at 0x000ac2d6... (78 %)\r\r\nWriting at 0x000b251d... (81 %)\r\r\nWriting at 0x000b7d4a... (84 %)\r\r\nWriting at 0x000bd41a... (87 %)\r\r\nWriting at 0x000c6108... (90 %)\r\r\nWriting at 0x000ce16b... (93 %)\r\r\nWriting at 0x000d405f... (96 %)\r\r\nWriting at 0x000da0a3... (100 %)\r\r\nWrote 849424 bytes (540098 compressed) at 0x00010000 in 5.6 seconds (effective 1217.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 514.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1686.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52732",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 481.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540193...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x0002758e... (9 %)\r\r\nWriting at 0x0002c0e2... (12 %)\r\r\nWriting at 0x0003482f... (15 %)\r\r\nWriting at 0x0003c92e... (18 %)\r\r\nWriting at 0x000428bc... (21 %)\r\r\nWriting at 0x00048ba9... (24 %)\r\r\nWriting at 0x0004ead9... (27 %)\r\r\nWriting at 0x000548b4... (30 %)\r\r\nWriting at 0x0005ab62... (33 %)\r\r\nWriting at 0x00060b07... (36 %)\r\r\nWriting at 0x0006660a... (39 %)\r\r\nWriting at 0x0006c38b... (42 %)\r\r\nWriting at 0x00071395... (45 %)\r\r\nWriting at 0x00076326... (48 %)\r\r\nWriting at 0x0007b47b... (51 %)\r\r\nWriting at 0x00080605... (54 %)\r\r\nWriting at 0x000859c3... (57 %)\r\r\nWriting at 0x0008ae12... (60 %)\r\r\nWriting at 0x00090be3... (63 %)\r\r\nWriting at 0x00096048... (66 %)\r\r\nWriting at 0x0009b6f0... (69 %)\r\r\nWriting at 0x000a10a9... (72 %)\r\r\nWriting at 0x000a67ee... (75 %)\r\r\nWriting at 0x000ac370... (78 %)\r\r\nWriting at 0x000b25b5... (81 %)\r\r\nWriting at 0x000b7ddd... (84 %)\r\r\nWriting at 0x000bd4b0... (87 %)\r\r\nWriting at 0x000c6198... (90 %)\r\r\nWriting at 0x000ce1fd... (93 %)\r\r\nWriting at 0x000d40dd... (96 %)\r\r\nWriting at 0x000da132... (100 %)\r\r\nWrote 849680 bytes (540193 compressed) at 0x00010000 in 5.6 seconds (effective 1204.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 536.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1646.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_52876",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf540 bytes. Smallest app partition is 0x100000 bytes. 0x30ac0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849216 bytes to 540004...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x00027541... (9 %)\r\r\nWriting at 0x0002c097... (12 %)\r\r\nWriting at 0x000347f6... (15 %)\r\r\nWriting at 0x0003c8d5... (18 %)\r\r\nWriting at 0x000427ce... (21 %)\r\r\nWriting at 0x00048b06... (24 %)\r\r\nWriting at 0x0004ea01... (27 %)\r\r\nWriting at 0x000547c0... (30 %)\r\r\nWriting at 0x0005aa6b... (33 %)\r\r\nWriting at 0x00060a46... (36 %)\r\r\nWriting at 0x0006650b... (39 %)\r\r\nWriting at 0x0006c285... (42 %)\r\r\nWriting at 0x0007128d... (45 %)\r\r\nWriting at 0x0007622a... (48 %)\r\r\nWriting at 0x0007b37e... (51 %)\r\r\nWriting at 0x00080530... (54 %)\r\r\nWriting at 0x000858c8... (57 %)\r\r\nWriting at 0x0008ad11... (60 %)\r\r\nWriting at 0x00090af0... (63 %)\r\r\nWriting at 0x00095f55... (66 %)\r\r\nWriting at 0x0009b5fe... (69 %)\r\r\nWriting at 0x000a0fac... (72 %)\r\r\nWriting at 0x000a670a... (75 %)\r\r\nWriting at 0x000ac278... (78 %)\r\r\nWriting at 0x000b24d8... (81 %)\r\r\nWriting at 0x000b7d0b... (84 %)\r\r\nWriting at 0x000bd3ba... (87 %)\r\r\nWriting at 0x000c60a7... (90 %)\r\r\nWriting at 0x000ce11b... (93 %)\r\r\nWriting at 0x000d4021... (96 %)\r\r\nWriting at 0x000da049... (100 %)\r\r\nWrote 849216 bytes (540004 compressed) at 0x00010000 in 5.6 seconds (effective 1203.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 485.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1665.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_53012",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849456 bytes to 540108...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caaf... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0ac... (12 %)\r\r\nWriting at 0x000347d5... (15 %)\r\r\nWriting at 0x0003c8d7... (18 %)\r\r\nWriting at 0x0004280a... (21 %)\r\r\nWriting at 0x00048b35... (24 %)\r\r\nWriting at 0x0004ea61... (27 %)\r\r\nWriting at 0x00054834... (30 %)\r\r\nWriting at 0x0005aad8... (33 %)\r\r\nWriting at 0x00060a93... (36 %)\r\r\nWriting at 0x00066582... (39 %)\r\r\nWriting at 0x0006c307... (42 %)\r\r\nWriting at 0x00071317... (45 %)\r\r\nWriting at 0x000762ac... (48 %)\r\r\nWriting at 0x0007b401... (51 %)\r\r\nWriting at 0x00080594... (54 %)\r\r\nWriting at 0x0008593d... (57 %)\r\r\nWriting at 0x0008ad94... (60 %)\r\r\nWriting at 0x00090b64... (63 %)\r\r\nWriting at 0x00095fbf... (66 %)\r\r\nWriting at 0x0009b666... (69 %)\r\r\nWriting at 0x000a1028... (72 %)\r\r\nWriting at 0x000a676f... (75 %)\r\r\nWriting at 0x000ac2e8... (78 %)\r\r\nWriting at 0x000b2531... (81 %)\r\r\nWriting at 0x000b7d62... (84 %)\r\r\nWriting at 0x000bd42c... (87 %)\r\r\nWriting at 0x000c611a... (90 %)\r\r\nWriting at 0x000ce17f... (93 %)\r\r\nWriting at 0x000d4071... (96 %)\r\r\nWriting at 0x000da0b7... (100 %)\r\r\nWrote 849456 bytes (540108 compressed) at 0x00010000 in 5.6 seconds (effective 1215.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1698.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_53044",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf610 bytes. Smallest app partition is 0x100000 bytes. 0x309f0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849424 bytes to 540098...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027559... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e3... (15 %)\r\r\nWriting at 0x0003c8e2... (18 %)\r\r\nWriting at 0x00042813... (21 %)\r\r\nWriting at 0x00048b3b... (24 %)\r\r\nWriting at 0x0004ea87... (27 %)\r\r\nWriting at 0x00054846... (30 %)\r\r\nWriting at 0x0005aae9... (33 %)\r\r\nWriting at 0x00060af8... (36 %)\r\r\nWriting at 0x0006658a... (39 %)\r\r\nWriting at 0x0006c300... (42 %)\r\r\nWriting at 0x0007130a... (45 %)\r\r\nWriting at 0x000762a2... (48 %)\r\r\nWriting at 0x0007b3f5... (51 %)\r\r\nWriting at 0x0008058d... (54 %)\r\r\nWriting at 0x0008592d... (57 %)\r\r\nWriting at 0x0008ad81... (60 %)\r\r\nWriting at 0x00090b4e... (63 %)\r\r\nWriting at 0x00095fb1... (66 %)\r\r\nWriting at 0x0009b662... (69 %)\r\r\nWriting at 0x000a1013... (72 %)\r\r\nWriting at 0x000a6760... (75 %)\r\r\nWriting at 0x000ac2d3... (78 %)\r\r\nWriting at 0x000b2522... (81 %)\r\r\nWriting at 0x000b7d59... (84 %)\r\r\nWriting at 0x000bd418... (87 %)\r\r\nWriting at 0x000c6107... (90 %)\r\r\nWriting at 0x000ce169... (93 %)\r\r\nWriting at 0x000d405b... (96 %)\r\r\nWriting at 0x000da0a1... (100 %)\r\r\nWrote 849424 bytes (540098 compressed) at 0x00010000 in 5.6 seconds (effective 1209.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1677.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_53320",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 474.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849616 bytes to 540163...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca62... (6 %)\r\r\nWriting at 0x00027594... (9 %)\r\r\nWriting at 0x0002c0e7... (12 %)\r\r\nWriting at 0x00034834... (15 %)\r\r\nWriting at 0x0003c92e... (18 %)\r\r\nWriting at 0x000428cd... (21 %)\r\r\nWriting at 0x00048bac... (24 %)\r\r\nWriting at 0x0004eac9... (27 %)\r\r\nWriting at 0x00054891... (30 %)\r\r\nWriting at 0x0005ab42... (33 %)\r\r\nWriting at 0x00060b10... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c364... (42 %)\r\r\nWriting at 0x00071371... (45 %)\r\r\nWriting at 0x00076303... (48 %)\r\r\nWriting at 0x0007b454... (51 %)\r\r\nWriting at 0x000805ef... (54 %)\r\r\nWriting at 0x000859a2... (57 %)\r\r\nWriting at 0x0008adf4... (60 %)\r\r\nWriting at 0x00090bbe... (63 %)\r\r\nWriting at 0x00096025... (66 %)\r\r\nWriting at 0x0009b6da... (69 %)\r\r\nWriting at 0x000a1088... (72 %)\r\r\nWriting at 0x000a67da... (75 %)\r\r\nWriting at 0x000ac34a... (78 %)\r\r\nWriting at 0x000b259c... (81 %)\r\r\nWriting at 0x000b7dcd... (84 %)\r\r\nWriting at 0x000bd48d... (87 %)\r\r\nWriting at 0x000c6182... (90 %)\r\r\nWriting at 0x000ce1e6... (93 %)\r\r\nWriting at 0x000d40c7... (96 %)\r\r\nWriting at 0x000da115... (100 %)\r\r\nWrote 849616 bytes (540163 compressed) at 0x00010000 in 5.8 seconds (effective 1175.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 518.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1626.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_53324",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 486.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540141...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9b... (6 %)\r\r\nWriting at 0x00027596... (9 %)\r\r\nWriting at 0x0002c0ed... (12 %)\r\r\nWriting at 0x0003482c... (15 %)\r\r\nWriting at 0x0003c927... (18 %)\r\r\nWriting at 0x000428bb... (21 %)\r\r\nWriting at 0x00048ba6... (24 %)\r\r\nWriting at 0x0004ead3... (27 %)\r\r\nWriting at 0x0005487a... (30 %)\r\r\nWriting at 0x0005ab1d... (33 %)\r\r\nWriting at 0x00060b07... (36 %)\r\r\nWriting at 0x000665c1... (39 %)\r\r\nWriting at 0x0006c33e... (42 %)\r\r\nWriting at 0x00071356... (45 %)\r\r\nWriting at 0x000762f1... (48 %)\r\r\nWriting at 0x0007b446... (51 %)\r\r\nWriting at 0x000805eb... (54 %)\r\r\nWriting at 0x0008598e... (57 %)\r\r\nWriting at 0x0008ade2... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x00096021... (66 %)\r\r\nWriting at 0x0009b6cd... (69 %)\r\r\nWriting at 0x000a1079... (72 %)\r\r\nWriting at 0x000a67d1... (75 %)\r\r\nWriting at 0x000ac338... (78 %)\r\r\nWriting at 0x000b259e... (81 %)\r\r\nWriting at 0x000b7dc9... (84 %)\r\r\nWriting at 0x000bd47c... (87 %)\r\r\nWriting at 0x000c6172... (90 %)\r\r\nWriting at 0x000ce1df... (93 %)\r\r\nWriting at 0x000d40b8... (96 %)\r\r\nWriting at 0x000da106... (100 %)\r\r\nWrote 849568 bytes (540141 compressed) at 0x00010000 in 5.6 seconds (effective 1207.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 545.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1658.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_54652",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 493.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540190...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa3... (6 %)\r\r\nWriting at 0x00027592... (9 %)\r\r\nWriting at 0x0002c0e7... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c932... (18 %)\r\r\nWriting at 0x000428c5... (21 %)\r\r\nWriting at 0x00048bad... (24 %)\r\r\nWriting at 0x0004eadc... (27 %)\r\r\nWriting at 0x000548b5... (30 %)\r\r\nWriting at 0x0005ab63... (33 %)\r\r\nWriting at 0x00060b14... (36 %)\r\r\nWriting at 0x0006660c... (39 %)\r\r\nWriting at 0x0006c38d... (42 %)\r\r\nWriting at 0x00071399... (45 %)\r\r\nWriting at 0x00076328... (48 %)\r\r\nWriting at 0x0007b47e... (51 %)\r\r\nWriting at 0x00080606... (54 %)\r\r\nWriting at 0x000859c7... (57 %)\r\r\nWriting at 0x0008ae14... (60 %)\r\r\nWriting at 0x00090be6... (63 %)\r\r\nWriting at 0x0009604a... (66 %)\r\r\nWriting at 0x0009b6f2... (69 %)\r\r\nWriting at 0x000a10ae... (72 %)\r\r\nWriting at 0x000a67f3... (75 %)\r\r\nWriting at 0x000ac372... (78 %)\r\r\nWriting at 0x000b25b7... (81 %)\r\r\nWriting at 0x000b7ddf... (84 %)\r\r\nWriting at 0x000bd4b1... (87 %)\r\r\nWriting at 0x000c6199... (90 %)\r\r\nWriting at 0x000ce201... (93 %)\r\r\nWriting at 0x000d40df... (96 %)\r\r\nWriting at 0x000da134... (100 %)\r\r\nWrote 849680 bytes (540190 compressed) at 0x00010000 in 5.6 seconds (effective 1203.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 499.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1640.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55236",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf4f0 bytes. Smallest app partition is 0x100000 bytes. 0x30b10 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 498.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849136 bytes to 540060...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca47... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c04d... (12 %)\r\r\nWriting at 0x000347c2... (15 %)\r\r\nWriting at 0x0003c896... (18 %)\r\r\nWriting at 0x0004277f... (21 %)\r\r\nWriting at 0x00048aa6... (24 %)\r\r\nWriting at 0x0004e95d... (27 %)\r\r\nWriting at 0x00054709... (30 %)\r\r\nWriting at 0x0005a9c1... (33 %)\r\r\nWriting at 0x0006090f... (36 %)\r\r\nWriting at 0x0006646c... (39 %)\r\r\nWriting at 0x0006c1f6... (42 %)\r\r\nWriting at 0x000711fd... (45 %)\r\r\nWriting at 0x00076192... (48 %)\r\r\nWriting at 0x0007b2d2... (51 %)\r\r\nWriting at 0x00080463... (54 %)\r\r\nWriting at 0x0008582c... (57 %)\r\r\nWriting at 0x0008ac49... (60 %)\r\r\nWriting at 0x00090a37... (63 %)\r\r\nWriting at 0x00095e8f... (66 %)\r\r\nWriting at 0x0009b54a... (69 %)\r\r\nWriting at 0x000a0efe... (72 %)\r\r\nWriting at 0x000a6622... (75 %)\r\r\nWriting at 0x000ac1b5... (78 %)\r\r\nWriting at 0x000b23ef... (81 %)\r\r\nWriting at 0x000b7c32... (84 %)\r\r\nWriting at 0x000bd324... (87 %)\r\r\nWriting at 0x000c5ff7... (90 %)\r\r\nWriting at 0x000ce051... (93 %)\r\r\nWriting at 0x000d3f7d... (96 %)\r\r\nWriting at 0x000d9fae... (100 %)\r\r\nWrote 849136 bytes (540060 compressed) at 0x00010000 in 5.8 seconds (effective 1161.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 563.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1602.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_5524",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540133...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca40... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x00034795... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x0004276e... (21 %)\r\r\nWriting at 0x00048aab... (24 %)\r\r\nWriting at 0x0004eaca... (27 %)\r\r\nWriting at 0x0005487f... (30 %)\r\r\nWriting at 0x0005ab44... (33 %)\r\r\nWriting at 0x00060a82... (36 %)\r\r\nWriting at 0x000665cf... (39 %)\r\r\nWriting at 0x0006c35c... (42 %)\r\r\nWriting at 0x00071373... (45 %)\r\r\nWriting at 0x000762e6... (48 %)\r\r\nWriting at 0x0007b432... (51 %)\r\r\nWriting at 0x000805b7... (54 %)\r\r\nWriting at 0x00085982... (57 %)\r\r\nWriting at 0x0008ad84... (60 %)\r\r\nWriting at 0x00090b8a... (63 %)\r\r\nWriting at 0x00095fc9... (66 %)\r\r\nWriting at 0x0009b6aa... (69 %)\r\r\nWriting at 0x000a1058... (72 %)\r\r\nWriting at 0x000a6781... (75 %)\r\r\nWriting at 0x000ac317... (78 %)\r\r\nWriting at 0x000b2548... (81 %)\r\r\nWriting at 0x000b7d92... (84 %)\r\r\nWriting at 0x000bd488... (87 %)\r\r\nWriting at 0x000c6156... (90 %)\r\r\nWriting at 0x000ce1ac... (93 %)\r\r\nWriting at 0x000d40b5... (96 %)\r\r\nWriting at 0x000da103... (100 %)\r\r\nWrote 849552 bytes (540133 compressed) at 0x00010000 in 5.7 seconds (effective 1188.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 513.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 423547...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dbc... (76 %)\r\r\nWriting at 0x0016b389... (80 %)\r\r\nWriting at 0x0016f7b0... (84 %)\r\r\nWriting at 0x0017411a... (88 %)\r\r\nWriting at 0x00178dd7... (92 %)\r\r\nWriting at 0x0017fcf9... (96 %)\r\r\nWriting at 0x001934d3... (100 %)\r\r\nWrote 983040 bytes (423547 compressed) at 0x00110000 in 4.8 seconds (effective 1623.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55240",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf730 bytes. Smallest app partition is 0x100000 bytes. 0x308d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting....\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 492.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849712 bytes to 540363...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cab3... (6 %)\r\r\nWriting at 0x0002757b... (9 %)\r\r\nWriting at 0x0002c0c9... (12 %)\r\r\nWriting at 0x00034805... (15 %)\r\r\nWriting at 0x0003c8f8... (18 %)\r\r\nWriting at 0x00042873... (21 %)\r\r\nWriting at 0x00048b70... (24 %)\r\r\nWriting at 0x0004ea33... (27 %)\r\r\nWriting at 0x00054805... (30 %)\r\r\nWriting at 0x0005aac2... (33 %)\r\r\nWriting at 0x00060a1e... (36 %)\r\r\nWriting at 0x0006656b... (39 %)\r\r\nWriting at 0x0006c2f1... (42 %)\r\r\nWriting at 0x00071306... (45 %)\r\r\nWriting at 0x00076265... (48 %)\r\r\nWriting at 0x0007b3cb... (51 %)\r\r\nWriting at 0x0008053d... (54 %)\r\r\nWriting at 0x00085915... (57 %)\r\r\nWriting at 0x0008ad13... (60 %)\r\r\nWriting at 0x00090b25... (63 %)\r\r\nWriting at 0x00095f46... (66 %)\r\r\nWriting at 0x0009b646... (69 %)\r\r\nWriting at 0x000a0ff4... (72 %)\r\r\nWriting at 0x000a671b... (75 %)\r\r\nWriting at 0x000ac2a6... (78 %)\r\r\nWriting at 0x000b24df... (81 %)\r\r\nWriting at 0x000b7d31... (84 %)\r\r\nWriting at 0x000bd429... (87 %)\r\r\nWriting at 0x000c60f7... (90 %)\r\r\nWriting at 0x000ce150... (93 %)\r\r\nWriting at 0x000d400b... (96 %)\r\r\nWriting at 0x000da096... (100 %)\r\r\nWrote 849712 bytes (540363 compressed) at 0x00010000 in 5.8 seconds (effective 1163.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 569.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1612.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55368",
    "content": "[1/11] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/11] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj\r\r\nFAILED: esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj \r\r\nccache C:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/config -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/platform_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include/freertos -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/arch/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/include/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/. -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/private_include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/log/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/platform_port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/include/private -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/include/apps/sntp -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/include/arch -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/analog_comparator/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/dac/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/parlio/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdio_slave/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/library -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/wifi_apps/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/console -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/interface -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/common -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/security -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/include/transports -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/include/port/xtensa -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/include/esp32s3 -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/include -IC:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/include -IC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789 -mlongcalls  -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway=. -fmacro-prefix-map=C:/Espressif/frameworks/esp-idf-v5.1.2=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -MD -MT esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -MF esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj.d -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\r\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c: In function 'ST7789':\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:956:13: error: this 'else' clause does not guard... [-Werror=misleading-indentation]\r\n  956 |             else\r\n      |             ^~~~\r\nC:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c:959:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'\r\n  959 |                 if (gpio_get_level(BUTTON_3) == 0)\r\n      |                 ^~\r\ncc1.exe: some warnings being treated as errors\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55484",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 482.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540102...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca95... (6 %)\r\r\nWriting at 0x0002758d... (9 %)\r\r\nWriting at 0x0002c0e4... (12 %)\r\r\nWriting at 0x00034817... (15 %)\r\r\nWriting at 0x0003c90e... (18 %)\r\r\nWriting at 0x0004289d... (21 %)\r\r\nWriting at 0x00048b9e... (24 %)\r\r\nWriting at 0x0004eab0... (27 %)\r\r\nWriting at 0x00054886... (30 %)\r\r\nWriting at 0x0005ab3b... (33 %)\r\r\nWriting at 0x00060b12... (36 %)\r\r\nWriting at 0x000665c7... (39 %)\r\r\nWriting at 0x0006c33d... (42 %)\r\r\nWriting at 0x00071359... (45 %)\r\r\nWriting at 0x000762f0... (48 %)\r\r\nWriting at 0x0007b443... (51 %)\r\r\nWriting at 0x000805ef... (54 %)\r\r\nWriting at 0x00085991... (57 %)\r\r\nWriting at 0x0008adec... (60 %)\r\r\nWriting at 0x00090bb7... (63 %)\r\r\nWriting at 0x0009601f... (66 %)\r\r\nWriting at 0x0009b6c7... (69 %)\r\r\nWriting at 0x000a1077... (72 %)\r\r\nWriting at 0x000a67d0... (75 %)\r\r\nWriting at 0x000ac346... (78 %)\r\r\nWriting at 0x000b25b0... (81 %)\r\r\nWriting at 0x000b7ded... (84 %)\r\r\nWriting at 0x000bd493... (87 %)\r\r\nWriting at 0x000c6183... (90 %)\r\r\nWriting at 0x000ce203... (93 %)\r\r\nWriting at 0x000d40d8... (96 %)\r\r\nWriting at 0x000da11c... (100 %)\r\r\nWrote 849552 bytes (540102 compressed) at 0x00010000 in 5.6 seconds (effective 1220.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 557.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1707.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55560",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf740 bytes. Smallest app partition is 0x100000 bytes. 0x308c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM5\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:96:d8\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 561.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849728 bytes to 540264...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca91... (6 %)\r\r\nWriting at 0x0002757f... (9 %)\r\r\nWriting at 0x0002c0d2... (12 %)\r\r\nWriting at 0x00034803... (15 %)\r\r\nWriting at 0x0003c8e9... (18 %)\r\r\nWriting at 0x00042872... (21 %)\r\r\nWriting at 0x00048b73... (24 %)\r\r\nWriting at 0x0004eace... (27 %)\r\r\nWriting at 0x000548aa... (30 %)\r\r\nWriting at 0x0005ab58... (33 %)\r\r\nWriting at 0x00060a96... (36 %)\r\r\nWriting at 0x000665e5... (39 %)\r\r\nWriting at 0x0006c36f... (42 %)\r\r\nWriting at 0x00071388... (45 %)\r\r\nWriting at 0x0007630e... (48 %)\r\r\nWriting at 0x0007b46a... (51 %)\r\r\nWriting at 0x000805ea... (54 %)\r\r\nWriting at 0x000859b1... (57 %)\r\r\nWriting at 0x0008adf8... (60 %)\r\r\nWriting at 0x00090bb6... (63 %)\r\r\nWriting at 0x0009601b... (66 %)\r\r\nWriting at 0x0009b6c0... (69 %)\r\r\nWriting at 0x000a1070... (72 %)\r\r\nWriting at 0x000a67c0... (75 %)\r\r\nWriting at 0x000ac330... (78 %)\r\r\nWriting at 0x000b2573... (81 %)\r\r\nWriting at 0x000b7dac... (84 %)\r\r\nWriting at 0x000bd499... (87 %)\r\r\nWriting at 0x000c6177... (90 %)\r\r\nWriting at 0x000ce1ca... (93 %)\r\r\nWriting at 0x000d40a2... (96 %)\r\r\nWriting at 0x000da10d... (100 %)\r\r\nWrote 849728 bytes (540264 compressed) at 0x00010000 in 5.6 seconds (effective 1216.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 566.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.6 seconds (effective 1699.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55924",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf100 bytes. Smallest app partition is 0x100000 bytes. 0x30f00 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 491.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 848128 bytes to 539306...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cb06... (6 %)\r\r\nWriting at 0x000274de... (9 %)\r\r\nWriting at 0x0002c14c... (12 %)\r\r\nWriting at 0x000347b9... (15 %)\r\r\nWriting at 0x0003c8a6... (18 %)\r\r\nWriting at 0x000427a1... (21 %)\r\r\nWriting at 0x00048ad3... (24 %)\r\r\nWriting at 0x0004e9e4... (27 %)\r\r\nWriting at 0x0005472b... (30 %)\r\r\nWriting at 0x0005aa18... (33 %)\r\r\nWriting at 0x00060a2b... (36 %)\r\r\nWriting at 0x0006645c... (39 %)\r\r\nWriting at 0x0006c192... (42 %)\r\r\nWriting at 0x000711d1... (45 %)\r\r\nWriting at 0x0007618d... (48 %)\r\r\nWriting at 0x0007b280... (51 %)\r\r\nWriting at 0x000805a4... (54 %)\r\r\nWriting at 0x00085814... (57 %)\r\r\nWriting at 0x0008aca8... (60 %)\r\r\nWriting at 0x000909e0... (63 %)\r\r\nWriting at 0x00095e8a... (66 %)\r\r\nWriting at 0x0009b582... (69 %)\r\r\nWriting at 0x000a0f14... (72 %)\r\r\nWriting at 0x000a668f... (75 %)\r\r\nWriting at 0x000ac1c8... (78 %)\r\r\nWriting at 0x000b23f5... (81 %)\r\r\nWriting at 0x000b7c27... (84 %)\r\r\nWriting at 0x000bd3a5... (87 %)\r\r\nWriting at 0x000c6029... (90 %)\r\r\nWriting at 0x000ce00c... (93 %)\r\r\nWriting at 0x000d3f89... (96 %)\r\r\nWriting at 0x000d9f92... (100 %)\r\r\nWrote 848128 bytes (539306 compressed) at 0x00010000 in 5.6 seconds (effective 1201.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.1 seconds (effective 489.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1691.7 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_55932",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf640 bytes. Smallest app partition is 0x100000 bytes. 0x309c0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 495.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849472 bytes to 540151...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8f... (6 %)\r\r\nWriting at 0x00027554... (9 %)\r\r\nWriting at 0x0002c0b0... (12 %)\r\r\nWriting at 0x000347d5... (15 %)\r\r\nWriting at 0x0003c8da... (18 %)\r\r\nWriting at 0x00042811... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea56... (27 %)\r\r\nWriting at 0x00054820... (30 %)\r\r\nWriting at 0x0005aad2... (33 %)\r\r\nWriting at 0x00060a48... (36 %)\r\r\nWriting at 0x0006656e... (39 %)\r\r\nWriting at 0x0006c2ef... (42 %)\r\r\nWriting at 0x000712f5... (45 %)\r\r\nWriting at 0x00076286... (48 %)\r\r\nWriting at 0x0007b3e8... (51 %)\r\r\nWriting at 0x00080565... (54 %)\r\r\nWriting at 0x00085918... (57 %)\r\r\nWriting at 0x0008ad67... (60 %)\r\r\nWriting at 0x00090b3b... (63 %)\r\r\nWriting at 0x00095f9f... (66 %)\r\r\nWriting at 0x0009b646... (69 %)\r\r\nWriting at 0x000a0ff7... (72 %)\r\r\nWriting at 0x000a6747... (75 %)\r\r\nWriting at 0x000ac2c8... (78 %)\r\r\nWriting at 0x000b2504... (81 %)\r\r\nWriting at 0x000b7d36... (84 %)\r\r\nWriting at 0x000bd40d... (87 %)\r\r\nWriting at 0x000c60f2... (90 %)\r\r\nWriting at 0x000ce152... (93 %)\r\r\nWriting at 0x000d4041... (96 %)\r\r\nWriting at 0x000da08f... (100 %)\r\r\nWrote 849472 bytes (540151 compressed) at 0x00010000 in 5.6 seconds (effective 1219.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 534.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1700.9 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_6236",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 472.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540115...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca38... (6 %)\r\r\nWriting at 0x000274f7... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x0003479c... (15 %)\r\r\nWriting at 0x0003c892... (18 %)\r\r\nWriting at 0x00042772... (21 %)\r\r\nWriting at 0x00048ab1... (24 %)\r\r\nWriting at 0x0004eaba... (27 %)\r\r\nWriting at 0x00054876... (30 %)\r\r\nWriting at 0x0005ab39... (33 %)\r\r\nWriting at 0x00060a89... (36 %)\r\r\nWriting at 0x000665dd... (39 %)\r\r\nWriting at 0x0006c364... (42 %)\r\r\nWriting at 0x00071385... (45 %)\r\r\nWriting at 0x0007630f... (48 %)\r\r\nWriting at 0x0007b449... (51 %)\r\r\nWriting at 0x000805dc... (54 %)\r\r\nWriting at 0x00085996... (57 %)\r\r\nWriting at 0x0008ad98... (60 %)\r\r\nWriting at 0x00090baa... (63 %)\r\r\nWriting at 0x00095ffe... (66 %)\r\r\nWriting at 0x0009b6c3... (69 %)\r\r\nWriting at 0x000a1076... (72 %)\r\r\nWriting at 0x000a6799... (75 %)\r\r\nWriting at 0x000ac32f... (78 %)\r\r\nWriting at 0x000b2569... (81 %)\r\r\nWriting at 0x000b7dad... (84 %)\r\r\nWriting at 0x000bd49f... (87 %)\r\r\nWriting at 0x000c616f... (90 %)\r\r\nWriting at 0x000ce1c8... (93 %)\r\r\nWriting at 0x000d40cf... (96 %)\r\r\nWriting at 0x000da11c... (100 %)\r\r\nWrote 849568 bytes (540115 compressed) at 0x00010000 in 5.7 seconds (effective 1188.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 519.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.0 seconds (effective 1564.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_6252",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540184...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca99... (6 %)\r\r\nWriting at 0x00027594... (9 %)\r\r\nWriting at 0x0002c0e9... (12 %)\r\r\nWriting at 0x00034847... (15 %)\r\r\nWriting at 0x0003c947... (18 %)\r\r\nWriting at 0x000428e1... (21 %)\r\r\nWriting at 0x00048bc9... (24 %)\r\r\nWriting at 0x0004eae3... (27 %)\r\r\nWriting at 0x000548c3... (30 %)\r\r\nWriting at 0x0005ab60... (33 %)\r\r\nWriting at 0x00060b17... (36 %)\r\r\nWriting at 0x00066603... (39 %)\r\r\nWriting at 0x0006c388... (42 %)\r\r\nWriting at 0x00071390... (45 %)\r\r\nWriting at 0x00076322... (48 %)\r\r\nWriting at 0x0007b479... (51 %)\r\r\nWriting at 0x00080603... (54 %)\r\r\nWriting at 0x000859c1... (57 %)\r\r\nWriting at 0x0008ae17... (60 %)\r\r\nWriting at 0x00090be0... (63 %)\r\r\nWriting at 0x0009604c... (66 %)\r\r\nWriting at 0x0009b700... (69 %)\r\r\nWriting at 0x000a10b0... (72 %)\r\r\nWriting at 0x000a67fe... (75 %)\r\r\nWriting at 0x000ac372... (78 %)\r\r\nWriting at 0x000b25be... (81 %)\r\r\nWriting at 0x000b7deb... (84 %)\r\r\nWriting at 0x000bd4b0... (87 %)\r\r\nWriting at 0x000c619f... (90 %)\r\r\nWriting at 0x000ce205... (93 %)\r\r\nWriting at 0x000d40e1... (96 %)\r\r\nWriting at 0x000da135... (100 %)\r\r\nWrote 849680 bytes (540184 compressed) at 0x00010000 in 5.7 seconds (effective 1201.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 533.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1645.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_6284",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 475.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540181...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0ad... (12 %)\r\r\nWriting at 0x000347fd... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x00042852... (21 %)\r\r\nWriting at 0x00048b61... (24 %)\r\r\nWriting at 0x0004ea85... (27 %)\r\r\nWriting at 0x0005485e... (30 %)\r\r\nWriting at 0x0005aafd... (33 %)\r\r\nWriting at 0x00060a6d... (36 %)\r\r\nWriting at 0x000665aa... (39 %)\r\r\nWriting at 0x0006c32d... (42 %)\r\r\nWriting at 0x0007133a... (45 %)\r\r\nWriting at 0x000762c0... (48 %)\r\r\nWriting at 0x0007b422... (51 %)\r\r\nWriting at 0x000805a0... (54 %)\r\r\nWriting at 0x00085950... (57 %)\r\r\nWriting at 0x0008ada9... (60 %)\r\r\nWriting at 0x00090b7b... (63 %)\r\r\nWriting at 0x00095fd6... (66 %)\r\r\nWriting at 0x0009b67d... (69 %)\r\r\nWriting at 0x000a102d... (72 %)\r\r\nWriting at 0x000a6784... (75 %)\r\r\nWriting at 0x000ac2f9... (78 %)\r\r\nWriting at 0x000b2538... (81 %)\r\r\nWriting at 0x000b7d6a... (84 %)\r\r\nWriting at 0x000bd44e... (87 %)\r\r\nWriting at 0x000c612d... (90 %)\r\r\nWriting at 0x000ce18a... (93 %)\r\r\nWriting at 0x000d4074... (96 %)\r\r\nWriting at 0x000da0ca... (100 %)\r\r\nWrote 849552 bytes (540181 compressed) at 0x00010000 in 5.7 seconds (effective 1200.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 503.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_6588",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 511.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540143...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3b... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c89d... (18 %)\r\r\nWriting at 0x00042797... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004e9b3... (27 %)\r\r\nWriting at 0x0005476b... (30 %)\r\r\nWriting at 0x0005aa18... (33 %)\r\r\nWriting at 0x00060978... (36 %)\r\r\nWriting at 0x000664c8... (39 %)\r\r\nWriting at 0x0006c25a... (42 %)\r\r\nWriting at 0x0007126f... (45 %)\r\r\nWriting at 0x000761df... (48 %)\r\r\nWriting at 0x0007b331... (51 %)\r\r\nWriting at 0x000804a9... (54 %)\r\r\nWriting at 0x00085885... (57 %)\r\r\nWriting at 0x0008ac5f... (60 %)\r\r\nWriting at 0x00090a88... (63 %)\r\r\nWriting at 0x00095eaa... (66 %)\r\r\nWriting at 0x0009b5ad... (69 %)\r\r\nWriting at 0x000a0f5a... (72 %)\r\r\nWriting at 0x000a6679... (75 %)\r\r\nWriting at 0x000ac20e... (78 %)\r\r\nWriting at 0x000b2443... (81 %)\r\r\nWriting at 0x000b7c88... (84 %)\r\r\nWriting at 0x000bd381... (87 %)\r\r\nWriting at 0x000c6052... (90 %)\r\r\nWriting at 0x000ce0aa... (93 %)\r\r\nWriting at 0x000d3fb6... (96 %)\r\r\nWriting at 0x000da008... (100 %)\r\r\nWrote 849312 bytes (540143 compressed) at 0x00010000 in 5.7 seconds (effective 1191.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 571.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1647.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_6908",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5e0 bytes. Smallest app partition is 0x100000 bytes. 0x30a20 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849376 bytes to 540084...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x0002753e... (9 %)\r\r\nWriting at 0x0002c08f... (12 %)\r\r\nWriting at 0x000347dc... (15 %)\r\r\nWriting at 0x0003c8c5... (18 %)\r\r\nWriting at 0x000427e3... (21 %)\r\r\nWriting at 0x00048b1c... (24 %)\r\r\nWriting at 0x0004ea3d... (27 %)\r\r\nWriting at 0x0005480c... (30 %)\r\r\nWriting at 0x0005aab2... (33 %)\r\r\nWriting at 0x00060a73... (36 %)\r\r\nWriting at 0x0006655c... (39 %)\r\r\nWriting at 0x0006c2db... (42 %)\r\r\nWriting at 0x000712e3... (45 %)\r\r\nWriting at 0x00076272... (48 %)\r\r\nWriting at 0x0007b3c6... (51 %)\r\r\nWriting at 0x00080550... (54 %)\r\r\nWriting at 0x00085907... (57 %)\r\r\nWriting at 0x0008ad57... (60 %)\r\r\nWriting at 0x00090b23... (63 %)\r\r\nWriting at 0x00095f89... (66 %)\r\r\nWriting at 0x0009b632... (69 %)\r\r\nWriting at 0x000a0fec... (72 %)\r\r\nWriting at 0x000a6732... (75 %)\r\r\nWriting at 0x000ac2b5... (78 %)\r\r\nWriting at 0x000b24f6... (81 %)\r\r\nWriting at 0x000b7d24... (84 %)\r\r\nWriting at 0x000bd3f6... (87 %)\r\r\nWriting at 0x000c60dc... (90 %)\r\r\nWriting at 0x000ce13b... (93 %)\r\r\nWriting at 0x000d404b... (96 %)\r\r\nWriting at 0x000da085... (100 %)\r\r\nWrote 849376 bytes (540084 compressed) at 0x00010000 in 5.6 seconds (effective 1213.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 541.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1699.2 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_7724",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6d0 bytes. Smallest app partition is 0x100000 bytes. 0x30930 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM35 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM35\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:66:8c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 477.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849616 bytes to 540163...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca8c... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e5... (12 %)\r\r\nWriting at 0x00034833... (15 %)\r\r\nWriting at 0x0003c92b... (18 %)\r\r\nWriting at 0x000428cd... (21 %)\r\r\nWriting at 0x00048bab... (24 %)\r\r\nWriting at 0x0004eac8... (27 %)\r\r\nWriting at 0x00054890... (30 %)\r\r\nWriting at 0x0005ab40... (33 %)\r\r\nWriting at 0x00060b0f... (36 %)\r\r\nWriting at 0x000665e3... (39 %)\r\r\nWriting at 0x0006c362... (42 %)\r\r\nWriting at 0x00071370... (45 %)\r\r\nWriting at 0x00076301... (48 %)\r\r\nWriting at 0x0007b452... (51 %)\r\r\nWriting at 0x000805ee... (54 %)\r\r\nWriting at 0x000859a0... (57 %)\r\r\nWriting at 0x0008adf2... (60 %)\r\r\nWriting at 0x00090bbc... (63 %)\r\r\nWriting at 0x00096025... (66 %)\r\r\nWriting at 0x0009b6d6... (69 %)\r\r\nWriting at 0x000a1086... (72 %)\r\r\nWriting at 0x000a67d8... (75 %)\r\r\nWriting at 0x000ac349... (78 %)\r\r\nWriting at 0x000b259a... (81 %)\r\r\nWriting at 0x000b7dcd... (84 %)\r\r\nWriting at 0x000bd48b... (87 %)\r\r\nWriting at 0x000c6180... (90 %)\r\r\nWriting at 0x000ce1e2... (93 %)\r\r\nWriting at 0x000d40c5... (96 %)\r\r\nWriting at 0x000da113... (100 %)\r\r\nWrote 849616 bytes (540163 compressed) at 0x00010000 in 5.8 seconds (effective 1173.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 529.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1610.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_8328",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 480.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540200...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca98... (6 %)\r\r\nWriting at 0x00027556... (9 %)\r\r\nWriting at 0x0002c0aa... (12 %)\r\r\nWriting at 0x000347e1... (15 %)\r\r\nWriting at 0x0003c8d9... (18 %)\r\r\nWriting at 0x00042817... (21 %)\r\r\nWriting at 0x00048b3f... (24 %)\r\r\nWriting at 0x0004ea85... (27 %)\r\r\nWriting at 0x00054850... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060a54... (36 %)\r\r\nWriting at 0x0006658e... (39 %)\r\r\nWriting at 0x0006c30c... (42 %)\r\r\nWriting at 0x0007131c... (45 %)\r\r\nWriting at 0x000762a0... (48 %)\r\r\nWriting at 0x0007b401... (51 %)\r\r\nWriting at 0x00080576... (54 %)\r\r\nWriting at 0x00085935... (57 %)\r\r\nWriting at 0x0008ad81... (60 %)\r\r\nWriting at 0x00090b50... (63 %)\r\r\nWriting at 0x00095faf... (66 %)\r\r\nWriting at 0x0009b657... (69 %)\r\r\nWriting at 0x000a1002... (72 %)\r\r\nWriting at 0x000a674f... (75 %)\r\r\nWriting at 0x000ac2ca... (78 %)\r\r\nWriting at 0x000b250b... (81 %)\r\r\nWriting at 0x000b7d4b... (84 %)\r\r\nWriting at 0x000bd42e... (87 %)\r\r\nWriting at 0x000c6110... (90 %)\r\r\nWriting at 0x000ce167... (93 %)\r\r\nWriting at 0x000d4054... (96 %)\r\r\nWriting at 0x000da0a9... (100 %)\r\r\nWrote 849552 bytes (540200 compressed) at 0x00010000 in 5.6 seconds (effective 1203.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 525.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1649.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_8472",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 476.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540193...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca94... (6 %)\r\r\nWriting at 0x0002755b... (9 %)\r\r\nWriting at 0x0002c0b2... (12 %)\r\r\nWriting at 0x000347ec... (15 %)\r\r\nWriting at 0x0003c901... (18 %)\r\r\nWriting at 0x00042852... (21 %)\r\r\nWriting at 0x00048b62... (24 %)\r\r\nWriting at 0x0004ea90... (27 %)\r\r\nWriting at 0x0005485b... (30 %)\r\r\nWriting at 0x0005aaf3... (33 %)\r\r\nWriting at 0x00060a54... (36 %)\r\r\nWriting at 0x00066595... (39 %)\r\r\nWriting at 0x0006c31a... (42 %)\r\r\nWriting at 0x0007131d... (45 %)\r\r\nWriting at 0x000762a6... (48 %)\r\r\nWriting at 0x0007b40a... (51 %)\r\r\nWriting at 0x0008057c... (54 %)\r\r\nWriting at 0x0008593a... (57 %)\r\r\nWriting at 0x0008ad90... (60 %)\r\r\nWriting at 0x00090b5a... (63 %)\r\r\nWriting at 0x00095fc2... (66 %)\r\r\nWriting at 0x0009b66b... (69 %)\r\r\nWriting at 0x000a1012... (72 %)\r\r\nWriting at 0x000a676c... (75 %)\r\r\nWriting at 0x000ac2e5... (78 %)\r\r\nWriting at 0x000b2521... (81 %)\r\r\nWriting at 0x000b7d52... (84 %)\r\r\nWriting at 0x000bd437... (87 %)\r\r\nWriting at 0x000c6119... (90 %)\r\r\nWriting at 0x000ce172... (93 %)\r\r\nWriting at 0x000d405e... (96 %)\r\r\nWriting at 0x000da0b2... (100 %)\r\r\nWrote 849552 bytes (540193 compressed) at 0x00010000 in 5.6 seconds (effective 1203.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 549.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.8 seconds (effective 1643.8 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_8980",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6e0 bytes. Smallest app partition is 0x100000 bytes. 0x30920 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 484.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849632 bytes to 540192...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9d... (6 %)\r\r\nWriting at 0x00027593... (9 %)\r\r\nWriting at 0x0002c0e8... (12 %)\r\r\nWriting at 0x0003482d... (15 %)\r\r\nWriting at 0x0003c91f... (18 %)\r\r\nWriting at 0x000428ac... (21 %)\r\r\nWriting at 0x00048b90... (24 %)\r\r\nWriting at 0x0004eac0... (27 %)\r\r\nWriting at 0x00054890... (30 %)\r\r\nWriting at 0x0005ab34... (33 %)\r\r\nWriting at 0x00060ae4... (36 %)\r\r\nWriting at 0x000665d4... (39 %)\r\r\nWriting at 0x0006c348... (42 %)\r\r\nWriting at 0x0007135d... (45 %)\r\r\nWriting at 0x000762f2... (48 %)\r\r\nWriting at 0x0007b446... (51 %)\r\r\nWriting at 0x000805d4... (54 %)\r\r\nWriting at 0x00085991... (57 %)\r\r\nWriting at 0x0008adda... (60 %)\r\r\nWriting at 0x00090ba9... (63 %)\r\r\nWriting at 0x00096011... (66 %)\r\r\nWriting at 0x0009b6b9... (69 %)\r\r\nWriting at 0x000a106d... (72 %)\r\r\nWriting at 0x000a67b6... (75 %)\r\r\nWriting at 0x000ac337... (78 %)\r\r\nWriting at 0x000b2579... (81 %)\r\r\nWriting at 0x000b7dae... (84 %)\r\r\nWriting at 0x000bd477... (87 %)\r\r\nWriting at 0x000c6161... (90 %)\r\r\nWriting at 0x000ce1c5... (93 %)\r\r\nWriting at 0x000d40a5... (96 %)\r\r\nWriting at 0x000da0f9... (100 %)\r\r\nWrote 849632 bytes (540192 compressed) at 0x00010000 in 5.6 seconds (effective 1205.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 516.2 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1693.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9156",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf5a0 bytes. Smallest app partition is 0x100000 bytes. 0x30a60 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 505.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849312 bytes to 540140...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3c... (6 %)\r\r\nWriting at 0x000274f8... (9 %)\r\r\nWriting at 0x0002c04a... (12 %)\r\r\nWriting at 0x000347b1... (15 %)\r\r\nWriting at 0x0003c89e... (18 %)\r\r\nWriting at 0x00042797... (21 %)\r\r\nWriting at 0x00048ac4... (24 %)\r\r\nWriting at 0x0004e9b6... (27 %)\r\r\nWriting at 0x0005476d... (30 %)\r\r\nWriting at 0x0005aa23... (33 %)\r\r\nWriting at 0x0006097a... (36 %)\r\r\nWriting at 0x000664cf... (39 %)\r\r\nWriting at 0x0006c25d... (42 %)\r\r\nWriting at 0x00071272... (45 %)\r\r\nWriting at 0x000761db... (48 %)\r\r\nWriting at 0x0007b333... (51 %)\r\r\nWriting at 0x000804ab... (54 %)\r\r\nWriting at 0x00085887... (57 %)\r\r\nWriting at 0x0008ac65... (60 %)\r\r\nWriting at 0x00090a8b... (63 %)\r\r\nWriting at 0x00095eaf... (66 %)\r\r\nWriting at 0x0009b5b1... (69 %)\r\r\nWriting at 0x000a0f5d... (72 %)\r\r\nWriting at 0x000a667e... (75 %)\r\r\nWriting at 0x000ac21a... (78 %)\r\r\nWriting at 0x000b244a... (81 %)\r\r\nWriting at 0x000b7c93... (84 %)\r\r\nWriting at 0x000bd385... (87 %)\r\r\nWriting at 0x000c6057... (90 %)\r\r\nWriting at 0x000ce0af... (93 %)\r\r\nWriting at 0x000d3fbb... (96 %)\r\r\nWriting at 0x000da00c... (100 %)\r\r\nWrote 849312 bytes (540140 compressed) at 0x00010000 in 5.8 seconds (effective 1179.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 553.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1611.4 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9328",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf140 bytes. Smallest app partition is 0x100000 bytes. 0x30ec0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 466.4 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 848192 bytes to 539309...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001cafd... (6 %)\r\r\nWriting at 0x000274eb... (9 %)\r\r\nWriting at 0x0002c13c... (12 %)\r\r\nWriting at 0x000347c8... (15 %)\r\r\nWriting at 0x0003c8c0... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048ad0... (24 %)\r\r\nWriting at 0x0004e9ee... (27 %)\r\r\nWriting at 0x0005473e... (30 %)\r\r\nWriting at 0x0005aa2f... (33 %)\r\r\nWriting at 0x00060a3f... (36 %)\r\r\nWriting at 0x00066471... (39 %)\r\r\nWriting at 0x0006c1a5... (42 %)\r\r\nWriting at 0x000711e7... (45 %)\r\r\nWriting at 0x0007619c... (48 %)\r\r\nWriting at 0x0007b296... (51 %)\r\r\nWriting at 0x000805bf... (54 %)\r\r\nWriting at 0x00085832... (57 %)\r\r\nWriting at 0x0008acbc... (60 %)\r\r\nWriting at 0x000909fb... (63 %)\r\r\nWriting at 0x00095e95... (66 %)\r\r\nWriting at 0x0009b593... (69 %)\r\r\nWriting at 0x000a0f2f... (72 %)\r\r\nWriting at 0x000a66af... (75 %)\r\r\nWriting at 0x000ac1ec... (78 %)\r\r\nWriting at 0x000b241b... (81 %)\r\r\nWriting at 0x000b7c4f... (84 %)\r\r\nWriting at 0x000bd3cd... (87 %)\r\r\nWriting at 0x000c604f... (90 %)\r\r\nWriting at 0x000ce03b... (93 %)\r\r\nWriting at 0x000d3fbe... (96 %)\r\r\nWriting at 0x000d9fc4... (100 %)\r\r\nWrote 848192 bytes (539309 compressed) at 0x00010000 in 5.6 seconds (effective 1205.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 538.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.7 seconds (effective 1687.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9388",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf630 bytes. Smallest app partition is 0x100000 bytes. 0x309d0 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\n\r\r\nA fatal error occurred: Could not open COM11, the port is busy or doesn't exist.\r\r\n(could not open port 'COM11': FileNotFoundError(2, 'The system cannot find the file specified.', None, 2))\r\r\n\r\r\nHint: Check if the port is correct and ESP connected\r\r\n\r\r\nFAILED: CMakeFiles/flash C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/CMakeFiles/flash \r\r\ncmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nninja: build stopped: subcommand failed.\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9440",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 508.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540222...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c047... (12 %)\r\r\nWriting at 0x000347ab... (15 %)\r\r\nWriting at 0x0003c893... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048ab9... (24 %)\r\r\nWriting at 0x0004ea39... (27 %)\r\r\nWriting at 0x000547ff... (30 %)\r\r\nWriting at 0x0005aa48... (33 %)\r\r\nWriting at 0x000609f5... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e4... (42 %)\r\r\nWriting at 0x00071309... (45 %)\r\r\nWriting at 0x00076263... (48 %)\r\r\nWriting at 0x0007b3b8... (51 %)\r\r\nWriting at 0x00080530... (54 %)\r\r\nWriting at 0x000858ff... (57 %)\r\r\nWriting at 0x0008acb4... (60 %)\r\r\nWriting at 0x00090af9... (63 %)\r\r\nWriting at 0x00095f10... (66 %)\r\r\nWriting at 0x0009b63c... (69 %)\r\r\nWriting at 0x000a0fe3... (72 %)\r\r\nWriting at 0x000a66ea... (75 %)\r\r\nWriting at 0x000ac256... (78 %)\r\r\nWriting at 0x000b24c0... (81 %)\r\r\nWriting at 0x000b7d11... (84 %)\r\r\nWriting at 0x000bd41b... (87 %)\r\r\nWriting at 0x000c60d4... (90 %)\r\r\nWriting at 0x000ce142... (93 %)\r\r\nWriting at 0x000d4038... (96 %)\r\r\nWriting at 0x000da091... (100 %)\r\r\nWrote 849552 bytes (540222 compressed) at 0x00010000 in 5.8 seconds (effective 1162.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 529.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1616.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_952",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf6a0 bytes. Smallest app partition is 0x100000 bytes. 0x30960 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 508.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849568 bytes to 540241...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274f9... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347a6... (15 %)\r\r\nWriting at 0x0003c89c... (18 %)\r\r\nWriting at 0x00042781... (21 %)\r\r\nWriting at 0x00048aaf... (24 %)\r\r\nWriting at 0x0004ea1d... (27 %)\r\r\nWriting at 0x000547f9... (30 %)\r\r\nWriting at 0x0005aa2d... (33 %)\r\r\nWriting at 0x000609ee... (36 %)\r\r\nWriting at 0x0006654b... (39 %)\r\r\nWriting at 0x0006c2e9... (42 %)\r\r\nWriting at 0x000712fc... (45 %)\r\r\nWriting at 0x0007625f... (48 %)\r\r\nWriting at 0x0007b3b4... (51 %)\r\r\nWriting at 0x00080537... (54 %)\r\r\nWriting at 0x00085906... (57 %)\r\r\nWriting at 0x0008acbc... (60 %)\r\r\nWriting at 0x00090b06... (63 %)\r\r\nWriting at 0x00095f1b... (66 %)\r\r\nWriting at 0x0009b64a... (69 %)\r\r\nWriting at 0x000a0ff2... (72 %)\r\r\nWriting at 0x000a66f2... (75 %)\r\r\nWriting at 0x000ac261... (78 %)\r\r\nWriting at 0x000b24cf... (81 %)\r\r\nWriting at 0x000b7d17... (84 %)\r\r\nWriting at 0x000bd41e... (87 %)\r\r\nWriting at 0x000c60d8... (90 %)\r\r\nWriting at 0x000ce140... (93 %)\r\r\nWriting at 0x000d4031... (96 %)\r\r\nWriting at 0x000da088... (100 %)\r\r\nWrote 849568 bytes (540241 compressed) at 0x00010000 in 5.9 seconds (effective 1158.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 552.0 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1595.5 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9608",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 482.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540195...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001caa0... (6 %)\r\r\nWriting at 0x00027558... (9 %)\r\r\nWriting at 0x0002c0af... (12 %)\r\r\nWriting at 0x000347ea... (15 %)\r\r\nWriting at 0x0003c8fe... (18 %)\r\r\nWriting at 0x00042850... (21 %)\r\r\nWriting at 0x00048b5f... (24 %)\r\r\nWriting at 0x0004ea8e... (27 %)\r\r\nWriting at 0x00054859... (30 %)\r\r\nWriting at 0x0005aaec... (33 %)\r\r\nWriting at 0x00060a53... (36 %)\r\r\nWriting at 0x0006658f... (39 %)\r\r\nWriting at 0x0006c312... (42 %)\r\r\nWriting at 0x0007131a... (45 %)\r\r\nWriting at 0x000762a4... (48 %)\r\r\nWriting at 0x0007b407... (51 %)\r\r\nWriting at 0x0008057a... (54 %)\r\r\nWriting at 0x00085937... (57 %)\r\r\nWriting at 0x0008ad8d... (60 %)\r\r\nWriting at 0x00090b55... (63 %)\r\r\nWriting at 0x00095fbc... (66 %)\r\r\nWriting at 0x0009b669... (69 %)\r\r\nWriting at 0x000a1010... (72 %)\r\r\nWriting at 0x000a6769... (75 %)\r\r\nWriting at 0x000ac2e3... (78 %)\r\r\nWriting at 0x000b251f... (81 %)\r\r\nWriting at 0x000b7d4f... (84 %)\r\r\nWriting at 0x000bd434... (87 %)\r\r\nWriting at 0x000c6117... (90 %)\r\r\nWriting at 0x000ce16f... (93 %)\r\r\nWriting at 0x000d405d... (96 %)\r\r\nWriting at 0x000da0b2... (100 %)\r\r\nWrote 849552 bytes (540195 compressed) at 0x00010000 in 5.6 seconds (effective 1208.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 528.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.7 seconds (effective 1660.6 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_968",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf710 bytes. Smallest app partition is 0x100000 bytes. 0x308f0 bytes (19%) free.\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 488.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849680 bytes to 540163...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca9d... (6 %)\r\r\nWriting at 0x00027594... (9 %)\r\r\nWriting at 0x0002c0ee... (12 %)\r\r\nWriting at 0x00034847... (15 %)\r\r\nWriting at 0x0003c947... (18 %)\r\r\nWriting at 0x000428e5... (21 %)\r\r\nWriting at 0x00048bb1... (24 %)\r\r\nWriting at 0x0004eadd... (27 %)\r\r\nWriting at 0x000548bf... (30 %)\r\r\nWriting at 0x0005ab6f... (33 %)\r\r\nWriting at 0x00060b48... (36 %)\r\r\nWriting at 0x0006661a... (39 %)\r\r\nWriting at 0x0006c39c... (42 %)\r\r\nWriting at 0x000713a7... (45 %)\r\r\nWriting at 0x0007633c... (48 %)\r\r\nWriting at 0x0007b48d... (51 %)\r\r\nWriting at 0x00080625... (54 %)\r\r\nWriting at 0x000859d6... (57 %)\r\r\nWriting at 0x0008ae2b... (60 %)\r\r\nWriting at 0x00090bf8... (63 %)\r\r\nWriting at 0x00096064... (66 %)\r\r\nWriting at 0x0009b715... (69 %)\r\r\nWriting at 0x000a10c3... (72 %)\r\r\nWriting at 0x000a6816... (75 %)\r\r\nWriting at 0x000ac385... (78 %)\r\r\nWriting at 0x000b25d6... (81 %)\r\r\nWriting at 0x000b7e0c... (84 %)\r\r\nWriting at 0x000bd4c4... (87 %)\r\r\nWriting at 0x000c61b9... (90 %)\r\r\nWriting at 0x000ce21e... (93 %)\r\r\nWriting at 0x000d40fd... (96 %)\r\r\nWriting at 0x000da14a... (100 %)\r\r\nWrote 849680 bytes (540163 compressed) at 0x00010000 in 5.6 seconds (effective 1213.1 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 495.9 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 391893...\r\r\nWriting at 0x00110000... (4 %)\r\r\nWriting at 0x00114941... (8 %)\r\r\nWriting at 0x00118d28... (12 %)\r\r\nWriting at 0x0011d246... (16 %)\r\r\nWriting at 0x00121719... (20 %)\r\r\nWriting at 0x00125bce... (25 %)\r\r\nWriting at 0x0012a1f5... (29 %)\r\r\nWriting at 0x0012e61b... (33 %)\r\r\nWriting at 0x00132b85... (37 %)\r\r\nWriting at 0x00136fe3... (41 %)\r\r\nWriting at 0x0013b616... (45 %)\r\r\nWriting at 0x0013fad3... (50 %)\r\r\nWriting at 0x00143ecd... (54 %)\r\r\nWriting at 0x0014854c... (58 %)\r\r\nWriting at 0x0014df02... (62 %)\r\r\nWriting at 0x0015244e... (66 %)\r\r\nWriting at 0x001572f5... (70 %)\r\r\nWriting at 0x0015ca09... (75 %)\r\r\nWriting at 0x00160e24... (79 %)\r\r\nWriting at 0x00165dc4... (83 %)\r\r\nWriting at 0x0016b2d9... (87 %)\r\r\nWriting at 0x0016f6db... (91 %)\r\r\nWriting at 0x00175812... (95 %)\r\r\nWriting at 0x00189dc8... (100 %)\r\r\nWrote 983040 bytes (391893 compressed) at 0x00110000 in 4.6 seconds (effective 1698.1 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9740",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM11 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM11\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c3:67:1c\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.4 seconds (effective 470.3 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540127...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca3a... (6 %)\r\r\nWriting at 0x000274f5... (9 %)\r\r\nWriting at 0x0002c04b... (12 %)\r\r\nWriting at 0x000347a4... (15 %)\r\r\nWriting at 0x0003c895... (18 %)\r\r\nWriting at 0x00042793... (21 %)\r\r\nWriting at 0x00048acc... (24 %)\r\r\nWriting at 0x0004eab5... (27 %)\r\r\nWriting at 0x00054878... (30 %)\r\r\nWriting at 0x0005ab36... (33 %)\r\r\nWriting at 0x00060a7c... (36 %)\r\r\nWriting at 0x000665c9... (39 %)\r\r\nWriting at 0x0006c34f... (42 %)\r\r\nWriting at 0x00071377... (45 %)\r\r\nWriting at 0x000762ef... (48 %)\r\r\nWriting at 0x0007b438... (51 %)\r\r\nWriting at 0x000805cb... (54 %)\r\r\nWriting at 0x00085988... (57 %)\r\r\nWriting at 0x0008ad8a... (60 %)\r\r\nWriting at 0x00090b96... (63 %)\r\r\nWriting at 0x00095fd3... (66 %)\r\r\nWriting at 0x0009b6b4... (69 %)\r\r\nWriting at 0x000a1062... (72 %)\r\r\nWriting at 0x000a6786... (75 %)\r\r\nWriting at 0x000ac31d... (78 %)\r\r\nWriting at 0x000b2552... (81 %)\r\r\nWriting at 0x000b7d9b... (84 %)\r\r\nWriting at 0x000bd48f... (87 %)\r\r\nWriting at 0x000c6161... (90 %)\r\r\nWriting at 0x000ce1b7... (93 %)\r\r\nWriting at 0x000d40bb... (96 %)\r\r\nWriting at 0x000da10f... (100 %)\r\r\nWrote 849552 bytes (540127 compressed) at 0x00010000 in 5.7 seconds (effective 1190.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 538.6 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 464402...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (6 %)\r\r\nWriting at 0x00118d28... (10 %)\r\r\nWriting at 0x0011d246... (13 %)\r\r\nWriting at 0x00121719... (17 %)\r\r\nWriting at 0x00125bce... (20 %)\r\r\nWriting at 0x0012a1f5... (24 %)\r\r\nWriting at 0x0012e61b... (27 %)\r\r\nWriting at 0x00132b85... (31 %)\r\r\nWriting at 0x00136fe3... (34 %)\r\r\nWriting at 0x0013b616... (37 %)\r\r\nWriting at 0x0013fad3... (41 %)\r\r\nWriting at 0x00143ecd... (44 %)\r\r\nWriting at 0x0014854c... (48 %)\r\r\nWriting at 0x0014df02... (51 %)\r\r\nWriting at 0x0015244e... (55 %)\r\r\nWriting at 0x001572f5... (58 %)\r\r\nWriting at 0x0015ca09... (62 %)\r\r\nWriting at 0x00160e24... (65 %)\r\r\nWriting at 0x00165dbc... (68 %)\r\r\nWriting at 0x0016b389... (72 %)\r\r\nWriting at 0x0016f7ab... (75 %)\r\r\nWriting at 0x0017446f... (79 %)\r\r\nWriting at 0x00179dfb... (82 %)\r\r\nWriting at 0x0017e385... (86 %)\r\r\nWriting at 0x001832ad... (89 %)\r\r\nWriting at 0x001875ef... (93 %)\r\r\nWriting at 0x0019563a... (96 %)\r\r\nWriting at 0x001a198d... (100 %)\r\r\nWrote 983040 bytes (464402 compressed) at 0x00110000 in 5.1 seconds (effective 1537.3 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/log/idf_py_stdout_output_9904",
    "content": "[1/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffsgen.py 0xf0000 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/font C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/storage.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len\"\r\r\n[2/6] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/partition_table/partition-table.bin C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/main.bin\"\r\r\nmain.bin binary size 0xcf690 bytes. Smallest app partition is 0x100000 bytes. 0x30970 bytes (19%) free.\r\r\n[3/6] Performing build step for 'bootloader'\r\r\n[1/1] cmd.exe /C \"cd /D C:\\Users\\Jatki\\OneDrive\\Documents\\ESP\\Gateway\\build\\bootloader\\esp-idf\\esptool_py && python C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.bin\"\r\r\nBootloader binary size 0x51c0 bytes. 0x2e40 bytes (36%) free.\r\r\n[3/4] cmd.exe /C \"cd /D C:\\Espressif\\frameworks\\esp-idf-v5.1.2\\components\\esptool_py && C:\\Espressif\\tools\\cmake\\3.24.0\\bin\\cmake.exe -D IDF_PATH=C:/Espressif/frameworks/esp-idf-v5.1.2 -D SERIAL_TOOL=python;;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build -P C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/run_serial_tool.cmake\"\r\r\nesptool.py --chip esp32s3 -p COM13 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 main.bin 0x8000 partition_table/partition-table.bin 0x110000 storage.bin\r\r\nesptool.py v4.7.0\r\r\nSerial port COM13\r\r\nConnecting...\r\r\nChip is ESP32-S3 (QFN56) (revision v0.1)\r\r\nFeatures: WiFi, BLE, Embedded Flash 8MB (GD)\r\r\nCrystal is 40MHz\r\r\nMAC: dc:54:75:c5:c8:90\r\r\nUploading stub...\r\r\nRunning stub...\r\r\nStub running...\r\r\nChanging baud rate to 460800\r\r\nChanged.\r\r\nConfiguring flash size...\r\r\nFlash will be erased from 0x00000000 to 0x00005fff...\r\r\nFlash will be erased from 0x00010000 to 0x000dffff...\r\r\nFlash will be erased from 0x00008000 to 0x00008fff...\r\r\nFlash will be erased from 0x00110000 to 0x001fffff...\r\r\nCompressed 20928 bytes to 13297...\r\r\nWriting at 0x00000000... (100 %)\r\r\nWrote 20928 bytes (13297 compressed) at 0x00000000 in 0.3 seconds (effective 502.8 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 849552 bytes to 540226...\r\r\nWriting at 0x00010000... (3 %)\r\r\nWriting at 0x0001ca34... (6 %)\r\r\nWriting at 0x000274f6... (9 %)\r\r\nWriting at 0x0002c048... (12 %)\r\r\nWriting at 0x000347ac... (15 %)\r\r\nWriting at 0x0003c894... (18 %)\r\r\nWriting at 0x0004278f... (21 %)\r\r\nWriting at 0x00048ac5... (24 %)\r\r\nWriting at 0x0004ea2b... (27 %)\r\r\nWriting at 0x000547fd... (30 %)\r\r\nWriting at 0x0005aa3f... (33 %)\r\r\nWriting at 0x000609f1... (36 %)\r\r\nWriting at 0x00066548... (39 %)\r\r\nWriting at 0x0006c2e0... (42 %)\r\r\nWriting at 0x00071305... (45 %)\r\r\nWriting at 0x0007625f... (48 %)\r\r\nWriting at 0x0007b3b4... (51 %)\r\r\nWriting at 0x0008052c... (54 %)\r\r\nWriting at 0x000858fc... (57 %)\r\r\nWriting at 0x0008acb9... (60 %)\r\r\nWriting at 0x00090af5... (63 %)\r\r\nWriting at 0x00095f07... (66 %)\r\r\nWriting at 0x0009b637... (69 %)\r\r\nWriting at 0x000a0fde... (72 %)\r\r\nWriting at 0x000a66e1... (75 %)\r\r\nWriting at 0x000ac254... (78 %)\r\r\nWriting at 0x000b24bd... (81 %)\r\r\nWriting at 0x000b7d0d... (84 %)\r\r\nWriting at 0x000bd417... (87 %)\r\r\nWriting at 0x000c60d2... (90 %)\r\r\nWriting at 0x000ce13d... (93 %)\r\r\nWriting at 0x000d4033... (96 %)\r\r\nWriting at 0x000da08b... (100 %)\r\r\nWrote 849552 bytes (540226 compressed) at 0x00010000 in 5.8 seconds (effective 1162.7 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 3072 bytes to 119...\r\r\nWriting at 0x00008000... (100 %)\r\r\nWrote 3072 bytes (119 compressed) at 0x00008000 in 0.0 seconds (effective 558.5 kbit/s)...\r\r\nHash of data verified.\r\r\nCompressed 983040 bytes to 418961...\r\r\nWriting at 0x00110000... (3 %)\r\r\nWriting at 0x00114941... (7 %)\r\r\nWriting at 0x00118d28... (11 %)\r\r\nWriting at 0x0011d246... (15 %)\r\r\nWriting at 0x00121719... (19 %)\r\r\nWriting at 0x00125bce... (23 %)\r\r\nWriting at 0x0012a1f5... (26 %)\r\r\nWriting at 0x0012e61b... (30 %)\r\r\nWriting at 0x00132b85... (34 %)\r\r\nWriting at 0x00136fe3... (38 %)\r\r\nWriting at 0x0013b616... (42 %)\r\r\nWriting at 0x0013fad3... (46 %)\r\r\nWriting at 0x00143ecd... (50 %)\r\r\nWriting at 0x0014854c... (53 %)\r\r\nWriting at 0x0014df02... (57 %)\r\r\nWriting at 0x0015244e... (61 %)\r\r\nWriting at 0x001572f5... (65 %)\r\r\nWriting at 0x0015ca09... (69 %)\r\r\nWriting at 0x00160e24... (73 %)\r\r\nWriting at 0x00165dc4... (76 %)\r\r\nWriting at 0x0016b2d9... (80 %)\r\r\nWriting at 0x0016f6db... (84 %)\r\r\nWriting at 0x00173fe7... (88 %)\r\r\nWriting at 0x001784d5... (92 %)\r\r\nWriting at 0x00183e5a... (96 %)\r\r\nWriting at 0x0019296b... (100 %)\r\r\nWrote 983040 bytes (418961 compressed) at 0x00110000 in 4.9 seconds (effective 1596.0 kbit/s)...\r\r\nHash of data verified.\r\r\n\r\r\nLeaving...\r\r\nHard resetting via RTS pin...\r\r\n"
  },
  {
    "path": "Code/build/partition-table-flash_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x8000 partition_table/partition-table.bin\n"
  },
  {
    "path": "Code/build/project_description.json",
    "content": "{\n    \"version\":            \"1\",\n    \"project_name\":       \"main\",\n    \"project_version\":    \"1\",\n    \"project_path\":       \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway\",\n    \"idf_path\":           \"C:/Espressif/frameworks/esp-idf-v5.1.2\",\n    \"build_dir\":          \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build\",\n    \"config_file\":        \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig\",\n    \"config_defaults\":    \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/sdkconfig.defaults\",\n    \"bootloader_elf\":     \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/bootloader/bootloader.elf\",\n    \"app_elf\":            \"main.elf\",\n    \"app_bin\":            \"main.bin\",\n    \"build_type\":         \"flash_app\",\n    \"git_revision\":       \"v5.1.2-dirty\",\n    \"target\":             \"esp32s3\",\n    \"rev\":                \"\",\n    \"min_rev\":            \"0\",\n    \"max_rev\":            \"99\",\n    \"phy_data_partition\": \"\",\n    \"monitor_baud\" :      \"115200\",\n    \"monitor_toolprefix\": \"xtensa-esp32s3-elf-\",\n    \"c_compiler\":         \"C:/Espressif/tools/xtensa-esp32s3-elf/esp-12.2.0_20230208/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe\",\n    \"config_environment\" : {\n        \"COMPONENT_KCONFIGS\" : \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Kconfig;C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/Kconfig\",\n        \"COMPONENT_KCONFIGS_PROJBUILD\" : \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py/Kconfig.projbuild;C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table/Kconfig.projbuild;C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/Kconfig.projbuild\"\n    },\n    \"common_component_reqs\": [ \"cxx\", \"newlib\", \"freertos\", \"esp_hw_support\", \"heap\", \"log\", \"soc\", \"hal\", \"esp_rom\", \"esp_common\", \"esp_system\", \"xtensa\" ],\n    \"build_components\" : [ \"app_trace\", \"app_update\", \"bootloader\", \"bootloader_support\", \"bt\", \"cmock\", \"console\", \"cxx\", \"driver\", \"efuse\", \"esp-tls\", \"esp_adc\", \"esp_app_format\", \"esp_coex\", \"esp_common\", \"esp_eth\", \"esp_event\", \"esp_gdbstub\", \"esp_hid\", \"esp_http_client\", \"esp_http_server\", \"esp_https_ota\", \"esp_https_server\", \"esp_hw_support\", \"esp_lcd\", \"esp_local_ctrl\", \"esp_mm\", \"esp_netif\", \"esp_netif_stack\", \"esp_partition\", \"esp_phy\", \"esp_pm\", \"esp_psram\", \"esp_ringbuf\", \"esp_rom\", \"esp_system\", \"esp_timer\", \"esp_wifi\", \"espcoredump\", \"esptool_py\", \"fatfs\", \"freertos\", \"hal\", \"heap\", \"http_parser\", \"idf_test\", \"ieee802154\", \"json\", \"log\", \"lwip\", \"main\", \"mbedtls\", \"mqtt\", \"newlib\", \"nvs_flash\", \"openthread\", \"partition_table\", \"perfmon\", \"protobuf-c\", \"protocomm\", \"pthread\", \"sdmmc\", \"soc\", \"spi_flash\", \"spiffs\", \"st7789\", \"tcp_transport\", \"touch_element\", \"ulp\", \"unity\", \"usb\", \"vfs\", \"wear_levelling\", \"wifi_provisioning\", \"wpa_supplicant\", \"xtensa\", \"\" ],\n    \"build_component_paths\" : [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif_stack\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/json\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\", \"\" ],\n    \"build_component_info\" : {\n        \"app_trace\": {\n            \"alias\": \"idf::app_trace\",\n            \"target\": \"___idf_app_trace\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_app_trace\",\n            \"reqs\": [ \"esp_timer\" ],\n            \"priv_reqs\": [ \"soc\", \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_trace/libapp_trace.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/app_trace_util.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/host_file_io.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_trace/port/port_uart.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"app_update\": {\n            \"alias\": \"idf::app_update\",\n            \"target\": \"___idf_app_update\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_app_update\",\n            \"reqs\": [ \"partition_table\", \"bootloader_support\", \"esp_app_format\", \"esp_partition\" ],\n            \"priv_reqs\": [ \"esptool_py\", \"efuse\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/app_update/libapp_update.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_ops.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/app_update/esp_ota_app_desc.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"bootloader\": {\n            \"alias\": \"idf::bootloader\",\n            \"target\": \"___idf_bootloader\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_bootloader\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"partition_table\", \"esptool_py\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"bootloader_support\": {\n            \"alias\": \"idf::bootloader_support\",\n            \"target\": \"___idf_bootloader_support\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_bootloader_support\",\n            \"reqs\": [ \"soc\" ],\n            \"priv_reqs\": [ \"spi_flash\", \"mbedtls\", \"efuse\", \"heap\", \"esp_app_format\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/bootloader_support/libbootloader_support.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_common_loader.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_clock_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_mem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_random_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_efuse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_encrypt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/secure_boot.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/bootloader_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/flash_partitions.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/esp_image_format.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bootloader_support/src/idf/bootloader_sha.c\" ],\n            \"include_dirs\": [ \"include\", \"bootloader_flash/include\" ]\n        },\n        \"bt\": {\n            \"alias\": \"idf::bt\",\n            \"target\": \"___idf_bt\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/bt\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_bt\",\n            \"reqs\": [ \"esp_timer\", \"esp_wifi\" ],\n            \"priv_reqs\": [ \"nvs_flash\", \"soc\", \"esp_pm\", \"esp_phy\", \"esp_coex\", \"mbedtls\", \"driver\", \"vfs\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"cmock\": {\n            \"alias\": \"idf::cmock\",\n            \"target\": \"___idf_cmock\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_cmock\",\n            \"reqs\": [ \"unity\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cmock/libcmock.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cmock/CMock/src/cmock.c\" ],\n            \"include_dirs\": [ \"CMock/src\" ]\n        },\n        \"console\": {\n            \"alias\": \"idf::console\",\n            \"target\": \"___idf_console\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_console\",\n            \"reqs\": [ \"vfs\" ],\n            \"priv_reqs\": [ \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/console/libconsole.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/commands.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/esp_console_repl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/split_argv.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/linenoise/linenoise.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_cmd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_date.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dbl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_dstr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_end.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_file.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_hashtable.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_int.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_lit.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_rex.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_str.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/arg_utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/console/argtable3/argtable3.c\" ],\n            \"include_dirs\": [ \".\" ]\n        },\n        \"cxx\": {\n            \"alias\": \"idf::cxx\",\n            \"target\": \"___idf_cxx\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_cxx\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"pthread\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/cxx/libcxx.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_exception_stubs.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/cxx/cxx_guards.cpp\" ],\n            \"include_dirs\": []\n        },\n        \"driver\": {\n            \"alias\": \"idf::driver\",\n            \"target\": \"___idf_driver\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_driver\",\n            \"reqs\": [ \"esp_pm\", \"esp_ringbuf\", \"freertos\", \"soc\", \"hal\", \"esp_hw_support\" ],\n            \"priv_reqs\": [ \"efuse\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/driver/libdriver.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_glitch_filter_ops.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/rtc_io.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/spi_bus_lock.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/adc_dma_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/dedic_gpio.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gpio/gpio_pin_glitch_filter.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/gptimer/gptimer_priv.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/timer_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2c/i2c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_std.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/i2s_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_pdm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/i2s/i2s_tdm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/ledc/ledc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_cmpr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_com.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_fault.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_gen.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_oper.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_sync.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/mcpwm/mcpwm_timer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/mcpwm_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/pcnt/pulse_cnt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/pcnt_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_encoder.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_rx.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/rmt/rmt_tx.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rmt_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_transaction.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sdmmc/sdmmc_host.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/sigma_delta/sdm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/sigma_delta_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_master.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_crc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_host.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/sdspi/sdspi_transaction.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/spi/gpspi/spi_slave_hd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/temperature_sensor/temperature_sensor.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/deprecated/rtc_temperature_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/touch_sensor_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/touch_sensor/esp32s3/touch_sensor.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/twai/twai.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/uart/uart.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/driver/usb_serial_jtag/usb_serial_jtag_connection_monitor.c\" ],\n            \"include_dirs\": [ \"include\", \"deprecated\", \"analog_comparator/include\", \"dac/include\", \"gpio/include\", \"gptimer/include\", \"i2c/include\", \"i2s/include\", \"ledc/include\", \"mcpwm/include\", \"parlio/include\", \"pcnt/include\", \"rmt/include\", \"sdio_slave/include\", \"sdmmc/include\", \"sigma_delta/include\", \"spi/include\", \"temperature_sensor/include\", \"touch_sensor/include\", \"twai/include\", \"uart/include\", \"usb_serial_jtag/include\", \"touch_sensor/esp32s3/include\" ]\n        },\n        \"efuse\": {\n            \"alias\": \"idf::efuse\",\n            \"target\": \"___idf_efuse\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_efuse\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"bootloader_support\", \"soc\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/efuse/libefuse.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_table.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_fields.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_rtc_calib.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/esp32s3/esp_efuse_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_api.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_fields.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/esp_efuse_utility.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3/include\" ]\n        },\n        \"esp-tls\": {\n            \"alias\": \"idf::esp-tls\",\n            \"target\": \"___idf_esp-tls\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp-tls\",\n            \"reqs\": [ \"mbedtls\" ],\n            \"priv_reqs\": [ \"http_parser\", \"lwip\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp-tls/libesp-tls.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_error_capture.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp-tls/esp_tls_mbedtls.c\" ],\n            \"include_dirs\": [ \".\", \"esp-tls-crypto\" ]\n        },\n        \"esp_adc\": {\n            \"alias\": \"idf::esp_adc\",\n            \"target\": \"___idf_esp_adc\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_adc\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"driver\", \"efuse\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_adc/libesp_adc.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_cali_curve_fitting.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_oneshot.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_continuous.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/adc_filter.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/esp32s3/curve_fitting_coefficients.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c\" ],\n            \"include_dirs\": [ \"include\", \"interface\", \"esp32s3/include\", \"deprecated/include\" ]\n        },\n        \"esp_app_format\": {\n            \"alias\": \"idf::esp_app_format\",\n            \"target\": \"___idf_esp_app_format\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_app_format\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_app_format/libesp_app_format.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_app_format/esp_app_desc.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_coex\": {\n            \"alias\": \"idf::esp_coex\",\n            \"target\": \"___idf_esp_coex\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_coex\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esp_timer\", \"driver\", \"esp_event\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_coex/libesp_coex.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_coex/esp32s3/esp_coex_adapter.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_common\": {\n            \"alias\": \"idf::esp_common\",\n            \"target\": \"___idf_esp_common\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_common\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_common/libesp_common.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_common/src/esp_err_to_name.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_eth\": {\n            \"alias\": \"idf::esp_eth\",\n            \"target\": \"___idf_esp_eth\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_eth\",\n            \"reqs\": [ \"esp_event\" ],\n            \"priv_reqs\": [ \"driver\", \"log\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_eth/libesp_eth.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_phy_802_3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_eth/src/esp_eth_netif_glue.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_event\": {\n            \"alias\": \"idf::esp_event\",\n            \"target\": \"___idf_esp_event\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_event\",\n            \"reqs\": [ \"log\", \"esp_common\", \"freertos\" ],\n            \"priv_reqs\": [ \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_event/libesp_event.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/default_event_loop.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_event/esp_event_private.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_gdbstub\": {\n            \"alias\": \"idf::esp_gdbstub\",\n            \"target\": \"___idf_esp_gdbstub\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_gdbstub\",\n            \"reqs\": [ \"freertos\" ],\n            \"priv_reqs\": [ \"soc\", \"esp_rom\", \"esp_system\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_gdbstub/libesp_gdbstub.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/gdbstub_transport.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/packet.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_hid\": {\n            \"alias\": \"idf::esp_hid\",\n            \"target\": \"___idf_esp_hid\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_hid\",\n            \"reqs\": [ \"esp_event\", \"bt\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hid/libesp_hid.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hidh.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hid/src/esp_hid_common.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_http_client\": {\n            \"alias\": \"idf::esp_http_client\",\n            \"target\": \"___idf_esp_http_client\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_http_client\",\n            \"reqs\": [ \"lwip\", \"esp_event\" ],\n            \"priv_reqs\": [ \"tcp_transport\", \"http_parser\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_client/libesp_http_client.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/esp_http_client.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_auth.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_header.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_client/lib/http_utils.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_http_server\": {\n            \"alias\": \"idf::esp_http_server\",\n            \"target\": \"___idf_esp_http_server\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_http_server\",\n            \"reqs\": [ \"http_parser\", \"esp_event\" ],\n            \"priv_reqs\": [ \"mbedtls\", \"lwip\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_http_server/libesp_http_server.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_main.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_parse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_sess.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_txrx.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_uri.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/httpd_ws.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_http_server/src/util/ctrl_sock.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_https_ota\": {\n            \"alias\": \"idf::esp_https_ota\",\n            \"target\": \"___idf_esp_https_ota\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_https_ota\",\n            \"reqs\": [ \"esp_http_client\", \"bootloader_support\", \"esp_app_format\", \"esp_event\" ],\n            \"priv_reqs\": [ \"log\", \"app_update\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_https_ota/libesp_https_ota.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_ota/src/esp_https_ota.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_https_server\": {\n            \"alias\": \"idf::esp_https_server\",\n            \"target\": \"___idf_esp_https_server\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_https_server\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_esp_https_server\",\n            \"reqs\": [ \"esp_http_server\", \"esp-tls\" ],\n            \"priv_reqs\": [ \"lwip\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"esp_hw_support\": {\n            \"alias\": \"idf::esp_hw_support\",\n            \"target\": \"___idf_esp_hw_support\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_hw_support\",\n            \"reqs\": [ \"soc\" ],\n            \"priv_reqs\": [ \"efuse\", \"spi_flash\", \"bootloader_support\", \"driver\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_hw_support/libesp_hw_support.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/cpu.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_memory_utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/cpu_region_protect.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_clk.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/clk_ctrl_os.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/hw_random.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/intr_alloc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mac_addr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/periph_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/revision.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/rtc_module.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modes.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_gpio.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_modem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/regi2c_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_gpio_reserve.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sar_periph_ctrl_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/io_mux.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_clk_tree.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_clk_tree_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/adc_share_hw_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_cpu.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/gdma.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/async_memcpy_impl_gdma.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/dma/esp_async_memcpy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/systimer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_hmac.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/esp_ds.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/mspi_timing_tuning.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/mspi_timing_config.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/sleep_wake_stub.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_clk_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_sleep.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/rtc_time.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/chip_info.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_crypto_lock.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp32s3/esp_memprot.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_hw_support/port/esp_memprot_conv.c\" ],\n            \"include_dirs\": [ \"include\", \"include/soc\", \"include/soc/esp32s3\" ]\n        },\n        \"esp_lcd\": {\n            \"alias\": \"idf::esp_lcd\",\n            \"target\": \"___idf_esp_lcd\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_lcd\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"driver\", \"esp_mm\", \"esp_psram\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_lcd/libesp_lcd.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i2c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_spi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_nt35510.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ssd1306.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_st7789.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_ops.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_io_i80.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_lcd/src/esp_lcd_panel_rgb.c\" ],\n            \"include_dirs\": [ \"include\", \"interface\" ]\n        },\n        \"esp_local_ctrl\": {\n            \"alias\": \"idf::esp_local_ctrl\",\n            \"target\": \"___idf_esp_local_ctrl\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_local_ctrl\",\n            \"reqs\": [ \"protocomm\", \"esp_https_server\" ],\n            \"priv_reqs\": [ \"protobuf-c\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_handler.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_mm\": {\n            \"alias\": \"idf::esp_mm\",\n            \"target\": \"___idf_esp_mm\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_mm\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"heap\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_mm/libesp_mm.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_mmu_map.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/port/esp32s3/ext_mem_layout.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_mm/esp_cache.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_netif\": {\n            \"alias\": \"idf::esp_netif\",\n            \"target\": \"___idf_esp_netif\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_netif\",\n            \"reqs\": [ \"esp_event\" ],\n            \"priv_reqs\": [ \"esp_netif_stack\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_netif/libesp_netif.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_handlers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_objects.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/esp_netif_defaults.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_sntp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/esp_netif_lwip_defaults.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/wlanif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/ethernetif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif/lwip/netif/esp_pbuf_ref.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_netif_stack\": {\n            \"alias\": \"idf::esp_netif_stack\",\n            \"target\": \"___idf_esp_netif_stack\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_netif_stack\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_esp_netif_stack\",\n            \"reqs\": [ \"lwip\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"esp_partition\": {\n            \"alias\": \"idf::esp_partition\",\n            \"target\": \"___idf_esp_partition\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_partition\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esp_system\", \"bootloader_support\", \"spi_flash\", \"app_update\", \"partition_table\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_partition/libesp_partition.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_partition/partition_target.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_phy\": {\n            \"alias\": \"idf::esp_phy\",\n            \"target\": \"___idf_esp_phy\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_phy\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"nvs_flash\", \"driver\", \"efuse\", \"esp_timer\", \"esp_wifi\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_phy/libesp_phy.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_override.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/lib_printf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/phy_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_phy/src/btbb_init.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3/include\" ]\n        },\n        \"esp_pm\": {\n            \"alias\": \"idf::esp_pm\",\n            \"target\": \"___idf_esp_pm\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_pm\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esp_system\", \"driver\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_pm/libesp_pm.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_locks.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_trace.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_pm/pm_impl.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_psram\": {\n            \"alias\": \"idf::esp_psram\",\n            \"target\": \"___idf_esp_psram\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_psram\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_esp_psram\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"heap\", \"spi_flash\", \"esp_mm\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_ringbuf\": {\n            \"alias\": \"idf::esp_ringbuf\",\n            \"target\": \"___idf_esp_ringbuf\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_ringbuf\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_ringbuf/libesp_ringbuf.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_ringbuf/ringbuf.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_rom\": {\n            \"alias\": \"idf::esp_rom\",\n            \"target\": \"___idf_esp_rom\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_rom\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"hal\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_rom/libesp_rom.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_crc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_sys.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_uart.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_spiflash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_efuse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_longjmp.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_systimer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_wdt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S\" ],\n            \"include_dirs\": [ \"include\", \"include/esp32s3\", \"esp32s3\" ]\n        },\n        \"esp_system\": {\n            \"alias\": \"idf::esp_system\",\n            \"target\": \"___idf_esp_system\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_system\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"spi_flash\", \"esp_timer\", \"esp_mm\", \"pthread\", \"bootloader_support\", \"efuse\", \"driver\", \"esp_partition\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_system/libesp_system.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_err.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/crosscore_int.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_ipc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/freertos_hooks.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/int_wdt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/panic.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/esp_system.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/startup.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/system_time.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/stack_check.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/ubsan.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/xt_wdt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/debug_stubs.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/cpu_start.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/panic_handler.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/esp_system_chip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/brownout.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/highint_hdl.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/clk.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/reset_reason.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/system_internal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/cache_err_int.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/soc/esp32s3/apb_backup_dma.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_arch.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/panic_handler_asm.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_helpers_asm.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/debug_stubs.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/trax.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_timer\": {\n            \"alias\": \"idf::esp_timer\",\n            \"target\": \"___idf_esp_timer\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_timer\",\n            \"reqs\": [ \"esp_common\" ],\n            \"priv_reqs\": [ \"soc\", \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_timer/libesp_timer.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/ets_timer_legacy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/system_time.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_timer/src/esp_timer_impl_systimer.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"esp_wifi\": {\n            \"alias\": \"idf::esp_wifi\",\n            \"target\": \"___idf_esp_wifi\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_esp_wifi\",\n            \"reqs\": [ \"esp_event\", \"esp_phy\", \"esp_netif\" ],\n            \"priv_reqs\": [ \"driver\", \"esptool_py\", \"esp_pm\", \"esp_timer\", \"nvs_flash\", \"wpa_supplicant\", \"hal\", \"lwip\", \"esp_coex\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/esp_wifi/libesp_wifi.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/mesh_event.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_netif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/wifi_default_ap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/esp32s3/esp_adapter.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esp_wifi/src/smartconfig_ack.c\" ],\n            \"include_dirs\": [ \"include\", \"wifi_apps/include\" ]\n        },\n        \"espcoredump\": {\n            \"alias\": \"idf::espcoredump\",\n            \"target\": \"___idf_espcoredump\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_espcoredump\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esp_partition\", \"spi_flash\", \"bootloader_support\", \"mbedtls\", \"esp_rom\", \"soc\", \"esp_system\", \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/espcoredump/libespcoredump.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_checksum.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_flash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_uart.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_elf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/core_dump_binary.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/espcoredump/src/port/xtensa/core_dump_port.c\" ],\n            \"include_dirs\": [ \"include\", \"include/port/xtensa\" ]\n        },\n        \"esptool_py\": {\n            \"alias\": \"idf::esptool_py\",\n            \"target\": \"___idf_esptool_py\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/esptool_py\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_esptool_py\",\n            \"reqs\": [ \"bootloader\" ],\n            \"priv_reqs\": [ \"partition_table\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"fatfs\": {\n            \"alias\": \"idf::fatfs\",\n            \"target\": \"___idf_fatfs\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_fatfs\",\n            \"reqs\": [ \"wear_levelling\", \"sdmmc\" ],\n            \"priv_reqs\": [ \"vfs\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/fatfs/libfatfs.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_rawflash.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_sdmmc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/diskio/diskio_wl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ff.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/port/freertos/ffsystem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/src/ffunicode.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_sdmmc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/fatfs/vfs/vfs_fat_spiflash.c\" ],\n            \"include_dirs\": [ \"diskio\", \"vfs\", \"src\" ]\n        },\n        \"freertos\": {\n            \"alias\": \"idf::freertos\",\n            \"target\": \"___idf_freertos\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_freertos\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"esp_pm\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/freertos/libfreertos.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/heap_idf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/idf_additions.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/list.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/queue.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/tasks.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/timers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/croutine.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/event_groups.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/stream_buffer.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/app_startup.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-openocd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/port_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/port_systick.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/esp_additions/freertos_v8_compat.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S\" ],\n            \"include_dirs\": [ \"FreeRTOS-Kernel/include\", \"FreeRTOS-Kernel/portable/xtensa/include\", \"esp_additions/include/freertos\", \"esp_additions/include\", \"esp_additions/arch/xtensa/include\" ]\n        },\n        \"hal\": {\n            \"alias\": \"idf::hal\",\n            \"target\": \"___idf_hal\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_hal\",\n            \"reqs\": [ \"soc\", \"esp_rom\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/hal/libhal.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mpu_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/efuse_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/efuse_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mmu_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/cache_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rtc_io_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gpio_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/uart_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_oneshot_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/clk_tree_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_encrypt_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/systimer_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/timer_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ledc_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2c_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/rmt_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/pcnt_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/mcpwm_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/twai_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/gdma_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/i2s_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sdm_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/adc_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/lcd_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/sha_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/aes_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/brownout_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hal_iram.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_slave_hd_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/hmac_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/ds_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/spi_flash_hal_gpspi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/touch_sensor_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_phy_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/xt_wdt_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/touch_sensor_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/esp32s3/rtc_cntl_hal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/hal/usb_dwc_hal.c\" ],\n            \"include_dirs\": [ \"esp32s3/include\", \"include\", \"platform_port/include\" ]\n        },\n        \"heap\": {\n            \"alias\": \"idf::heap\",\n            \"target\": \"___idf_heap\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_heap\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/heap/libheap.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/heap_caps_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/multi_heap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/tlsf/tlsf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/memory_layout_utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/heap/port/esp32s3/memory_layout.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"http_parser\": {\n            \"alias\": \"idf::http_parser\",\n            \"target\": \"___idf_http_parser\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_http_parser\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/http_parser/libhttp_parser.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/http_parser/http_parser.c\" ],\n            \"include_dirs\": [ \".\" ]\n        },\n        \"idf_test\": {\n            \"alias\": \"idf::idf_test\",\n            \"target\": \"___idf_idf_test\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/idf_test\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_idf_test\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": [ \"include\", \"include/esp32s3\" ]\n        },\n        \"ieee802154\": {\n            \"alias\": \"idf::ieee802154\",\n            \"target\": \"___idf_ieee802154\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ieee802154\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_ieee802154\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esp_phy\", \"driver\", \"esp_timer\", \"esp_coex\", \"soc\", \"hal\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"json\": {\n            \"alias\": \"idf::json\",\n            \"target\": \"___idf_json\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/json\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_json\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/json/libjson.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/json/cJSON/cJSON_Utils.c\" ],\n            \"include_dirs\": [ \"cJSON\" ]\n        },\n        \"log\": {\n            \"alias\": \"idf::log\",\n            \"target\": \"___idf_log\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_log\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"hal\", \"esp_hw_support\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/log/liblog.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_buffers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/log/log_freertos.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"lwip\": {\n            \"alias\": \"idf::lwip\",\n            \"target\": \"___idf_lwip\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_lwip\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"vfs\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/lwip/liblwip.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/sntp/sntp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_lib.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/api_msg.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/err.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/if_api.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netbuf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netdb.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/netifapi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/sockets.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/api/tcpip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/sntp/sntp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/apps/netbiosns/netbiosns.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/def.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/dns.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/inet_chksum.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/mem.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/memp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/netif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/pbuf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/raw.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/stats.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/sys.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_in.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/tcp_out.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/timeouts.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/udp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/autoip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/dhcp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/etharp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/icmp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/igmp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_napt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_addr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv4/ip4_frag.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/dhcp6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ethip6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/icmp6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/inet6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_addr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/ip6_frag.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/mld6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/core/ipv6/nd6.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ethernet.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/bridgeif_fdb.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/slipif.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/auth.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ccp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-md5.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap-new.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/chap_ms.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/demand.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ecp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/eui64.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/fsm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipcp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ipv6cp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/lcp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/magic.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/mppe.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/multilink.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/ppp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppapi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppcrypt.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppoe.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppol2tp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/pppos.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/upap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/lwip/src/netif/ppp/vj.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/tcp_isn_default.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/hooks/lwip_default_hooks.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/debug/lwip_debug.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/sockets_ext.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/freertos/sys_arch.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/port/esp32xx/vfs_lwip.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/esp_ping.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/ping/ping_sock.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/lwip/apps/dhcpserver/dhcpserver.c\" ],\n            \"include_dirs\": [ \"include\", \"include/apps\", \"include/apps/sntp\", \"lwip/src/include\", \"port/include\", \"port/freertos/include/\", \"port/esp32xx/include\", \"port/esp32xx/include/arch\" ]\n        },\n        \"main\": {\n            \"alias\": \"idf::main\",\n            \"target\": \"___idf_main\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_main\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/main/libmain.a\",\n            \"sources\": [ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/main.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/decode_png.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/pngle.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/bme680.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/i2cdev.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/VL53L1X_api.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/VL53L1X_calibration.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/RdWr_Byte.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/ds3231.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/icm42670.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/main/mcp342x.c\" ],\n            \"include_dirs\": [ \".\" ]\n        },\n        \"mbedtls\": {\n            \"alias\": \"idf::mbedtls\",\n            \"target\": \"___idf_mbedtls\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_mbedtls\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"esp_hw_support\", \"esp_pm\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/libmbedtls.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/x509_crt_bundle.S\" ],\n            \"include_dirs\": [ \"port/include\", \"mbedtls/include\", \"mbedtls/library\", \"esp_crt_bundle/include\" ]\n        },\n        \"mqtt\": {\n            \"alias\": \"idf::mqtt\",\n            \"target\": \"___idf_mqtt\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_mqtt\",\n            \"reqs\": [ \"esp_event\", \"tcp_transport\" ],\n            \"priv_reqs\": [ \"esp_timer\", \"http_parser\", \"esp_hw_support\", \"heap\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mqtt/libmqtt.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/mqtt_client.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_msg.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/mqtt_outbox.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c\" ],\n            \"include_dirs\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/mqtt/esp-mqtt/include\" ]\n        },\n        \"newlib\": {\n            \"alias\": \"idf::newlib\",\n            \"target\": \"___idf_newlib\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_newlib\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"soc\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/newlib/libnewlib.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/abort.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/assert.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/heap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/locks.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/poll.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/pthread.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/random.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/reent_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/newlib_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/syscalls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/termios.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/stdatomic.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/time.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/sysconf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/realpath.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/newlib/port/esp_time_impl.c\" ],\n            \"include_dirs\": [ \"platform_include\" ]\n        },\n        \"nvs_flash\": {\n            \"alias\": \"idf::nvs_flash\",\n            \"target\": \"___idf_nvs_flash\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_nvs_flash\",\n            \"reqs\": [ \"esp_partition\" ],\n            \"priv_reqs\": [ \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/nvs_flash/libnvs_flash.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_api.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_cxx_api.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_item_hash_list.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_page.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_pagemanager.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_storage.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_simple.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_handle_locked.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_lookup.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_partition_manager.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/nvs_flash/src/nvs_types.cpp\" ],\n            \"include_dirs\": [ \"include\", \"../spi_flash/include\" ]\n        },\n        \"openthread\": {\n            \"alias\": \"idf::openthread\",\n            \"target\": \"___idf_openthread\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/openthread\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_openthread\",\n            \"reqs\": [ \"esp_netif\", \"lwip\", \"driver\" ],\n            \"priv_reqs\": [ \"console\", \"esp_event\", \"esp_partition\", \"esp_timer\", \"ieee802154\", \"mbedtls\", \"nvs_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"partition_table\": {\n            \"alias\": \"idf::partition_table\",\n            \"target\": \"___idf_partition_table\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/partition_table\",\n            \"type\": \"CONFIG_ONLY\",\n            \"lib\": \"__idf_partition_table\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"esptool_py\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"\",\n            \"sources\": [],\n            \"include_dirs\": []\n        },\n        \"perfmon\": {\n            \"alias\": \"idf::perfmon\",\n            \"target\": \"___idf_perfmon\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_perfmon\",\n            \"reqs\": [ \"xtensa\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/perfmon/libperfmon.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_access.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_apis.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/perfmon/xtensa_perfmon_masks.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"protobuf-c\": {\n            \"alias\": \"idf::protobuf-c\",\n            \"target\": \"___idf_protobuf-c\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_protobuf-c\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protobuf-c/libprotobuf-c.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c\" ],\n            \"include_dirs\": [ \"protobuf-c\" ]\n        },\n        \"protocomm\": {\n            \"alias\": \"idf::protocomm\",\n            \"target\": \"___idf_protocomm\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_protocomm\",\n            \"reqs\": [ \"bt\" ],\n            \"priv_reqs\": [ \"protobuf-c\", \"mbedtls\", \"console\", \"esp_http_server\", \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/protocomm/libprotocomm.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/common/protocomm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/constants.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec0.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec1.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/sec2.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/proto-c/session.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_console.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/transports/protocomm_httpd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security0.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security1.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/security/security2.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c\" ],\n            \"include_dirs\": [ \"include/common\", \"include/security\", \"include/transports\" ]\n        },\n        \"pthread\": {\n            \"alias\": \"idf::pthread\",\n            \"target\": \"___idf_pthread\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_pthread\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/pthread/libpthread.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_cond_var.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_local_storage.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_rwlock.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/pthread/pthread_semaphore.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"sdmmc\": {\n            \"alias\": \"idf::sdmmc\",\n            \"target\": \"___idf_sdmmc\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_sdmmc\",\n            \"reqs\": [ \"driver\" ],\n            \"priv_reqs\": [ \"soc\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/sdmmc/libsdmmc.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_cmd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_io.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_mmc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/sdmmc/sdmmc_sd.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"soc\": {\n            \"alias\": \"idf::soc\",\n            \"target\": \"___idf_soc\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_soc\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/soc/libsoc.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/lldesc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/dport_access_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/interrupts.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gpio_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/uart_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/adc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/dedic_gpio_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/gdma_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/spi_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/ledc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/pcnt_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rmt_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdm_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2s_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/i2c_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/temperature_sensor_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/timer_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/lcd_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/mcpwm_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/sdmmc_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/touch_sensor_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/twai_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/usb_otg_periph.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/soc/esp32s3/rtc_io_periph.c\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3\", \"esp32s3/include\" ]\n        },\n        \"spi_flash\": {\n            \"alias\": \"idf::spi_flash\",\n            \"target\": \"___idf_spi_flash\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_spi_flash\",\n            \"reqs\": [ \"hal\" ],\n            \"priv_reqs\": [ \"bootloader_support\", \"app_update\", \"soc\", \"driver\", \"esp_mm\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spi_flash/libspi_flash.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_brownout_hook.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_hpm_enable.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_drivers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_generic.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_issi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_gd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_winbond.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_boya.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_mxic_opi.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_chip_th.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/memspi_host_driver.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/cache_utils.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_mmap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/flash_ops.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_wrap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_api.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/esp_flash_spi_init.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_app.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spi_flash/spi_flash_os_func_noos.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"spiffs\": {\n            \"alias\": \"idf::spiffs\",\n            \"target\": \"___idf_spiffs\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_spiffs\",\n            \"reqs\": [ \"esp_partition\" ],\n            \"priv_reqs\": [ \"bootloader_support\", \"esptool_py\", \"vfs\", \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/spiffs/libspiffs.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs_api.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_cache.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_check.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_gc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_hydrogen.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/spiffs/src/spiffs_nucleus.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/spiffs/esp_spiffs.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"st7789\": {\n            \"alias\": \"idf::st7789\",\n            \"target\": \"___idf_st7789\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_st7789\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/st7789/libst7789.a\",\n            \"sources\": [ \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/st7789.c\", \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/components/st7789/fontx.c\" ],\n            \"include_dirs\": [ \".\" ]\n        },\n        \"tcp_transport\": {\n            \"alias\": \"idf::tcp_transport\",\n            \"target\": \"___idf_tcp_transport\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_tcp_transport\",\n            \"reqs\": [ \"esp-tls\", \"lwip\", \"esp_timer\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/tcp_transport/libtcp_transport.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ssl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_internal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_socks_proxy.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/tcp_transport/transport_ws.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"touch_element\": {\n            \"alias\": \"idf::touch_element\",\n            \"target\": \"___idf_touch_element\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_touch_element\",\n            \"reqs\": [ \"driver\" ],\n            \"priv_reqs\": [ \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/touch_element/libtouch_element.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_element.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_button.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_slider.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/touch_element/touch_matrix.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"ulp\": {\n            \"alias\": \"idf::ulp\",\n            \"target\": \"___idf_ulp\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_ulp\",\n            \"reqs\": [ \"driver\", \"esp_adc\" ],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/ulp/libulp.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/ulp/ulp_common/ulp_adc.c\" ],\n            \"include_dirs\": [ \"ulp_common/include\", \"ulp_common/include/esp32s3\" ]\n        },\n        \"unity\": {\n            \"alias\": \"idf::unity\",\n            \"target\": \"___idf_unity\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_unity\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/unity/libunity.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity/src/unity.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_runner.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_freertos.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_cache.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_utils_memory.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/unity_port_esp32.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/unity/port/esp/unity_utils_memory_esp.c\" ],\n            \"include_dirs\": [ \"include\", \"unity/src\" ]\n        },\n        \"usb\": {\n            \"alias\": \"idf::usb\",\n            \"target\": \"___idf_usb\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_usb\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"driver\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/usb/libusb.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hcd_dwc.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/hub.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_helpers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_host.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_private.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usbh.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/usb/usb_phy.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"vfs\": {\n            \"alias\": \"idf::vfs\",\n            \"target\": \"___idf_vfs\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_vfs\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"driver\", \"esp_timer\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/vfs/libvfs.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_eventfd.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_uart.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_semihost.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_console.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/vfs/vfs_usb_serial_jtag.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"wear_levelling\": {\n            \"alias\": \"idf::wear_levelling\",\n            \"target\": \"___idf_wear_levelling\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_wear_levelling\",\n            \"reqs\": [ \"esp_partition\" ],\n            \"priv_reqs\": [ \"spi_flash\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wear_levelling/libwear_levelling.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/Partition.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/SPI_Flash.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Perf.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Ext_Safe.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/WL_Flash.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/crc32.cpp\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wear_levelling/wear_levelling.cpp\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"wifi_provisioning\": {\n            \"alias\": \"idf::wifi_provisioning\",\n            \"target\": \"___idf_wifi_provisioning\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_wifi_provisioning\",\n            \"reqs\": [ \"lwip\", \"protocomm\" ],\n            \"priv_reqs\": [ \"protobuf-c\", \"bt\", \"json\", \"esp_timer\", \"esp_wifi\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wifi_provisioning/libwifi_provisioning.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_config.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_scan.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/wifi_ctrl.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/manager.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/handlers.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_console.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_config.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wifi_provisioning/src/scheme_softap.c\" ],\n            \"include_dirs\": [ \"include\" ]\n        },\n        \"wpa_supplicant\": {\n            \"alias\": \"idf::wpa_supplicant\",\n            \"target\": \"___idf_wpa_supplicant\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_wpa_supplicant\",\n            \"reqs\": [],\n            \"priv_reqs\": [ \"mbedtls\", \"esp_timer\", \"esp_wifi\" ],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/wpa_supplicant/libwpa_supplicant.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/os_xtensa.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/port/eloop.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ap_config.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_1x.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/wpa_auth_ie.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/pmksa_cache_auth.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/sta_info.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/ieee802_11.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/ap/comeback_token.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/dragonfly.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/wpa_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/bitfield.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-siv.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-kdf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ccmp.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-gcm.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/crypto_ops.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_group5.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/dh_groups.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/ms_funcs.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tlsprf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-tlsprf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-tlsprf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha256-prf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-prf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha384-prf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/md4-internal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/sha1-tprf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_common/eap_wsc_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/ieee802_11_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/chap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_peap_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_tls_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_ttls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/mschapv2.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/rsn_supp/wpa_ie.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/base64.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/ext_password.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/uuid.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpabuf.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/wpa_debug.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/utils/json.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_build.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_parse.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_attr_process.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_dev_attr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/wps/wps_enrollee.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/sae_pk.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/bss.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/common/scan.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_scan.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_common.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wps.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_owe.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/rc4.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/des-internal.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-wrap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-unwrap.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/wpa_supplicant/src/crypto/aes-ccm.c\" ],\n            \"include_dirs\": [ \"include\", \"port/include\", \"esp_supplicant/include\" ]\n        },\n        \"xtensa\": {\n            \"alias\": \"idf::xtensa\",\n            \"target\": \"___idf_xtensa\",\n            \"prefix\": \"idf\",\n            \"dir\": \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa\",\n            \"type\": \"LIBRARY\",\n            \"lib\": \"__idf_xtensa\",\n            \"reqs\": [],\n            \"priv_reqs\": [],\n            \"managed_reqs\": [],\n            \"managed_priv_reqs\": [],\n            \"file\": \"C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/xtensa/libxtensa.a\",\n            \"sources\": [ \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/eri.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xt_trax.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr.c\", \"C:/Espressif/frameworks/esp-idf-v5.1.2/components/xtensa/xtensa_intr_asm.S\" ],\n            \"include_dirs\": [ \"include\", \"esp32s3/include\" ]\n        }\n    },\n    \"debug_prefix_map_gdbinit\": \"\"\n}\n"
  },
  {
    "path": "Code/build/project_elf_src_esp32s3.c",
    "content": ""
  },
  {
    "path": "Code/build/storage-flash_args",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x110000 storage.bin\n"
  },
  {
    "path": "Code/build/storage-flash_args.in",
    "content": "--flash_mode dio --flash_freq 80m --flash_size 2MB\n0x110000 storage.bin"
  },
  {
    "path": "Code/build/x509_crt_bundle.S",
    "content": "/* * Data converted from C:/Users/Jatki/OneDrive/Documents/ESP/Gateway/build/esp-idf/mbedtls/x509_crt_bundle\n */\n.data\n.section .rodata.embedded\n\n.global x509_crt_bundle\nx509_crt_bundle:\n\n.global _binary_x509_crt_bundle_start\n_binary_x509_crt_bundle_start: /* for objcopy compatibility */\n.byte 0x00, 0x8a, 0x00, 0x36, 0x01, 0x26, 0x30, 0x34, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09\n.byte 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc8, 0x68, 0xf1\n.byte 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec, 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26\n.byte 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40, 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8\n.byte 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69, 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd\n.byte 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec, 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b\n.byte 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81, 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3\n.byte 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96, 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31\n.byte 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5, 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56\n.byte 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc, 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2\n.byte 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48, 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6\n.byte 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32, 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78\n.byte 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7, 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c\n.byte 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77, 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87\n.byte 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a, 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18\n.byte 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26, 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4\n.byte 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb, 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62\n.byte 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a, 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x39, 0x02, 0x26, 0x30, 0x37, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f\n.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f\n.byte 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x31, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26, 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16\n.byte 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d, 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0\n.byte 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d, 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c\n.byte 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac, 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a\n.byte 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8, 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30\n.byte 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae, 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b\n.byte 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e, 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe\n.byte 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34, 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f\n.byte 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36, 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18\n.byte 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d, 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35\n.byte 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09, 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c\n.byte 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72, 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d\n.byte 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1, 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53\n.byte 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80, 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd\n.byte 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a, 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5\n.byte 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc, 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc\n.byte 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d, 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb\n.byte 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16, 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17\n.byte 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d, 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e\n.byte 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3, 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3\n.byte 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26, 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32\n.byte 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68, 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a\n.byte 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2, 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53\n.byte 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36, 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d\n.byte 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd, 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07\n.byte 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7, 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17\n.byte 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea, 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f\n.byte 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b, 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51\n.byte 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc, 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f\n.byte 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58, 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16\n.byte 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a, 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3\n.byte 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9, 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3a, 0x02, 0x26, 0x30, 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13\n.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49, 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e\n.byte 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e, 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65\n.byte 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe, 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5\n.byte 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7, 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72\n.byte 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1, 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56\n.byte 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d, 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3\n.byte 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26, 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb\n.byte 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78, 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e\n.byte 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d, 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2\n.byte 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68, 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e\n.byte 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55, 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1\n.byte 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5, 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2\n.byte 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90, 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e\n.byte 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0, 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4\n.byte 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09, 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f\n.byte 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39, 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9\n.byte 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a, 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3\n.byte 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9, 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69\n.byte 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b, 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50\n.byte 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a, 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad\n.byte 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b, 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47\n.byte 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53, 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb\n.byte 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7, 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c\n.byte 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0, 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3\n.byte 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c, 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f\n.byte 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9, 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f\n.byte 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5, 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb\n.byte 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6, 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04\n.byte 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a, 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2\n.byte 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf, 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad\n.byte 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82, 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e\n.byte 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3, 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72\n.byte 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae, 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16\n.byte 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b, 0x01, 0x26, 0x30, 0x39, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30\n.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09\n.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00\n.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2, 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5\n.byte 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68\n.byte 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43\n.byte 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36\n.byte 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0\n.byte 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56\n.byte 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa\n.byte 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f\n.byte 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30\n.byte 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66\n.byte 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d\n.byte 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2\n.byte 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d\n.byte 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38\n.byte 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f\n.byte 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24\n.byte 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b\n.byte 0x02, 0x26, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55\n.byte 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a\n.byte 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61\n.byte 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0x96\n.byte 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51\n.byte 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c\n.byte 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a\n.byte 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a\n.byte 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac, 0x37, 0x44, 0x79, 0x85, 0x81\n.byte 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7\n.byte 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e\n.byte 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8\n.byte 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a\n.byte 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3\n.byte 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65\n.byte 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f\n.byte 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c\n.byte 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0\n.byte 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51\n.byte 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f\n.byte 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b\n.byte 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57\n.byte 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4\n.byte 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57\n.byte 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92\n.byte 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20\n.byte 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e\n.byte 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86\n.byte 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36\n.byte 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47\n.byte 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72\n.byte 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62\n.byte 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5\n.byte 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98\n.byte 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59\n.byte 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x3b, 0x00, 0x5b, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41\n.byte 0x20, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06\n.byte 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7\n.byte 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d\n.byte 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b\n.byte 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45\n.byte 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb, 0x66, 0xde, 0x00, 0x3b, 0x00\n.byte 0x78, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53\n.byte 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f\n.byte 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a\n.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x34, 0x30, 0x76, 0x30, 0x10\n.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22\n.byte 0x03, 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b\n.byte 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2\n.byte 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81\n.byte 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0\n.byte 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88\n.byte 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0\n.byte 0x1e, 0xfa, 0x2e, 0x5c, 0x00, 0x3d, 0x02, 0x26, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03\n.byte 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d\n.byte 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xba, 0x71, 0x80, 0x7a, 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13\n.byte 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c, 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9\n.byte 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6, 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7\n.byte 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17, 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17\n.byte 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4, 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91\n.byte 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77, 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43\n.byte 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0, 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71\n.byte 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13, 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1\n.byte 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde, 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21\n.byte 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30, 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10\n.byte 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17, 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b\n.byte 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf, 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0\n.byte 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa, 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe\n.byte 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b, 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22\n.byte 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4, 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01\n.byte 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d, 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9\n.byte 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c, 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5\n.byte 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8, 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a\n.byte 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e, 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb\n.byte 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68, 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c\n.byte 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a, 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08\n.byte 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9, 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e\n.byte 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9, 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d\n.byte 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49, 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07\n.byte 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d, 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1\n.byte 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90, 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59\n.byte 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd, 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e\n.byte 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35, 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c\n.byte 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02, 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5\n.byte 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa, 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71\n.byte 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3, 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2\n.byte 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27, 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9\n.byte 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3d, 0x01, 0x26, 0x30\n.byte 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11\n.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47\n.byte 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x63, 0x65, 0x72, 0x74\n.byte 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0x33, 0xb9\n.byte 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b, 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22\n.byte 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61, 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54\n.byte 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b, 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f\n.byte 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1, 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24\n.byte 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3, 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee\n.byte 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c, 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5\n.byte 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed, 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6\n.byte 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a, 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d\n.byte 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb, 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30\n.byte 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed, 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e\n.byte 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0, 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33\n.byte 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e, 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28\n.byte 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b, 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82\n.byte 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7, 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0\n.byte 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b, 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e\n.byte 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac, 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x3e, 0x01, 0x26, 0x30, 0x3c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a\n.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f, 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6\n.byte 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9, 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47\n.byte 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8, 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35\n.byte 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62, 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7\n.byte 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95, 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14\n.byte 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6, 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69\n.byte 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74, 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73\n.byte 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03, 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02\n.byte 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5, 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3\n.byte 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74, 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35\n.byte 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2, 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d\n.byte 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1, 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99\n.byte 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc, 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e\n.byte 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f, 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f\n.byte 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91, 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55\n.byte 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f, 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0\n.byte 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3f, 0x02, 0x26, 0x30, 0x3d\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30\n.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74\n.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x55, 0x43, 0x41, 0x20, 0x47\n.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6\n.byte 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24, 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99\n.byte 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b, 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5\n.byte 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed, 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78\n.byte 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93, 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5\n.byte 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec, 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae\n.byte 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b, 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c\n.byte 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d, 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7\n.byte 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11, 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a\n.byte 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c, 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f\n.byte 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82, 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52\n.byte 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d, 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d\n.byte 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f, 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60\n.byte 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71, 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a\n.byte 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d, 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1\n.byte 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed, 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32\n.byte 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e, 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20\n.byte 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7, 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec\n.byte 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1, 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62\n.byte 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73, 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8\n.byte 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f, 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba\n.byte 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0, 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c\n.byte 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21, 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5\n.byte 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e, 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17\n.byte 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18, 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0\n.byte 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1, 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc\n.byte 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4, 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2\n.byte 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6, 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57\n.byte 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29, 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e\n.byte 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a, 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d\n.byte 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f, 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39\n.byte 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47, 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc\n.byte 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15, 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x3f, 0x00, 0x78, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03\n.byte 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce\n.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xde, 0x6f\n.byte 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1, 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97\n.byte 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68, 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24\n.byte 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34, 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0\n.byte 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd, 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29\n.byte 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd, 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8\n.byte 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9, 0x44, 0x8d, 0xe4, 0x76, 0x00, 0x3f\n.byte 0x02, 0x26, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55\n.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74\n.byte 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11\n.byte 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52\n.byte 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01\n.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02\n.byte 0x01, 0x00, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4, 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0\n.byte 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c, 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03\n.byte 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf, 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf\n.byte 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02, 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd\n.byte 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb, 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7\n.byte 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc, 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e\n.byte 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5, 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b\n.byte 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03, 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71\n.byte 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a, 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0\n.byte 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36, 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c\n.byte 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8, 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f\n.byte 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01, 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17\n.byte 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36, 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0\n.byte 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2, 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a\n.byte 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7, 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e\n.byte 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9, 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69\n.byte 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1, 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc\n.byte 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1, 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d\n.byte 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49, 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc\n.byte 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89, 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85\n.byte 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78, 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37\n.byte 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11, 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b\n.byte 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91, 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4\n.byte 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b, 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56\n.byte 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76, 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a\n.byte 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b, 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f\n.byte 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43, 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60\n.byte 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e, 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35\n.byte 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc, 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49\n.byte 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2, 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf\n.byte 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10, 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a\n.byte 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7, 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9\n.byte 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x41, 0x01, 0x26, 0x30, 0x3f, 0x31, 0x24, 0x30\n.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20\n.byte 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20\n.byte 0x43, 0x6f, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53\n.byte 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 0x33, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xdf, 0xaf, 0xe9\n.byte 0x97, 0x50, 0x08, 0x83, 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c\n.byte 0x6b, 0x30, 0xca, 0x5b, 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8\n.byte 0x33, 0x76, 0x49, 0x2a, 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb\n.byte 0x65, 0xee, 0xfc, 0xd3, 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77\n.byte 0xb0, 0x12, 0x7b, 0xb5, 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06\n.byte 0x32, 0x83, 0xa2, 0x7e, 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a\n.byte 0x31, 0xfd, 0x50, 0xbd, 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea\n.byte 0x4b, 0x61, 0x81, 0xec, 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e\n.byte 0x0c, 0xda, 0x09, 0x8e, 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab\n.byte 0x2e, 0xbd, 0x70, 0xad, 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34\n.byte 0xd6, 0x30, 0x89, 0xff, 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c\n.byte 0x92, 0x1e, 0x3d, 0x64, 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5\n.byte 0x26, 0xec, 0x38, 0x55, 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5\n.byte 0x9a, 0x9b, 0x8d, 0x1d, 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab\n.byte 0xda, 0x6e, 0xf1, 0x3e, 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b\n.byte 0x19, 0x2a, 0xb6, 0x29, 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b\n.byte 0x43, 0x45, 0x52, 0x54, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52\n.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f\n.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d\n.byte 0x44, 0x74, 0x74, 0x87, 0xfe, 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91\n.byte 0xe7, 0x0b, 0x6f, 0xce, 0x3b, 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7\n.byte 0x5e, 0x8f, 0x57, 0xeb, 0xd3, 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6\n.byte 0x0f, 0xa9, 0x88, 0xd8, 0x2e, 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5\n.byte 0x16, 0x5f, 0x6b, 0x5b, 0x00, 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f\n.byte 0x1d, 0x42, 0xe5, 0x8f, 0xcf, 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22\n.byte 0x67, 0xe4, 0x69, 0xb0, 0x68, 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef\n.byte 0xc4, 0xec, 0x4b, 0xbd, 0x6a, 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab\n.byte 0xab, 0x35, 0x9a, 0x4c, 0xe4, 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0\n.byte 0x29, 0xd3, 0x5c, 0xf9, 0xc6, 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38\n.byte 0x40, 0xb0, 0xfe, 0x82, 0x44, 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15\n.byte 0xd3, 0xb6, 0x11, 0x69, 0x7b, 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23\n.byte 0x59, 0x9b, 0xc9, 0x22, 0x84, 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb\n.byte 0xa6, 0x65, 0xf3, 0x69, 0x75, 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6\n.byte 0xd1, 0x4e, 0xa8, 0xd9, 0x8a, 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9\n.byte 0xae, 0xe5, 0xcf, 0x0d, 0x6e, 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3\n.byte 0x20, 0x2f, 0x7f, 0xfb, 0x14, 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3\n.byte 0x62, 0x5f, 0xeb, 0x35, 0x4b, 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e\n.byte 0x86, 0xe2, 0xa3, 0x76, 0x8f, 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06\n.byte 0xff, 0x12, 0x46, 0xac, 0x78, 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15\n.byte 0x4f, 0x16, 0x89, 0x5b, 0xbd, 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb\n.byte 0x1f, 0x67, 0xc5, 0x45, 0x8e, 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b\n.byte 0x3d, 0xff, 0x51, 0x77, 0x76, 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9\n.byte 0x50, 0x1f, 0x1f, 0x7a, 0x99, 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7\n.byte 0x9c, 0x61, 0xb3, 0x35, 0x98, 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92\n.byte 0xcf, 0xd9, 0x12, 0x14, 0x64, 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3\n.byte 0xc9, 0xfa, 0x99, 0xf7, 0x46, 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c\n.byte 0x50, 0xd8, 0x83, 0x65, 0x83, 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97\n.byte 0x6b, 0xd6, 0x5d, 0x13, 0xd3, 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d\n.byte 0x1e, 0xcb, 0x9f, 0xa5, 0xa6, 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29\n.byte 0x13, 0x3e, 0xa3, 0xfd, 0x4f, 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44\n.byte 0x4b, 0x8a, 0x88, 0x44, 0x9c, 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66\n.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x0c, 0x13, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50\n.byte 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82\n.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd\n.byte 0xf5, 0x9f, 0x8a, 0xe3, 0xf6, 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0\n.byte 0x33, 0x2a, 0xdc, 0x8d, 0x20, 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68\n.byte 0xcf, 0x8e, 0x51, 0xa3, 0x85, 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1\n.byte 0x97, 0x57, 0xd8, 0x48, 0x29, 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18\n.byte 0x9a, 0x1e, 0x24, 0xa2, 0x4f, 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4\n.byte 0x58, 0xee, 0x26, 0x4d, 0xc9, 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15\n.byte 0xe5, 0xf8, 0x8c, 0xc8, 0xd9, 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25\n.byte 0xb7, 0xba, 0xaa, 0x55, 0x41, 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf\n.byte 0x66, 0xc7, 0xe9, 0xff, 0x2b, 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89\n.byte 0xf8, 0x7a, 0x00, 0x56, 0xde, 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf\n.byte 0x0b, 0x77, 0x32, 0xeb, 0x62, 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06\n.byte 0x7a, 0x30, 0xc8, 0x29, 0xbf, 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f\n.byte 0xbc, 0x53, 0x12, 0x17, 0x9c, 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25\n.byte 0x49, 0x9d, 0x18, 0xf2, 0xee, 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc\n.byte 0xef, 0x2e, 0x92, 0x90, 0x05, 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a\n.byte 0xd8, 0xf9, 0x73, 0xa7, 0x2c, 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68\n.byte 0x09, 0x2f, 0xb8, 0xf8, 0xdc, 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a\n.byte 0xa7, 0x38, 0x48, 0x6c, 0xb3, 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78\n.byte 0x77, 0xba, 0x43, 0xea, 0x48, 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c\n.byte 0x58, 0x5c, 0xf1, 0xee, 0xa4, 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd\n.byte 0x3c, 0xb3, 0xd3, 0x48, 0x4b, 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65\n.byte 0x3e, 0xa4, 0x1e, 0xc1, 0x07, 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55\n.byte 0x21, 0xef, 0xba, 0xdc, 0x4c, 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47\n.byte 0x46, 0xd2, 0x08, 0x99, 0x16, 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01\n.byte 0x1e, 0x3c, 0x48, 0x56, 0x49, 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1\n.byte 0x6f, 0x66, 0xe9, 0x72, 0x47, 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c\n.byte 0xc5, 0x94, 0x7e, 0x61, 0xc4, 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77\n.byte 0xb3, 0xbc, 0x60, 0x69, 0x56, 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd\n.byte 0x48, 0xed, 0x84, 0x1f, 0x7e, 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53\n.byte 0x90, 0x78, 0x4e, 0x2d, 0x1a, 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0\n.byte 0x00, 0xe2, 0x2e, 0x6b, 0xea, 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8\n.byte 0xdc, 0xf6, 0xb2, 0x79, 0x8a, 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x44, 0x02, 0x26\n.byte 0x30, 0x42, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43\n.byte 0x56, 0x52, 0x41, 0x49, 0x5a, 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c\n.byte 0x07, 0x50, 0x4b, 0x49, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x0c, 0x04, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x45, 0x53, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a\n.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66\n.byte 0x9a, 0x74, 0x5f, 0xd0, 0xd9, 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33\n.byte 0xc2, 0x44, 0xa3, 0xdf, 0x9a, 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f\n.byte 0xbb, 0xc8, 0x0c, 0x8e, 0x6a, 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c\n.byte 0xf0, 0x63, 0xb3, 0x90, 0x5a, 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1\n.byte 0x01, 0x72, 0x84, 0xb0, 0x7d, 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6\n.byte 0x0e, 0x82, 0xd2, 0x45, 0x85, 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1\n.byte 0xc2, 0xcb, 0x03, 0xbe, 0x8c, 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a\n.byte 0xe8, 0xe9, 0x37, 0xa7, 0x18, 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17\n.byte 0x84, 0x18, 0xa5, 0xc8, 0xda, 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a\n.byte 0x9d, 0x0a, 0xa1, 0x57, 0x43, 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b\n.byte 0xd8, 0xbc, 0x4c, 0x8d, 0x28, 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae\n.byte 0xed, 0xae, 0x03, 0x22, 0xb8, 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce\n.byte 0x0a, 0x66, 0x9d, 0xd1, 0x40, 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f\n.byte 0xc0, 0xf2, 0x9f, 0xf8, 0x7b, 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23\n.byte 0xab, 0xc6, 0xc1, 0x0f, 0x92, 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45\n.byte 0x13, 0x84, 0xe6, 0x26, 0x5e, 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06\n.byte 0xb8, 0xf0, 0x63, 0x84, 0x02, 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83\n.byte 0x25, 0xea, 0xd6, 0xc7, 0x97, 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10\n.byte 0x3e, 0x97, 0x3e, 0x6e, 0x29, 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa\n.byte 0xa4, 0xc6, 0x42, 0xeb, 0x41, 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b\n.byte 0xf3, 0x23, 0x36, 0xc7, 0xfe, 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff\n.byte 0x08, 0x8f, 0x80, 0xbf, 0xc0, 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3\n.byte 0x31, 0xb3, 0x40, 0xf1, 0xe8, 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58\n.byte 0x9b, 0x7c, 0xfa, 0xd4, 0xf3, 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1\n.byte 0xf5, 0xcd, 0x5a, 0x19, 0xfc, 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8\n.byte 0xf9, 0xb4, 0x8b, 0x50, 0xa3, 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87\n.byte 0xfa, 0xd5, 0x2d, 0x29, 0x2a, 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb\n.byte 0xce, 0x49, 0xf5, 0x8d, 0x1f, 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93\n.byte 0x86, 0x61, 0xd6, 0xe1, 0x75, 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25\n.byte 0xd6, 0x0a, 0x5a, 0x7a, 0x93, 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde\n.byte 0x4f, 0xdc, 0xe0, 0xb3, 0xac, 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0\n.byte 0x29, 0x71, 0x0a, 0xc0, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x45, 0x02, 0x26, 0x30, 0x43\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30\n.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69\n.byte 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xbd, 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae\n.byte 0x6c, 0xb7, 0x70, 0xb4, 0x41, 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b\n.byte 0xb0, 0x66, 0x8b, 0x6c, 0x48, 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23\n.byte 0x59, 0xc9, 0x8e, 0xbc, 0x58, 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63\n.byte 0x5a, 0xba, 0x9f, 0xa3, 0x0b, 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb\n.byte 0xcf, 0x6e, 0x6c, 0x80, 0x87, 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5\n.byte 0x6a, 0xac, 0x13, 0x2c, 0x33, 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b\n.byte 0xad, 0x00, 0x52, 0x7f, 0xcf, 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe\n.byte 0x96, 0x4c, 0x43, 0x7e, 0x55, 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95\n.byte 0x6b, 0x2a, 0xb0, 0x94, 0x77, 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7\n.byte 0xcb, 0x5b, 0x9a, 0x70, 0xec, 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb\n.byte 0x05, 0xc6, 0x14, 0x27, 0x2f, 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7\n.byte 0x0b, 0x1e, 0x58, 0xd1, 0x27, 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60\n.byte 0xfc, 0x4c, 0xbc, 0x35, 0x53, 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c\n.byte 0xf5, 0xef, 0x5e, 0xc2, 0x6c, 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb\n.byte 0x4c, 0xe8, 0xb0, 0x09, 0xc2, 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac\n.byte 0xf5, 0x06, 0xa0, 0xf7, 0x36, 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea\n.byte 0xe9, 0x1a, 0x0a, 0xc8, 0x0d, 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22\n.byte 0x90, 0x27, 0x3d, 0x2a, 0xe8, 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde\n.byte 0x65, 0x24, 0xa4, 0x5d, 0xea, 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94\n.byte 0x36, 0x01, 0x73, 0xca, 0x06, 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a\n.byte 0xc9, 0x44, 0x47, 0xb8, 0x51, 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a\n.byte 0x7f, 0xbc, 0xa6, 0xef, 0x1f, 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19\n.byte 0x66, 0x3c, 0x27, 0x62, 0x29, 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4\n.byte 0xe2, 0x8e, 0x48, 0x5a, 0x00, 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9\n.byte 0x39, 0x4f, 0xf6, 0x6f, 0x04, 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59\n.byte 0xb4, 0xd8, 0x8e, 0x33, 0x84, 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c\n.byte 0x68, 0xf9, 0xee, 0xd5, 0x17, 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d\n.byte 0xaf, 0xd1, 0xee, 0x3c, 0x17, 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05\n.byte 0x07, 0xdc, 0x34, 0x42, 0x12, 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6\n.byte 0x48, 0xd1, 0xb3, 0x9b, 0xf3, 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76\n.byte 0x63, 0xe6, 0x02, 0xc6, 0x22, 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0\n.byte 0x3c, 0x29, 0xcf, 0x57, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x02, 0x26, 0x30, 0x44, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e\n.byte 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x0c, 0x10, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41\n.byte 0x20, 0x76, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xb2, 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2\n.byte 0x77, 0x69, 0xe7, 0xce, 0x9d, 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c\n.byte 0x27, 0xac, 0x8e, 0x00, 0xba, 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e\n.byte 0xb2, 0xaf, 0xc7, 0xd5, 0x62, 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2\n.byte 0x36, 0xe9, 0x0c, 0x85, 0xf6, 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33\n.byte 0xa5, 0xcb, 0x31, 0xb8, 0x3a, 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea\n.byte 0xf4, 0x7b, 0x03, 0xad, 0x68, 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d\n.byte 0xcd, 0x63, 0xc3, 0xa3, 0xf6, 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9\n.byte 0x3d, 0xa5, 0x74, 0x96, 0xfe, 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44\n.byte 0xf1, 0x0c, 0x77, 0x15, 0x92, 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1\n.byte 0xa0, 0xb3, 0x96, 0xb2, 0x3a, 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62\n.byte 0xc4, 0x58, 0xb3, 0x79, 0xc5, 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61\n.byte 0x38, 0xf1, 0x59, 0x3d, 0x8e, 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9\n.byte 0x02, 0x65, 0xb4, 0x8e, 0x5c, 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3\n.byte 0x7f, 0x99, 0x45, 0x99, 0x15, 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc\n.byte 0x69, 0x12, 0x86, 0xc2, 0x17, 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92\n.byte 0x66, 0xce, 0xa4, 0x53, 0xe5, 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8\n.byte 0xe3, 0x7c, 0xde, 0xe3, 0xff, 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9\n.byte 0x25, 0x05, 0xeb, 0x48, 0xf8, 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c\n.byte 0x44, 0xca, 0x26, 0xe1, 0x73, 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6\n.byte 0xb9, 0x24, 0xb3, 0x6b, 0x44, 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c\n.byte 0xb6, 0x33, 0x57, 0x7a, 0x95, 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02\n.byte 0x05, 0x86, 0x2e, 0x7c, 0x2d, 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f\n.byte 0xde, 0x20, 0xd8, 0x5b, 0x7e, 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d\n.byte 0x37, 0xa2, 0x0e, 0x2e, 0x3d, 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e\n.byte 0xdc, 0xc6, 0xe9, 0x12, 0x4e, 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6\n.byte 0xa6, 0xc9, 0xf2, 0x2d, 0xb9, 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa\n.byte 0xc0, 0xad, 0x1d, 0x98, 0x14, 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d\n.byte 0xb7, 0x1b, 0x30, 0x19, 0xc4, 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8\n.byte 0x05, 0xba, 0xf1, 0xaa, 0x1c, 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8\n.byte 0x76, 0x62, 0x47, 0x8b, 0x10, 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05\n.byte 0xcb, 0xdc, 0xc1, 0x4a, 0x5e, 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb\n.byte 0xc1, 0xca, 0x42, 0xd5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75\n.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66\n.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63\n.byte 0x69, 0x61, 0x6c, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02\n.byte 0x82, 0x01, 0x01, 0x00, 0xf6, 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb\n.byte 0x1f, 0x01, 0xb2, 0xe3, 0x73, 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce\n.byte 0xc3, 0xb7, 0xab, 0x2c, 0x4f, 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2\n.byte 0x8f, 0x1f, 0x1e, 0x86, 0x19, 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85\n.byte 0x35, 0x79, 0x32, 0x2d, 0xbb, 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71\n.byte 0x5f, 0xe9, 0x42, 0xbe, 0x94, 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6\n.byte 0x2b, 0x6d, 0xad, 0x05, 0xf0, 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b\n.byte 0x47, 0xa5, 0x23, 0x5b, 0x7a, 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1\n.byte 0xd6, 0x28, 0x89, 0xcf, 0x94, 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0\n.byte 0x0b, 0x31, 0xe2, 0x2b, 0x26, 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a\n.byte 0x05, 0xf3, 0xbd, 0x9b, 0x69, 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07\n.byte 0x02, 0xc9, 0x37, 0xfd, 0xc7, 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4\n.byte 0xb5, 0xc8, 0x7a, 0x79, 0xd9, 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66\n.byte 0x81, 0x35, 0xaf, 0x44, 0xba, 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e\n.byte 0x50, 0x4e, 0x7a, 0xe3, 0x3a, 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a\n.byte 0xab, 0x57, 0x03, 0x22, 0x28, 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3\n.byte 0xdc, 0x0e, 0x79, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75\n.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66\n.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b\n.byte 0x69, 0x6e, 0x67, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02\n.byte 0x82, 0x01, 0x01, 0x00, 0xb4, 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52\n.byte 0xa0, 0xeb, 0xa3, 0xcf, 0x79, 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65\n.byte 0x8f, 0x67, 0x64, 0xe2, 0x06, 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d\n.byte 0xf2, 0x60, 0x9d, 0x30, 0x4e, 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab\n.byte 0x33, 0x77, 0x35, 0x44, 0xd8, 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47\n.byte 0xa1, 0x6a, 0x69, 0x8b, 0xd9, 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb\n.byte 0x9a, 0x90, 0x23, 0x6b, 0x9a, 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa\n.byte 0xab, 0x53, 0x2b, 0xdc, 0xbb, 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c\n.byte 0xd4, 0x6a, 0xad, 0x22, 0xba, 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24\n.byte 0x4b, 0x40, 0x44, 0xb1, 0x1b, 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8\n.byte 0xfc, 0xf1, 0xf1, 0x23, 0x53, 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d\n.byte 0xbd, 0x95, 0xd4, 0xce, 0xbe, 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00\n.byte 0x29, 0xeb, 0x3c, 0x46, 0xf0, 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e\n.byte 0x14, 0x37, 0x42, 0x04, 0xa3, 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c\n.byte 0x0a, 0xe3, 0xa9, 0x66, 0x89, 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77\n.byte 0x46, 0xc8, 0x7d, 0xf6, 0xf4, 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c\n.byte 0x16, 0xbd, 0xb4, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20\n.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20\n.byte 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a\n.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29\n.byte 0x8a, 0xf0, 0x0f, 0x81, 0xc8, 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85\n.byte 0xf3, 0x2f, 0x81, 0xad, 0x32, 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e\n.byte 0x1c, 0x18, 0x3a, 0x5c, 0x9c, 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54\n.byte 0x11, 0xcb, 0xed, 0xab, 0xe0, 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b\n.byte 0x2d, 0xfd, 0xe9, 0x3e, 0xef, 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d\n.byte 0xfd, 0xa4, 0xda, 0xff, 0x9e, 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba\n.byte 0x5b, 0x2b, 0x1c, 0x7a, 0x35, 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60\n.byte 0x2b, 0xef, 0xd7, 0x60, 0xc3, 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11\n.byte 0x13, 0xc4, 0x9c, 0x77, 0x76, 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2\n.byte 0x05, 0xe6, 0xb9, 0x56, 0xc1, 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07\n.byte 0x95, 0x8a, 0x4b, 0xdf, 0x8f, 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab\n.byte 0x0c, 0xf9, 0x85, 0xeb, 0x44, 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5\n.byte 0x73, 0xaf, 0x6b, 0xb4, 0x7e, 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95\n.byte 0x2d, 0x42, 0x87, 0xd7, 0xd5, 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4\n.byte 0xf8, 0x89, 0x3f, 0xd1, 0x75, 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc\n.byte 0x6d, 0xde, 0x89, 0xc2, 0x65, 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac\n.byte 0x92, 0xdb, 0xea, 0xfe, 0x79, 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b\n.byte 0xe5, 0x1f, 0xfb, 0x9a, 0x9f, 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9\n.byte 0xb4, 0x76, 0x06, 0x52, 0xe6, 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b\n.byte 0x20, 0x19, 0x02, 0xe8, 0x74, 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67\n.byte 0xc1, 0x0e, 0x61, 0x60, 0x88, 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1\n.byte 0x23, 0x54, 0xdf, 0x44, 0x76, 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf\n.byte 0x35, 0x1d, 0xdc, 0xa1, 0x77, 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff\n.byte 0xe5, 0x80, 0xd7, 0x0b, 0x63, 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97\n.byte 0xb3, 0xd2, 0xa2, 0xb5, 0xbe, 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37\n.byte 0xb9, 0x86, 0x73, 0x33, 0xd7, 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1\n.byte 0xd1, 0xba, 0x67, 0x5f, 0x95, 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a\n.byte 0x4c, 0xb2, 0x04, 0xd2, 0xab, 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9\n.byte 0x91, 0xda, 0x0c, 0x8f, 0x64, 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d\n.byte 0x3a, 0xd6, 0xfe, 0x7d, 0x5b, 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3\n.byte 0x44, 0x32, 0x35, 0x09, 0x62, 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21\n.byte 0xe3, 0xf8, 0xeb, 0x1d, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30\n.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73\n.byte 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3\n.byte 0x4d, 0xee, 0xfe, 0xed, 0xc7, 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb\n.byte 0x0d, 0x59, 0x91, 0x74, 0xcf, 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d\n.byte 0x91, 0x68, 0xd8, 0x20, 0x0e, 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7\n.byte 0x3f, 0x99, 0x1a, 0xcd, 0xeb, 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f\n.byte 0xfc, 0xfd, 0x70, 0x8f, 0x0b, 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29\n.byte 0x76, 0xff, 0xb1, 0x56, 0x79, 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68\n.byte 0xa4, 0x01, 0x4f, 0x0f, 0xa4, 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab\n.byte 0x58, 0x57, 0xe7, 0x54, 0x86, 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c\n.byte 0xa3, 0x3e, 0xda, 0xfb, 0x82, 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce\n.byte 0xd0, 0x13, 0x4e, 0xff, 0xbf, 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55\n.byte 0xeb, 0xb1, 0xbb, 0x9d, 0xfb, 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5\n.byte 0xcb, 0xa1, 0x3f, 0x42, 0x69, 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61\n.byte 0x91, 0xfd, 0xa6, 0xae, 0x4e, 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04\n.byte 0xd0, 0xc8, 0x9c, 0x88, 0xdb, 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78\n.byte 0xb6, 0xee, 0xdc, 0x80, 0xb1, 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d\n.byte 0xb7, 0xd5, 0xce, 0x9c, 0xc2, 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f\n.byte 0xae, 0x7d, 0x9f, 0xf8, 0xde, 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1\n.byte 0x5f, 0x26, 0xe1, 0x88, 0x4d, 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7\n.byte 0x3b, 0x84, 0x89, 0x93, 0xc4, 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2\n.byte 0xee, 0x7b, 0xba, 0x52, 0x42, 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97\n.byte 0xfc, 0x9d, 0x3f, 0x0a, 0x29, 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf\n.byte 0x8b, 0x99, 0xbe, 0xac, 0x9b, 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8\n.byte 0xf6, 0xc7, 0xee, 0x97, 0x14, 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60\n.byte 0x84, 0xa6, 0xe9, 0x2a, 0x76, 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0\n.byte 0x73, 0x63, 0xd9, 0x6a, 0x92, 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30\n.byte 0xfc, 0x09, 0xed, 0x68, 0x22, 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f\n.byte 0x2a, 0xdd, 0xca, 0xe1, 0x90, 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93\n.byte 0xa0, 0x9c, 0x8c, 0x19, 0xff, 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1\n.byte 0x70, 0x8f, 0x2c, 0x0a, 0xe5, 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32\n.byte 0xe6, 0x13, 0x5c, 0x6b, 0xfe, 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba\n.byte 0x7d, 0x48, 0x3e, 0xa8, 0x69, 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d\n.byte 0x25, 0x4b, 0xda, 0xff, 0x40, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30\n.byte 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15\n.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69\n.byte 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16\n.byte 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43\n.byte 0x41, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82\n.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e\n.byte 0xa9, 0x50, 0x2d, 0x16, 0x44, 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13\n.byte 0x2a, 0xbc, 0x65, 0x57, 0x82, 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f\n.byte 0xfc, 0xef, 0xa2, 0xd0, 0xc0, 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28\n.byte 0x58, 0x00, 0xa3, 0x47, 0xc7, 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55\n.byte 0xcc, 0x8b, 0xc1, 0x57, 0x1f, 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae\n.byte 0x7e, 0x6d, 0xba, 0x81, 0x1c, 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84\n.byte 0xdb, 0x52, 0x2c, 0xf3, 0x0e, 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e\n.byte 0xd8, 0x3e, 0xe6, 0x18, 0x37, 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f\n.byte 0x9c, 0xe9, 0xb3, 0x3c, 0x2b, 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60\n.byte 0xbd, 0xdd, 0xb5, 0x99, 0x64, 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c\n.byte 0xe0, 0x62, 0x10, 0x02, 0x9f, 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba\n.byte 0x84, 0x7a, 0x60, 0x3c, 0x6a, 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5\n.byte 0x50, 0x86, 0xcb, 0xb4, 0xaf, 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c\n.byte 0xa8, 0xee, 0xbe, 0xa6, 0xe5, 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22\n.byte 0x5d, 0x32, 0x6a, 0x97, 0x97, 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a\n.byte 0xc5, 0x52, 0x89, 0xf9, 0x24, 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69\n.byte 0x2b, 0xd1, 0x02, 0x24, 0xf2, 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7\n.byte 0x6d, 0x30, 0x37, 0x90, 0x2a, 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5\n.byte 0xcb, 0x34, 0x89, 0x92, 0xf1, 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb\n.byte 0x0c, 0x0c, 0x0b, 0x7c, 0x0b, 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d\n.byte 0xb2, 0x32, 0xcc, 0xd8, 0x17, 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd\n.byte 0x97, 0x3e, 0x29, 0x75, 0xe7, 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d\n.byte 0xbc, 0x0d, 0x50, 0xca, 0x03, 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf\n.byte 0x72, 0x14, 0x69, 0x0e, 0xa5, 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b\n.byte 0x62, 0x20, 0x10, 0x67, 0x39, 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20\n.byte 0x83, 0xb5, 0x8c, 0x4a, 0x56, 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3\n.byte 0xe2, 0x68, 0x6e, 0x7d, 0x8d, 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80\n.byte 0xae, 0xaa, 0x56, 0x97, 0x6f, 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91\n.byte 0xb6, 0x1c, 0x8c, 0x26, 0xda, 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c\n.byte 0x4c, 0x80, 0x8f, 0x77, 0x7b, 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e\n.byte 0x54, 0x6d, 0x98, 0xe0, 0xe1, 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47\n.byte 0x19, 0x9d, 0xeb, 0xe6, 0x6b, 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x00, 0x78\n.byte 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31\n.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d\n.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17\n.byte 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d\n.byte 0x69, 0x75, 0x6d, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48\n.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d\n.byte 0x30, 0x5e, 0x1b, 0x15, 0x9d, 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca\n.byte 0x15, 0x1c, 0xcd, 0x62, 0xf3, 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc\n.byte 0x12, 0xea, 0xf4, 0x14, 0x5f, 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43\n.byte 0x78, 0xac, 0xd0, 0x37, 0xc3, 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8\n.byte 0x3d, 0x2e, 0x2f, 0x78, 0xc4, 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95\n.byte 0x1d, 0x4e, 0x18, 0x42, 0x95, 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x00\n.byte 0x48, 0x00, 0x78, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f\n.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30\n.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69\n.byte 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06\n.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03\n.byte 0x62, 0x00, 0x04, 0x9c, 0x0e, 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5\n.byte 0x46, 0xa7, 0xad, 0x32, 0x19, 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a\n.byte 0x10, 0xc7, 0xda, 0x89, 0xb0, 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea\n.byte 0xbe, 0xb2, 0x80, 0x2b, 0xcd, 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70\n.byte 0x08, 0x00, 0x75, 0xea, 0x93, 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec\n.byte 0x92, 0x2f, 0x53, 0x84, 0xdb, 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a\n.byte 0x81, 0x3c, 0x20, 0x00, 0x48, 0x02, 0x26, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73\n.byte 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62\n.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0xac, 0xac, 0x74, 0x32, 0xe8, 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d\n.byte 0x45, 0xba, 0x29, 0x88, 0xb2, 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39\n.byte 0xa1, 0x55, 0xe9, 0x67, 0x34, 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b\n.byte 0x5e, 0xe1, 0x1d, 0xa9, 0xb7, 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60\n.byte 0x40, 0x1f, 0xa6, 0xb0, 0xb6, 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc\n.byte 0x62, 0x05, 0x02, 0x16, 0xbf, 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2\n.byte 0xcb, 0xd5, 0xa6, 0xbb, 0x0c, 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab\n.byte 0x74, 0x42, 0xef, 0xf0, 0x74, 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf\n.byte 0x5e, 0x87, 0x0a, 0x40, 0xfb, 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1\n.byte 0x8f, 0xd6, 0xae, 0xd5, 0x7f, 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b\n.byte 0x27, 0xd0, 0x86, 0xd0, 0x1c, 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2\n.byte 0xad, 0xef, 0xf3, 0x84, 0x4b, 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b\n.byte 0xd6, 0x27, 0x71, 0x27, 0xed, 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a\n.byte 0xcc, 0x3f, 0x0a, 0xfa, 0x46, 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb\n.byte 0x5d, 0xf6, 0xb4, 0x6a, 0xb3, 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14\n.byte 0xf9, 0x81, 0xed, 0x65, 0x16, 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3\n.byte 0x2b, 0xc0, 0x9d, 0xf9, 0x14, 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd\n.byte 0x78, 0x38, 0x9a, 0xeb, 0x42, 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6\n.byte 0x82, 0xb5, 0xf3, 0x96, 0xdd, 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b\n.byte 0x2c, 0xd4, 0x72, 0x73, 0x43, 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9\n.byte 0xc0, 0x90, 0x60, 0x37, 0x45, 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74\n.byte 0x5d, 0x42, 0xbe, 0x06, 0xf5, 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07\n.byte 0x4d, 0x40, 0x7e, 0x24, 0xc5, 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23\n.byte 0xfa, 0x27, 0x71, 0xc9, 0xdf, 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c\n.byte 0x5f, 0x29, 0x63, 0x31, 0x59, 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d\n.byte 0x53, 0xa6, 0x7e, 0x15, 0xfc, 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7\n.byte 0x6b, 0x19, 0xcb, 0xf3, 0x7b, 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d\n.byte 0x1c, 0xa6, 0x6e, 0x0e, 0xe9, 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f\n.byte 0xb1, 0x54, 0x7b, 0xfe, 0x6a, 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07\n.byte 0x21, 0x6b, 0x81, 0x8f, 0xdb, 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b\n.byte 0x36, 0x93, 0xe8, 0x3d, 0xbd, 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf\n.byte 0x98, 0xa8, 0x06, 0xc2, 0xf8, 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31\n.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53\n.byte 0x69, 0x67, 0x6e, 0x20, 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20\n.byte 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d\n.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82\n.byte 0x02, 0x01, 0x00, 0xc4, 0xf1, 0x87, 0x7f, 0xd3, 0x78, 0x31, 0xf7, 0x38, 0xc9, 0xf8, 0xc3, 0x99\n.byte 0x43, 0xbc, 0xc7, 0xf7, 0xbc, 0x37, 0xe7, 0x4e, 0x71, 0xba, 0x4b, 0x8f, 0xa5, 0x73, 0x1d, 0x5c\n.byte 0x6e, 0x98, 0xae, 0x03, 0x57, 0xae, 0x38, 0x37, 0x43, 0x2f, 0x17, 0x3d, 0x1f, 0xc8, 0xce, 0x68\n.byte 0x10, 0xc1, 0x78, 0xae, 0x19, 0x03, 0x2b, 0x10, 0xfa, 0x2c, 0x79, 0x83, 0xf6, 0xe8, 0xb9, 0x68\n.byte 0xb9, 0x55, 0xf2, 0x04, 0x44, 0xa7, 0x39, 0xf9, 0xfc, 0x04, 0x8b, 0x1e, 0xf1, 0xa2, 0x4d, 0x27\n.byte 0xf9, 0x61, 0x7b, 0xba, 0xb7, 0xe5, 0xa2, 0x13, 0xb6, 0xeb, 0x61, 0x3e, 0xd0, 0x6c, 0xd1, 0xe6\n.byte 0xfb, 0xfa, 0x5e, 0xed, 0x1d, 0xb4, 0x9e, 0xa0, 0x35, 0x5b, 0xa1, 0x92, 0xcb, 0xf0, 0x49, 0x92\n.byte 0xfe, 0x85, 0x0a, 0x05, 0x3e, 0xe6, 0xd9, 0x0b, 0xe2, 0x4f, 0xbb, 0xdc, 0x95, 0x37, 0xfc, 0x91\n.byte 0xe9, 0x32, 0x35, 0x22, 0xd1, 0x1f, 0x3a, 0x4e, 0x27, 0x85, 0x9d, 0xb0, 0x15, 0x94, 0x32, 0xda\n.byte 0x61, 0x0d, 0x47, 0x4d, 0x60, 0x42, 0xae, 0x92, 0x47, 0xe8, 0x83, 0x5a, 0x50, 0x58, 0xe9, 0x8a\n.byte 0x8b, 0xb9, 0x5d, 0xa1, 0xdc, 0xdd, 0x99, 0x4a, 0x1f, 0x36, 0x67, 0xbb, 0x48, 0xe4, 0x83, 0xb6\n.byte 0x37, 0xeb, 0x48, 0x3a, 0xaf, 0x0f, 0x67, 0x8f, 0x17, 0x07, 0xe8, 0x04, 0xca, 0xef, 0x6a, 0x31\n.byte 0x87, 0xd4, 0xc0, 0xb6, 0xf9, 0x94, 0x71, 0x7b, 0x67, 0x64, 0xb8, 0xb6, 0x91, 0x4a, 0x42, 0x7b\n.byte 0x65, 0x2e, 0x30, 0x6a, 0x0c, 0xf5, 0x90, 0xee, 0x95, 0xe6, 0xf2, 0xcd, 0x82, 0xec, 0xd9, 0xa1\n.byte 0x4a, 0xec, 0xf6, 0xb2, 0x4b, 0xe5, 0x45, 0x85, 0xe6, 0x6d, 0x78, 0x93, 0x04, 0x2e, 0x9c, 0x82\n.byte 0x6d, 0x36, 0xa9, 0xc4, 0x31, 0x64, 0x1f, 0x86, 0x83, 0x0b, 0x2a, 0xf4, 0x35, 0x0a, 0x78, 0xc9\n.byte 0x55, 0xcf, 0x41, 0xb0, 0x47, 0xe9, 0x30, 0x9f, 0x99, 0xbe, 0x61, 0xa8, 0x06, 0x84, 0xb9, 0x28\n.byte 0x7a, 0x5f, 0x38, 0xd9, 0x1b, 0xa9, 0x38, 0xb0, 0x83, 0x7f, 0x73, 0xc1, 0xc3, 0x3b, 0x48, 0x2a\n.byte 0x82, 0x0f, 0x21, 0x9b, 0xb8, 0xcc, 0xa8, 0x35, 0xc3, 0x84, 0x1b, 0x83, 0xb3, 0x3e, 0xbe, 0xa4\n.byte 0x95, 0x69, 0x01, 0x3a, 0x89, 0x00, 0x78, 0x04, 0xd9, 0xc9, 0xf4, 0x99, 0x19, 0xab, 0x56, 0x7e\n.byte 0x5b, 0x8b, 0x86, 0x39, 0x15, 0x91, 0xa4, 0x10, 0x2c, 0x09, 0x32, 0x80, 0x60, 0xb3, 0x93, 0xc0\n.byte 0x2a, 0xb6, 0x18, 0x0b, 0x9d, 0x7e, 0x8d, 0x49, 0xf2, 0x10, 0x4a, 0x7f, 0xf9, 0xd5, 0x46, 0x2f\n.byte 0x19, 0x92, 0xa3, 0x99, 0xa7, 0x26, 0xac, 0xbb, 0x8c, 0x3c, 0xe6, 0x0e, 0xbc, 0x47, 0x07, 0xdc\n.byte 0x73, 0x51, 0xf1, 0x70, 0x64, 0x2f, 0x08, 0xf9, 0xb4, 0x47, 0x1d, 0x30, 0x6c, 0x44, 0xea, 0x29\n.byte 0x37, 0x85, 0x92, 0x68, 0x66, 0xbc, 0x83, 0x38, 0xfe, 0x7b, 0x39, 0x2e, 0xd3, 0x50, 0xf0, 0x1f\n.byte 0xfb, 0x5e, 0x60, 0xb6, 0xa9, 0xa6, 0xfa, 0x27, 0x41, 0xf1, 0x9b, 0x18, 0x72, 0xf2, 0xf5, 0x84\n.byte 0x74, 0x4a, 0xc9, 0x67, 0xc4, 0x54, 0xae, 0x48, 0x64, 0xdf, 0x8c, 0xd1, 0x6e, 0xb0, 0x1d, 0xe1\n.byte 0x07, 0x8f, 0x08, 0x1e, 0x99, 0x9c, 0x71, 0xe9, 0x4c, 0xd8, 0xa5, 0xf7, 0x47, 0x12, 0x1f, 0x74\n.byte 0xd1, 0x51, 0x9e, 0x86, 0xf3, 0xc2, 0xa2, 0x23, 0x40, 0x0b, 0x73, 0xdb, 0x4b, 0xa6, 0xe7, 0x73\n.byte 0x06, 0x8c, 0xc1, 0xa0, 0xe9, 0xc1, 0x59, 0xac, 0x46, 0xfa, 0xe6, 0x2f, 0xf8, 0xcf, 0x71, 0x9c\n.byte 0x46, 0x6d, 0xb9, 0xc4, 0x15, 0x8d, 0x38, 0x79, 0x03, 0x45, 0x48, 0xef, 0xc4, 0x5d, 0xd7, 0x08\n.byte 0xee, 0x87, 0x39, 0x22, 0x86, 0xb2, 0x0d, 0x0f, 0x58, 0x43, 0xf7, 0x71, 0xa9, 0x48, 0x2e, 0xfd\n.byte 0xea, 0xd6, 0x1f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b\n.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06\n.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25\n.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74\n.byte 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa9, 0x09, 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64\n.byte 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91, 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00\n.byte 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5, 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58\n.byte 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c, 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8\n.byte 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb, 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e\n.byte 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f, 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60\n.byte 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52, 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84\n.byte 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf, 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01\n.byte 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa, 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae\n.byte 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85, 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c\n.byte 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15, 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32\n.byte 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f, 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1\n.byte 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f, 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3\n.byte 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e, 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8\n.byte 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93, 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94\n.byte 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf, 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98\n.byte 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62, 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f\n.byte 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80, 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7\n.byte 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3, 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54\n.byte 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33, 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a\n.byte 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62, 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a\n.byte 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70, 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48\n.byte 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67, 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4\n.byte 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef, 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b\n.byte 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3, 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1\n.byte 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29, 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94\n.byte 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95, 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b\n.byte 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8, 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08\n.byte 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5, 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0\n.byte 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f, 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f\n.byte 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69, 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d\n.byte 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba, 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8\n.byte 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30\n.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c\n.byte 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68\n.byte 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86\n.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04\n.byte 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a, 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe\n.byte 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42, 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b\n.byte 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf, 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b\n.byte 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf, 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42\n.byte 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe, 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7\n.byte 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b, 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10\n.byte 0x00, 0x49, 0x01, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x48, 0x4b, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f\n.byte 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50\n.byte 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x01\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xac, 0xff\n.byte 0x38, 0xb6, 0xe9, 0x66, 0x02, 0x49, 0xe3, 0xa2, 0xb4, 0xe1, 0x90, 0xf9, 0x40, 0x8f, 0x79, 0xf9\n.byte 0xe2, 0xbd, 0x79, 0xfe, 0x02, 0xbd, 0xee, 0x24, 0x92, 0x1d, 0x22, 0xf6, 0xda, 0x85, 0x72, 0x69\n.byte 0xfe, 0xd7, 0x3f, 0x09, 0xd4, 0xdd, 0x91, 0xb5, 0x02, 0x9c, 0xd0, 0x8d, 0x5a, 0xe1, 0x55, 0xc3\n.byte 0x50, 0x86, 0xb9, 0x29, 0x26, 0xc2, 0xe3, 0xd9, 0xa0, 0xf1, 0x69, 0x03, 0x28, 0x20, 0x80, 0x45\n.byte 0x22, 0x2d, 0x56, 0xa7, 0x3b, 0x54, 0x95, 0x56, 0x22, 0x59, 0x1f, 0x28, 0xdf, 0x1f, 0x20, 0x3d\n.byte 0x6d, 0xa2, 0x36, 0xbe, 0x23, 0xa0, 0xb1, 0x6e, 0xb5, 0xb1, 0x27, 0x3f, 0x39, 0x53, 0x09, 0xea\n.byte 0xab, 0x6a, 0xe8, 0x74, 0xb2, 0xc2, 0x65, 0x5c, 0x8e, 0xbf, 0x7c, 0xc3, 0x78, 0x84, 0xcd, 0x9e\n.byte 0x16, 0xfc, 0xf5, 0x2e, 0x4f, 0x20, 0x2a, 0x08, 0x9f, 0x77, 0xf3, 0xc5, 0x1e, 0xc4, 0x9a, 0x52\n.byte 0x66, 0x1e, 0x48, 0x5e, 0xe3, 0x10, 0x06, 0x8f, 0x22, 0x98, 0xe1, 0x65, 0x8e, 0x1b, 0x5d, 0x23\n.byte 0x66, 0x3b, 0xb8, 0xa5, 0x32, 0x51, 0xc8, 0x86, 0xaa, 0xa1, 0xa9, 0x9e, 0x7f, 0x76, 0x94, 0xc2\n.byte 0xa6, 0x6c, 0xb7, 0x41, 0xf0, 0xd5, 0xc8, 0x06, 0x38, 0xe6, 0xd4, 0x0c, 0xe2, 0xf3, 0x3b, 0x4c\n.byte 0x6d, 0x50, 0x8c, 0xc4, 0x83, 0x27, 0xc1, 0x13, 0x84, 0x59, 0x3d, 0x9e, 0x75, 0x74, 0xb6, 0xd8\n.byte 0x02, 0x5e, 0x3a, 0x90, 0x7a, 0xc0, 0x42, 0x36, 0x72, 0xec, 0x6a, 0x4d, 0xdc, 0xef, 0xc4, 0x00\n.byte 0xdf, 0x13, 0x18, 0x57, 0x5f, 0x26, 0x78, 0xc8, 0xd6, 0x0a, 0x79, 0x77, 0xbf, 0xf7, 0xaf, 0xb7\n.byte 0x76, 0xb9, 0xa5, 0x0b, 0x84, 0x17, 0x5d, 0x10, 0xea, 0x6f, 0xe1, 0xab, 0x95, 0x11, 0x5f, 0x6d\n.byte 0x3c, 0xa3, 0x5c, 0x4d, 0x83, 0x5b, 0xf2, 0xb3, 0x19, 0x8a, 0x80, 0x8b, 0x0b, 0x87, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65\n.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03\n.byte 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x31\n.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01\n.byte 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e, 0xb7\n.byte 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6, 0x8c\n.byte 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6, 0xb1\n.byte 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc, 0x12\n.byte 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb, 0xd7\n.byte 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10, 0x33\n.byte 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d, 0x64\n.byte 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87, 0xbb\n.byte 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6, 0xaf\n.byte 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c, 0x19\n.byte 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad, 0x0f\n.byte 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a, 0x88\n.byte 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56, 0x64\n.byte 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b, 0x5c\n.byte 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92, 0xd3\n.byte 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48, 0xf9\n.byte 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa, 0x38\n.byte 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87, 0xfa\n.byte 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb, 0x16\n.byte 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b, 0x29\n.byte 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce, 0x49\n.byte 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f, 0x7d\n.byte 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3, 0x8e\n.byte 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d, 0xb1\n.byte 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91, 0x22\n.byte 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6, 0x16\n.byte 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7, 0x57\n.byte 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6, 0xa9\n.byte 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0, 0x7e\n.byte 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c, 0xc4\n.byte 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed, 0x1b\n.byte 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18, 0x05\n.byte 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55\n.byte 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74\n.byte 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30\n.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07, 0x06\n.byte 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b, 0xa4\n.byte 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52, 0x9f\n.byte 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01, 0x6c\n.byte 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04, 0xbf\n.byte 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1, 0xe6\n.byte 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff, 0x83\n.byte 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf, 0xc1\n.byte 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a, 0x48\n.byte 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90, 0xb8\n.byte 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e, 0xc8\n.byte 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52, 0x84\n.byte 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8, 0xb1\n.byte 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6, 0xfe\n.byte 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c, 0xda\n.byte 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb, 0x55\n.byte 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b, 0x48\n.byte 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75, 0x13\n.byte 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b, 0x3c\n.byte 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32, 0x46\n.byte 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2, 0x30\n.byte 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07, 0xaa\n.byte 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b, 0x96\n.byte 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23, 0x32\n.byte 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78, 0x97\n.byte 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67, 0xad\n.byte 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25, 0x69\n.byte 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb, 0xee\n.byte 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde, 0x2e\n.byte 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f, 0x70\n.byte 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5, 0xab\n.byte 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03, 0xb2\n.byte 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30, 0x47, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72\n.byte 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43\n.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce\n.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1f, 0x4f\n.byte 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea, 0x56\n.byte 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2, 0x9f\n.byte 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1, 0x7e\n.byte 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26, 0x7f\n.byte 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c, 0x91\n.byte 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x00, 0x49\n.byte 0x00, 0x78, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55\n.byte 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67\n.byte 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65\n.byte 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b\n.byte 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06\n.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03\n.byte 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5, 0x81\n.byte 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5, 0x61\n.byte 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85, 0x7c\n.byte 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73, 0xe9\n.byte 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f, 0xa1\n.byte 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4, 0xab\n.byte 0xd1, 0x1d, 0x8a, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65\n.byte 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56\n.byte 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x47\n.byte 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01\n.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02\n.byte 0x01, 0x00, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40, 0xb4, 0x04, 0x9c, 0x85, 0xb9\n.byte 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55, 0xc1, 0xe7, 0x58, 0x30, 0x1d\n.byte 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d, 0xdf, 0x82, 0xe6, 0x4f, 0xad\n.byte 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f, 0xec, 0x87, 0xac, 0x7f, 0x82\n.byte 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e, 0xac, 0xda, 0xf0, 0x53, 0xc9\n.byte 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8, 0x02, 0x46, 0xaf, 0xa4, 0x1c\n.byte 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5, 0xf0, 0xcf, 0xcc, 0xfa, 0xf9\n.byte 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35, 0xeb, 0xc5, 0xdf, 0xbb, 0x0e\n.byte 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e, 0xc7, 0xab, 0xe0, 0x13, 0x9c\n.byte 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23, 0xd3, 0xcf, 0xd5, 0xc4, 0x27\n.byte 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21, 0xe0, 0xfc, 0x39, 0xaa, 0x53\n.byte 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04, 0xcf, 0xa1, 0x4a, 0x8f, 0x8b\n.byte 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90, 0x36, 0x07, 0x81, 0x9b, 0x3e\n.byte 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9, 0x52, 0x1b, 0x52, 0xb5, 0x92\n.byte 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6, 0xdd, 0x25, 0xc2, 0x03, 0x66\n.byte 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f, 0xe5, 0x83, 0xa0, 0x27, 0x84\n.byte 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8, 0x69, 0xbc, 0x38, 0x9b, 0xa4\n.byte 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb, 0xc4, 0x51, 0x34, 0xea, 0x0c\n.byte 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a, 0xa7, 0xd2, 0xe9, 0x2a, 0x78\n.byte 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c, 0xde, 0xc5, 0xf9, 0x90, 0x22\n.byte 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d, 0x3d, 0x98, 0x7c, 0x5e, 0xf6\n.byte 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f, 0xaa, 0x22, 0x76, 0x2d, 0xc9\n.byte 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6, 0x2a, 0xe6, 0xd7, 0xf5, 0x9a\n.byte 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5, 0x98, 0x23, 0xec, 0x08, 0x77\n.byte 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a, 0x91, 0x9a, 0xef, 0x21, 0xaa\n.byte 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad, 0x85, 0xf6, 0xd9, 0xc5, 0xb1\n.byte 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c, 0x49, 0x1f, 0x33, 0x85, 0x59\n.byte 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71, 0x7d, 0xf0, 0xdf, 0xc4, 0x4c\n.byte 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e, 0x4e, 0x4d, 0x24, 0xfb, 0x5e\n.byte 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99, 0x7a, 0xd7, 0x5c, 0x09, 0x20\n.byte 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42, 0x1b, 0x11, 0xb7, 0xe7, 0x91\n.byte 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad, 0xcc, 0x28, 0xef, 0xa5, 0x47\n.byte 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30\n.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69\n.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15\n.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41\n.byte 0x20, 0x32, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa1, 0xae, 0x25, 0xb2, 0x01, 0x18, 0xdc, 0x57, 0x88, 0x3f\n.byte 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1, 0x61, 0x66, 0x21, 0x5f, 0xaa\n.byte 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50, 0xb0, 0x53, 0x77, 0xbd, 0x78\n.byte 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a, 0x8e, 0xad, 0xff, 0x1f, 0x15\n.byte 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1, 0xdf, 0x36, 0xb3, 0x16, 0x9f\n.byte 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28, 0x46, 0xfc, 0xa7, 0xc9, 0xf0\n.byte 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3, 0xa9, 0xda, 0x7d, 0xa1, 0x7d\n.byte 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe, 0x6e, 0xfb, 0xdc, 0xa6, 0x73\n.byte 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3, 0x88, 0xad, 0xad, 0xa0, 0x8c\n.byte 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb, 0xb8, 0x35, 0x81, 0x0c, 0xa3\n.byte 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d, 0xf8, 0x49, 0xab, 0x3e, 0x3b\n.byte 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5, 0x5e, 0x60, 0x2a, 0x31, 0xa0\n.byte 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc, 0x09, 0x1d, 0xd3, 0x9e, 0x8e\n.byte 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53, 0xa6, 0xe9, 0x14, 0x35, 0xa3\n.byte 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf, 0x4a, 0xb8, 0xfa, 0xd5, 0x8c\n.byte 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d, 0xf2, 0x84, 0x56, 0xef, 0xa5\n.byte 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb, 0x5b, 0x01, 0xdd, 0x23, 0x21\n.byte 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3, 0x12, 0x2b, 0x80, 0xdc, 0x67\n.byte 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4, 0xf2, 0xca, 0x14, 0x07, 0x8d\n.byte 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53, 0x5e, 0xb0, 0xd2, 0xaa, 0x21\n.byte 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac, 0x19, 0xa8, 0x55, 0xa6, 0x45\n.byte 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11, 0xf0, 0x3b, 0x4f, 0xca, 0x6d\n.byte 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae, 0x23, 0x60, 0x85, 0x73, 0xf1\n.byte 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c, 0xe0, 0x39, 0xda, 0xb4, 0x39\n.byte 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7, 0x31, 0xdf, 0x7a, 0x21, 0x6e\n.byte 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72, 0xcf, 0xe3, 0x77, 0xa1, 0xbc\n.byte 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3, 0xeb, 0x15, 0x6e, 0xf8, 0xa4\n.byte 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02, 0x8a, 0x2c, 0x14, 0x24, 0xf9\n.byte 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38, 0x7d, 0x53, 0x2d, 0xe5, 0xed\n.byte 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88, 0xc5, 0x60, 0x35, 0x92, 0xc0\n.byte 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf, 0x3e, 0x04, 0x10, 0x45, 0x65\n.byte 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c, 0x0d, 0x90, 0x02, 0xc6, 0x70\n.byte 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30\n.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19\n.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69\n.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f\n.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f\n.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xcb, 0x0e, 0x10, 0x67, 0x8e\n.byte 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68, 0x4c, 0xc7, 0xb3, 0x6f, 0x3a\n.byte 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3, 0x76, 0x9d, 0x7a, 0xe9, 0x8b\n.byte 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5, 0xa5, 0x1a, 0x79, 0x3c, 0x8a\n.byte 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b, 0x44, 0xde, 0xca, 0xdb, 0x8c\n.byte 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89, 0xfb, 0x16, 0x16, 0x38, 0x7e\n.byte 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a, 0xdd, 0x49, 0xb3, 0x57, 0xd2\n.byte 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32, 0xf3, 0x01, 0x39, 0x20, 0x43\n.byte 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82, 0x3e, 0x16, 0xb5, 0x28, 0x46\n.byte 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a, 0x86, 0xf5, 0x59, 0x47, 0xbe\n.byte 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca, 0x10, 0x39, 0x09, 0xca, 0x13\n.byte 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f, 0x34, 0xff, 0xfa, 0x20, 0x69\n.byte 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37, 0x23, 0x86, 0x72, 0x61, 0x45\n.byte 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07, 0x4d, 0x6f, 0xaf, 0xce, 0xc4\n.byte 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87, 0x69, 0xb1, 0x0e, 0xef, 0xc3\n.byte 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc, 0xd6, 0x03, 0x0b, 0x9e, 0x26\n.byte 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea, 0x75, 0x81, 0xda, 0x2d, 0xcd\n.byte 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90, 0xc5, 0x02, 0x90, 0x93, 0x66\n.byte 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55, 0x8f, 0xb5, 0xa2, 0x2f, 0xc0\n.byte 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb, 0x47, 0xfb, 0xe6, 0x58, 0xb9\n.byte 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40, 0x62, 0x2d, 0x3b, 0x48, 0x69\n.byte 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda, 0xa8, 0x30, 0x98, 0xcf, 0x80\n.byte 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08, 0x03, 0x21, 0x65, 0xae, 0xb7\n.byte 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7, 0xc0, 0x74, 0xe8, 0x71, 0xde\n.byte 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57, 0x1a, 0xab, 0x6b, 0x75, 0x0b\n.byte 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67, 0x4f, 0xe5, 0xec, 0x3c, 0x4c\n.byte 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8, 0xc7, 0xdf, 0xc0, 0xcc, 0x77\n.byte 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde, 0xed, 0x41, 0x2e, 0x14, 0x05\n.byte 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22, 0xce, 0x57, 0x3d, 0xde, 0xc9\n.byte 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5, 0xc1, 0xb2, 0x3e, 0x88, 0x6c\n.byte 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39, 0x07, 0x04, 0xfa, 0x75, 0x80\n.byte 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb, 0x80, 0x7e, 0xdb, 0xb6, 0xd0\n.byte 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54\n.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30\n.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00\n.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb, 0x84, 0xf5, 0x9a, 0xef, 0x42\n.byte 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03, 0x84, 0xd4, 0x76, 0x93, 0x25\n.byte 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb, 0x74, 0xf6, 0x12, 0xce, 0xe8\n.byte 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd, 0x16, 0x71, 0xcb, 0xbf, 0x92\n.byte 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83, 0x78, 0x94, 0x67, 0x67, 0xa3\n.byte 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d, 0xc7, 0x0c, 0xb4, 0x41, 0x52\n.byte 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x00, 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31\n.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53\n.byte 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32\n.byte 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01\n.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1, 0x0b, 0xdd, 0x86, 0x43\n.byte 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22, 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26\n.byte 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5, 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27\n.byte 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3, 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5\n.byte 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5, 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca\n.byte 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75, 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6\n.byte 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61, 0x42, 0x7b, 0x49, 0xad, 0x00, 0x4a, 0x01, 0x26, 0x30\n.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20\n.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54\n.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e\n.byte 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72\n.byte 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f\n.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd\n.byte 0xf5, 0xf6, 0x14, 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d\n.byte 0x99, 0x40, 0x24, 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89\n.byte 0xd1, 0xfc, 0x24, 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb\n.byte 0xf8, 0xde, 0xa7, 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e\n.byte 0xb8, 0x94, 0xed, 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c\n.byte 0x57, 0xd7, 0x06, 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b\n.byte 0x5d, 0xa3, 0xba, 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01\n.byte 0x99, 0x6d, 0xfd, 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb\n.byte 0xf3, 0x19, 0x34, 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf\n.byte 0xde, 0xa0, 0xc2, 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63\n.byte 0xde, 0x66, 0xac, 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7\n.byte 0x0e, 0x2f, 0x81, 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3\n.byte 0x59, 0x3f, 0xba, 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42\n.byte 0x26, 0x9d, 0xa9, 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85\n.byte 0x0e, 0x66, 0xa9, 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54\n.byte 0xc7, 0x93, 0xe0, 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x4c, 0x02, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65\n.byte 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13\n.byte 0x1e, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65\n.byte 0x72, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0xa7, 0x50, 0x19, 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2\n.byte 0xa9, 0x4f, 0x8f, 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff\n.byte 0xae, 0x95, 0x43, 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74\n.byte 0xd1, 0x81, 0x0d, 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3\n.byte 0x09, 0x8a, 0x1f, 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98\n.byte 0xd2, 0xaf, 0x71, 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32\n.byte 0x30, 0x88, 0x4b, 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b\n.byte 0xbf, 0x24, 0x1f, 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88\n.byte 0x22, 0xfc, 0x99, 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73\n.byte 0xbf, 0x02, 0x58, 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19\n.byte 0x16, 0xf5, 0xfd, 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca\n.byte 0x24, 0xdc, 0x74, 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd\n.byte 0x02, 0x5d, 0x9f, 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f\n.byte 0x5b, 0x02, 0xf3, 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74\n.byte 0x17, 0xa8, 0xd1, 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1\n.byte 0xda, 0x98, 0x1e, 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab\n.byte 0xa5, 0x60, 0x9d, 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a\n.byte 0x23, 0x76, 0x3b, 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc\n.byte 0x7e, 0x93, 0x39, 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1\n.byte 0x18, 0xcc, 0xf2, 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d\n.byte 0x8b, 0x3b, 0xc1, 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a\n.byte 0xdf, 0x62, 0x2e, 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7\n.byte 0x89, 0x5c, 0x9c, 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f\n.byte 0x4e, 0x0c, 0x5c, 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34\n.byte 0x1a, 0x28, 0xf3, 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb\n.byte 0xe8, 0x1e, 0xf2, 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33\n.byte 0x0b, 0x74, 0xbe, 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46\n.byte 0x4e, 0x96, 0xa7, 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7\n.byte 0x32, 0x5e, 0x9f, 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12\n.byte 0x90, 0x78, 0x7a, 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1\n.byte 0x6e, 0x70, 0x04, 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d\n.byte 0x94, 0x2a, 0xb1, 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4c, 0x01, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43\n.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03\n.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62\n.byte 0x61, 0x6c, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01\n.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71\n.byte 0xe5, 0x13, 0x68, 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89\n.byte 0x03, 0xe9, 0xbd, 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a\n.byte 0x02, 0xeb, 0x31, 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba\n.byte 0x32, 0x98, 0xe1, 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc\n.byte 0x51, 0xed, 0x68, 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63\n.byte 0x2e, 0xe0, 0xfe, 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e\n.byte 0x1e, 0xa4, 0x5f, 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e\n.byte 0x72, 0x05, 0x1e, 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1\n.byte 0x17, 0x2c, 0x95, 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60\n.byte 0x04, 0x10, 0x96, 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e\n.byte 0x65, 0xf9, 0x93, 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35\n.byte 0x33, 0xfa, 0x4b, 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b\n.byte 0xd7, 0xda, 0xce, 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0\n.byte 0x5c, 0xd4, 0x9c, 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef\n.byte 0x39, 0x54, 0xba, 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62\n.byte 0xd1, 0x73, 0xe7, 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4e, 0x01, 0x26, 0x30\n.byte 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62\n.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d\n.byte 0x20, 0x52, 0x33, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c\n.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25\n.byte 0x76, 0x90, 0x79, 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd\n.byte 0x05, 0x76, 0x11, 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04\n.byte 0x5f, 0x24, 0xcb, 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70\n.byte 0x6c, 0xdd, 0x64, 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7\n.byte 0xb6, 0x14, 0x86, 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a\n.byte 0x62, 0x2f, 0x1f, 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e\n.byte 0xc9, 0xcb, 0x26, 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef\n.byte 0x5b, 0x8b, 0xd2, 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28\n.byte 0x91, 0xe5, 0x9d, 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72\n.byte 0x2f, 0x2e, 0x9c, 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b\n.byte 0xae, 0x53, 0xa6, 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1\n.byte 0xe9, 0xb2, 0x4f, 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5\n.byte 0x38, 0x26, 0x60, 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad\n.byte 0x40, 0x15, 0x48, 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64\n.byte 0x9a, 0x7a, 0xbf, 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16\n.byte 0xa9, 0x03, 0xda, 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x4e, 0x02, 0x26, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55\n.byte 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06\n.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e\n.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61\n.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca\n.byte 0x7b, 0x3c, 0xf7, 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b\n.byte 0x3c, 0xae, 0x83, 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0\n.byte 0x88, 0x6b, 0xc5, 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a\n.byte 0xdd, 0x1b, 0x5a, 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92\n.byte 0x80, 0xca, 0x44, 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8\n.byte 0x12, 0x50, 0x6d, 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80\n.byte 0xb7, 0x19, 0x81, 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d\n.byte 0x3c, 0x8a, 0xc5, 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32\n.byte 0x06, 0xa6, 0x1e, 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0\n.byte 0x18, 0x89, 0xdf, 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7\n.byte 0xbc, 0x93, 0xbb, 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77\n.byte 0x61, 0x7e, 0xe0, 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d\n.byte 0xfd, 0x8c, 0xb2, 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a\n.byte 0xf7, 0x5d, 0x3a, 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd\n.byte 0x57, 0x92, 0xfa, 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36\n.byte 0xb2, 0x39, 0xe4, 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde\n.byte 0xb2, 0xf8, 0xe2, 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1\n.byte 0x6f, 0x54, 0x8a, 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee\n.byte 0xa3, 0xc5, 0x38, 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30\n.byte 0xbc, 0x71, 0x37, 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5\n.byte 0xd9, 0x91, 0x97, 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb\n.byte 0x83, 0xf2, 0x5e, 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2\n.byte 0x08, 0xb3, 0x61, 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd\n.byte 0xc9, 0xda, 0x28, 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a\n.byte 0x86, 0x05, 0x00, 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76\n.byte 0x39, 0x5b, 0xea, 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85\n.byte 0xcf, 0x33, 0x48, 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49\n.byte 0xc5, 0x95, 0x64, 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42\n.byte 0x45, 0x79, 0x6e, 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13\n.byte 0xe9, 0x0d, 0x6f, 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00\n.byte 0x19, 0x70, 0x83, 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8\n.byte 0x14, 0x63, 0x3c, 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30\n.byte 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23\n.byte 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65\n.byte 0x72, 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47\n.byte 0x6d, 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c\n.byte 0x4f, 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae\n.byte 0x2e, 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f\n.byte 0x84, 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b\n.byte 0x8a, 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b\n.byte 0xae, 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b\n.byte 0x73, 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8\n.byte 0xe2, 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92\n.byte 0x87, 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e\n.byte 0xcc, 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e\n.byte 0x95, 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f\n.byte 0xfd, 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9\n.byte 0x95, 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11\n.byte 0x83, 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d\n.byte 0xe7, 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8\n.byte 0xc2, 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24\n.byte 0x52, 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe\n.byte 0xe0, 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7\n.byte 0x43, 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78\n.byte 0xf4, 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4\n.byte 0xc9, 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3\n.byte 0x91, 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3\n.byte 0x5e, 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8\n.byte 0xed, 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39\n.byte 0xd0, 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e\n.byte 0xd0, 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80\n.byte 0x1d, 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46\n.byte 0x70, 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88\n.byte 0x0c, 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43\n.byte 0xf9, 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5\n.byte 0x68, 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17\n.byte 0x0f, 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04\n.byte 0xab, 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a\n.byte 0x79, 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x01, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27\n.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41\n.byte 0x20, 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30\n.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75\n.byte 0x9b, 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb\n.byte 0x00, 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35\n.byte 0xb3, 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3\n.byte 0x48, 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91\n.byte 0x52, 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f\n.byte 0x5b, 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92\n.byte 0x1e, 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d\n.byte 0x19, 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56\n.byte 0x09, 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4\n.byte 0x1a, 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13\n.byte 0xb5, 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1\n.byte 0xff, 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3\n.byte 0xa7, 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5\n.byte 0x31, 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca\n.byte 0x96, 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5\n.byte 0x5f, 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02\n.byte 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53\n.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54\n.byte 0x72, 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49\n.byte 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20\n.byte 0x53, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31\n.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01\n.byte 0x00, 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4\n.byte 0xf2, 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b\n.byte 0xa8, 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a\n.byte 0xf8, 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee\n.byte 0x08, 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73\n.byte 0x41, 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d\n.byte 0xe4, 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f\n.byte 0x9c, 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7\n.byte 0x2d, 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b\n.byte 0x9a, 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53\n.byte 0x77, 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48\n.byte 0x48, 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83\n.byte 0x72, 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac\n.byte 0x66, 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50\n.byte 0xb2, 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66\n.byte 0xe4, 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e\n.byte 0x06, 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4\n.byte 0xd5, 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50\n.byte 0x3d, 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e\n.byte 0x7b, 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc\n.byte 0x7d, 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9\n.byte 0xbc, 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c\n.byte 0x8b, 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92\n.byte 0x8e, 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea\n.byte 0xdc, 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54\n.byte 0xab, 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef\n.byte 0x88, 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69\n.byte 0x46, 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c\n.byte 0x90, 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2\n.byte 0xab, 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44\n.byte 0xe4, 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d\n.byte 0x5f, 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01\n.byte 0xe7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55\n.byte 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e\n.byte 0x63, 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67\n.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39\n.byte 0x36, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f\n.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xd0, 0xf4, 0xc9, 0x79, 0x11\n.byte 0x9d, 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e\n.byte 0x2e, 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd\n.byte 0x6c, 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72\n.byte 0xe5, 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89\n.byte 0x16, 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0\n.byte 0x45, 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42\n.byte 0xfe, 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c\n.byte 0x38, 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74\n.byte 0x9b, 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23\n.byte 0xd0, 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93\n.byte 0xe9, 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8\n.byte 0x6d, 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80\n.byte 0xcf, 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f\n.byte 0x70, 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef\n.byte 0xcd, 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5\n.byte 0xe2, 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd\n.byte 0xef, 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe\n.byte 0x29, 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac\n.byte 0x0a, 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7\n.byte 0xce, 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04\n.byte 0xc8, 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79\n.byte 0x30, 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2\n.byte 0xcf, 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83\n.byte 0xf2, 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c\n.byte 0x28, 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f\n.byte 0xfd, 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f\n.byte 0x4d, 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79\n.byte 0x4b, 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f\n.byte 0xce, 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8\n.byte 0xc2, 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5\n.byte 0x0c, 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11\n.byte 0x39, 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79\n.byte 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32\n.byte 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70\n.byte 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4\n.byte 0xf4, 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7\n.byte 0x75, 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0\n.byte 0xdc, 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b\n.byte 0x64, 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73\n.byte 0x30, 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3\n.byte 0xf1, 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87\n.byte 0xa3, 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92\n.byte 0x3e, 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06\n.byte 0x13, 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44\n.byte 0x50, 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23\n.byte 0x36, 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e\n.byte 0xbc, 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73\n.byte 0xfb, 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c\n.byte 0xe1, 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69\n.byte 0x17, 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7\n.byte 0xaa, 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b\n.byte 0x2e, 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6\n.byte 0x0a, 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e\n.byte 0x9c, 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11\n.byte 0x68, 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e\n.byte 0xe9, 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e\n.byte 0xc4, 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f\n.byte 0x49, 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33\n.byte 0xe0, 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01\n.byte 0x52, 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3\n.byte 0x37, 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7\n.byte 0x52, 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61\n.byte 0x42, 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b\n.byte 0xa2, 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7\n.byte 0x5f, 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30\n.byte 0x68, 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32\n.byte 0xb8, 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41\n.byte 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c\n.byte 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa5, 0xda\n.byte 0x0a, 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1\n.byte 0x10, 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc\n.byte 0x9a, 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0\n.byte 0xa8, 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33\n.byte 0x87, 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77\n.byte 0x28, 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4\n.byte 0x8a, 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc\n.byte 0xb7, 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39\n.byte 0xc3, 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d\n.byte 0xbe, 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d\n.byte 0x45, 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32\n.byte 0x6a, 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27\n.byte 0x14, 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52\n.byte 0xc7, 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70\n.byte 0x13, 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0\n.byte 0xf5, 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb\n.byte 0x17, 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10\n.byte 0xf3, 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4\n.byte 0x52, 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef\n.byte 0xb9, 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c\n.byte 0x34, 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79\n.byte 0x19, 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82\n.byte 0x13, 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55\n.byte 0x10, 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32\n.byte 0x5e, 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a\n.byte 0x25, 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c\n.byte 0x45, 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef\n.byte 0xc3, 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30\n.byte 0x4b, 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0\n.byte 0xf1, 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60\n.byte 0x0f, 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64\n.byte 0xb1, 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x50, 0x00, 0x78, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31\n.byte 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65\n.byte 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48\n.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc1\n.byte 0x44, 0xa1, 0xcf, 0x11, 0x97, 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18\n.byte 0x9d, 0xd2, 0xf1, 0x7f, 0x77, 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8\n.byte 0xec, 0xfa, 0x7b, 0x6b, 0x58, 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb\n.byte 0x09, 0xec, 0xc8, 0x13, 0xf5, 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a\n.byte 0x3c, 0x61, 0x10, 0x42, 0x29, 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce\n.byte 0x9b, 0x63, 0x9f, 0x84, 0xb5, 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x00\n.byte 0x51, 0x02, 0x26, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75\n.byte 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f\n.byte 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20\n.byte 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a\n.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd, 0x13\n.byte 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4, 0x7c\n.byte 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5, 0xe8\n.byte 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf, 0x8d\n.byte 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77, 0x5c\n.byte 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd, 0x94\n.byte 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7, 0x24\n.byte 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80, 0xe0\n.byte 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb, 0x87\n.byte 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd, 0x52\n.byte 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c, 0xc0\n.byte 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c, 0xa1\n.byte 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82, 0xeb\n.byte 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89, 0x60\n.byte 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a, 0xdb\n.byte 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45, 0x44\n.byte 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e, 0xd4\n.byte 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0, 0xa6\n.byte 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6, 0x33\n.byte 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81, 0x5d\n.byte 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41, 0xaf\n.byte 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d, 0x31\n.byte 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b, 0xf2\n.byte 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59, 0x15\n.byte 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3, 0x0e\n.byte 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd, 0x3f\n.byte 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9, 0x23\n.byte 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98, 0xbd\n.byte 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02, 0x09\n.byte 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf, 0x65\n.byte 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa, 0x72\n.byte 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85, 0xdd\n.byte 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x02, 0x26, 0x30, 0x4f\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30\n.byte 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74\n.byte 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72\n.byte 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe\n.byte 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2\n.byte 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6\n.byte 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33\n.byte 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1\n.byte 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22\n.byte 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f\n.byte 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e\n.byte 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21\n.byte 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2\n.byte 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0\n.byte 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee\n.byte 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07, 0x94\n.byte 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c\n.byte 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1\n.byte 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98\n.byte 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1\n.byte 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9\n.byte 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17\n.byte 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e\n.byte 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5\n.byte 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51\n.byte 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15\n.byte 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12\n.byte 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f\n.byte 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48\n.byte 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83\n.byte 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c\n.byte 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d\n.byte 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2\n.byte 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e\n.byte 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x00, 0x78, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75\n.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72\n.byte 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53\n.byte 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07\n.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62\n.byte 0x00, 0x04, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a, 0x3e\n.byte 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a, 0x8b\n.byte 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf, 0xf7\n.byte 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38, 0x8b\n.byte 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8, 0x0a\n.byte 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07, 0x0c\n.byte 0x1f, 0xea, 0x00, 0x52, 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c\n.byte 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30, 0x28\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20, 0x32\n.byte 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09\n.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00\n.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba, 0x2f\n.byte 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97, 0xd2\n.byte 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda, 0x15\n.byte 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac, 0xa1\n.byte 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8, 0x0f\n.byte 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f, 0x4c\n.byte 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64, 0x1e\n.byte 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f, 0x12\n.byte 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7, 0xf5\n.byte 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf, 0x8b\n.byte 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d, 0x0d\n.byte 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1, 0x14\n.byte 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2, 0xfb\n.byte 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70, 0xad\n.byte 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c, 0xee\n.byte 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27, 0xfa\n.byte 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52\n.byte 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a\n.byte 0x50, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x45, 0x43, 0x4f\n.byte 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43\n.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f\n.byte 0x74, 0x43, 0x41, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a\n.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xb3, 0xb3, 0xfe, 0x7f, 0xd3, 0x6d, 0xb1, 0xef, 0x16, 0x7c, 0x57\n.byte 0xa5, 0x0c, 0x6d, 0x76, 0x8a, 0x2f, 0x4b, 0xbf, 0x64, 0xfb, 0x4c, 0xee, 0x8a, 0xf0, 0xf3, 0x29\n.byte 0x7c, 0xf5, 0xff, 0xee, 0x2a, 0xe0, 0xe9, 0xe9, 0xba, 0x5b, 0x64, 0x22, 0x9a, 0x9a, 0x6f, 0x2c\n.byte 0x3a, 0x26, 0x69, 0x51, 0x05, 0x99, 0x26, 0xdc, 0xd5, 0x1c, 0x6a, 0x71, 0xc6, 0x9a, 0x7d, 0x1e\n.byte 0x9d, 0xdd, 0x7c, 0x6c, 0xc6, 0x8c, 0x67, 0x67, 0x4a, 0x3e, 0xf8, 0x71, 0xb0, 0x19, 0x27, 0xa9\n.byte 0x09, 0x0c, 0xa6, 0x95, 0xbf, 0x4b, 0x8c, 0x0c, 0xfa, 0x55, 0x98, 0x3b, 0xd8, 0xe8, 0x22, 0xa1\n.byte 0x4b, 0x71, 0x38, 0x79, 0xac, 0x97, 0x92, 0x69, 0xb3, 0x89, 0x7e, 0xea, 0x21, 0x68, 0x06, 0x98\n.byte 0x14, 0x96, 0x87, 0xd2, 0x61, 0x36, 0xbc, 0x6d, 0x27, 0x56, 0x9e, 0x57, 0xee, 0xc0, 0xc0, 0x56\n.byte 0xfd, 0x32, 0xcf, 0xa4, 0xd9, 0x8e, 0xc2, 0x23, 0xd7, 0x8d, 0xa8, 0xf3, 0xd8, 0x25, 0xac, 0x97\n.byte 0xe4, 0x70, 0x38, 0xf4, 0xb6, 0x3a, 0xb4, 0x9d, 0x3b, 0x97, 0x26, 0x43, 0xa3, 0xa1, 0xbc, 0x49\n.byte 0x59, 0x72, 0x4c, 0x23, 0x30, 0x87, 0x01, 0x58, 0xf6, 0x4e, 0xbe, 0x1c, 0x68, 0x56, 0x66, 0xaf\n.byte 0xcd, 0x41, 0x5d, 0xc8, 0xb3, 0x4d, 0x2a, 0x55, 0x46, 0xab, 0x1f, 0xda, 0x1e, 0xe2, 0x40, 0x3d\n.byte 0xdb, 0xcd, 0x7d, 0xb9, 0x92, 0x80, 0x9c, 0x37, 0xdd, 0x0c, 0x96, 0x64, 0x9d, 0xdc, 0x22, 0xf7\n.byte 0x64, 0x8b, 0xdf, 0x61, 0xde, 0x15, 0x94, 0x52, 0x15, 0xa0, 0x7d, 0x52, 0xc9, 0x4b, 0xa8, 0x21\n.byte 0xc9, 0xc6, 0xb1, 0xed, 0xcb, 0xc3, 0x95, 0x60, 0xd1, 0x0f, 0xf0, 0xab, 0x70, 0xf8, 0xdf, 0xcb\n.byte 0x4d, 0x7e, 0xec, 0xd6, 0xfa, 0xab, 0xd9, 0xbd, 0x7f, 0x54, 0xf2, 0xa5, 0xe9, 0x79, 0xfa, 0xd9\n.byte 0xd6, 0x76, 0x24, 0x28, 0x73, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52, 0x00, 0x5b, 0x30, 0x50\n.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61\n.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43\n.byte 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e\n.byte 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a\n.byte 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f\n.byte 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09\n.byte 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1\n.byte 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18\n.byte 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x00, 0x52, 0x00, 0x78, 0x30\n.byte 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62\n.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20\n.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67\n.byte 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05\n.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d\n.byte 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59\n.byte 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97\n.byte 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f\n.byte 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9\n.byte 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f\n.byte 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64\n.byte 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f\n.byte 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e\n.byte 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38\n.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01\n.byte 0x00, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0\n.byte 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2\n.byte 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4\n.byte 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71\n.byte 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9\n.byte 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37\n.byte 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50\n.byte 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02\n.byte 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7\n.byte 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4\n.byte 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b\n.byte 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f\n.byte 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92\n.byte 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86\n.byte 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87\n.byte 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19\n.byte 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38\n.byte 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf\n.byte 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4\n.byte 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96\n.byte 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8\n.byte 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3\n.byte 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2\n.byte 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24\n.byte 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01\n.byte 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca\n.byte 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d\n.byte 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64\n.byte 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b\n.byte 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6\n.byte 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b\n.byte 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30\n.byte 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65\n.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x20, 0x46\n.byte 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20\n.byte 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38, 0x30, 0x82, 0x02\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xca, 0x96\n.byte 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0, 0xc3, 0x52, 0xd7\n.byte 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2, 0xca, 0x1c, 0x5d\n.byte 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4, 0x8b, 0x0f, 0xe6\n.byte 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71, 0x38, 0xd9, 0x04\n.byte 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9, 0xbf, 0x94, 0x6f\n.byte 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37, 0x4a, 0x5c, 0xca\n.byte 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50, 0xf4, 0xb1, 0xe7\n.byte 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02, 0xaa, 0x36, 0x98\n.byte 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7, 0x81, 0x2d, 0xe5\n.byte 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4, 0x40, 0xcf, 0x5e\n.byte 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b, 0x25, 0x6c, 0x93\n.byte 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f, 0x20, 0x05, 0x19\n.byte 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92, 0x3c, 0x20, 0xcf\n.byte 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86, 0x61, 0x33, 0x3e\n.byte 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87, 0x26, 0x6f, 0x41\n.byte 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19, 0x8f, 0xb2, 0xed\n.byte 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38, 0x23, 0xc9, 0x2f\n.byte 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf, 0x4f, 0xa4, 0xf3\n.byte 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4, 0x9c, 0xc8, 0x90\n.byte 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96, 0x31, 0x1f, 0xba\n.byte 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8, 0xdf, 0xfd, 0xab\n.byte 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3, 0xe7, 0x8a, 0xb8\n.byte 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2, 0xd8, 0x9f, 0x8e\n.byte 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24, 0x10, 0xad, 0x2f\n.byte 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01, 0xdb, 0xf4, 0x7f\n.byte 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca, 0x6e, 0x97, 0xfb\n.byte 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d, 0xd5, 0x45, 0xf3\n.byte 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64, 0xae, 0x7b, 0x0b\n.byte 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b, 0x87, 0x0c, 0x6e\n.byte 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6, 0x8f, 0x96, 0x1d\n.byte 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b, 0x80, 0x89, 0x45\n.byte 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30, 0xbb, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x53, 0x01, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c\n.byte 0x1f, 0x4b, 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f\n.byte 0x7a, 0x6c, 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e\n.byte 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49\n.byte 0x52, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d\n.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01\n.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xbc, 0x3e, 0x50, 0xa8\n.byte 0x4b, 0xcd, 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa\n.byte 0xb5, 0x7b, 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20\n.byte 0x3d, 0x85, 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee\n.byte 0xeb, 0x53, 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e\n.byte 0x0d, 0x92, 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02\n.byte 0xbd, 0x4a, 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d\n.byte 0xb3, 0xb0, 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36\n.byte 0x84, 0xda, 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f\n.byte 0x75, 0xb6, 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d\n.byte 0x6a, 0xfa, 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7\n.byte 0x72, 0x3b, 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95\n.byte 0x9e, 0xc1, 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5\n.byte 0xd6, 0xf9, 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d\n.byte 0x9d, 0x02, 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88\n.byte 0x00, 0xdc, 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca\n.byte 0x41, 0xcd, 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01\n.byte 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41\n.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b\n.byte 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30\n.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e\n.byte 0x8a, 0x21, 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97\n.byte 0xc5, 0xd7, 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74\n.byte 0xa4, 0x31, 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7\n.byte 0xb8, 0x79, 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4\n.byte 0xb3, 0xd0, 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b\n.byte 0x32, 0x39, 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47\n.byte 0x25, 0x91, 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0\n.byte 0xa1, 0x30, 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91\n.byte 0x43, 0x8f, 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b\n.byte 0xca, 0xea, 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36\n.byte 0xc7, 0xcc, 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa\n.byte 0x71, 0x7c, 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11\n.byte 0xf7, 0x05, 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26\n.byte 0xdc, 0xe3, 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71\n.byte 0xa5, 0x15, 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44\n.byte 0xfd, 0x56, 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b\n.byte 0x76, 0xc8, 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22\n.byte 0x82, 0xee, 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64\n.byte 0x00, 0x26, 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90\n.byte 0xa2, 0x95, 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa\n.byte 0x29, 0x7e, 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09\n.byte 0x67, 0xde, 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6\n.byte 0x0f, 0xa0, 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0\n.byte 0x6f, 0xde, 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67\n.byte 0xd5, 0x98, 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4\n.byte 0x00, 0x04, 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d\n.byte 0xc0, 0xb7, 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e\n.byte 0xef, 0xbc, 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7\n.byte 0x04, 0xa9, 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1\n.byte 0x90, 0x8c, 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a\n.byte 0x42, 0xb1, 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2\n.byte 0x26, 0xe1, 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x54, 0x02\n.byte 0x26, 0x30, 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b\n.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69\n.byte 0x73, 0x6c, 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a\n.byte 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03\n.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f\n.byte 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d\n.byte 0x14, 0xf6, 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50\n.byte 0xe0, 0xc1, 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8\n.byte 0x97, 0x02, 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f\n.byte 0x64, 0xd4, 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f\n.byte 0xba, 0xbe, 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda\n.byte 0x4c, 0xce, 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00\n.byte 0x16, 0x3c, 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5\n.byte 0xe1, 0x66, 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6\n.byte 0x80, 0x6a, 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4\n.byte 0xe1, 0x25, 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14\n.byte 0x61, 0x2d, 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b\n.byte 0x04, 0x5a, 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6\n.byte 0x57, 0xcc, 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78\n.byte 0x4d, 0x9e, 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf\n.byte 0xea, 0xc0, 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2\n.byte 0x46, 0x90, 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97\n.byte 0x84, 0x8e, 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3\n.byte 0xf3, 0xc1, 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a\n.byte 0xe4, 0x17, 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c\n.byte 0x34, 0xd8, 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08\n.byte 0x65, 0xd4, 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d\n.byte 0x66, 0xdd, 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a\n.byte 0x1c, 0xe7, 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60\n.byte 0xb2, 0xc2, 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8\n.byte 0xe7, 0x11, 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd\n.byte 0xcf, 0x80, 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b\n.byte 0xe4, 0x44, 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b\n.byte 0xe4, 0x32, 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6\n.byte 0x7e, 0xb2, 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37\n.byte 0x1f, 0x11, 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33\n.byte 0x7d, 0xb0, 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e\n.byte 0xc4, 0x03, 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x02, 0x26, 0x30\n.byte 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30\n.byte 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46\n.byte 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69\n.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79\n.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20\n.byte 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30\n.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05\n.byte 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b\n.byte 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e\n.byte 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae\n.byte 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71\n.byte 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a\n.byte 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d\n.byte 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e\n.byte 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8\n.byte 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41\n.byte 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8\n.byte 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca\n.byte 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f\n.byte 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50\n.byte 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0\n.byte 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b\n.byte 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05\n.byte 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4\n.byte 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7\n.byte 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e\n.byte 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39\n.byte 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37\n.byte 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d\n.byte 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e\n.byte 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99\n.byte 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a\n.byte 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04\n.byte 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa\n.byte 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08\n.byte 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78\n.byte 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e\n.byte 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72\n.byte 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x01\n.byte 0x26, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53\n.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67\n.byte 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b\n.byte 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f\n.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f\n.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99\n.byte 0x05, 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f\n.byte 0x2c, 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79\n.byte 0x39, 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9\n.byte 0x1d, 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf\n.byte 0xac, 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73\n.byte 0xdc, 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47\n.byte 0xdc, 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38\n.byte 0x58, 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f\n.byte 0x0b, 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7\n.byte 0x18, 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce\n.byte 0xa6, 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16\n.byte 0xde, 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c\n.byte 0xc5, 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34\n.byte 0x12, 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89\n.byte 0xac, 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5\n.byte 0x6b, 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x59, 0x01, 0x26, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f\n.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30\n.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31\n.byte 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c\n.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xda, 0x0e, 0xe6\n.byte 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48\n.byte 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf\n.byte 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab\n.byte 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15\n.byte 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc\n.byte 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41\n.byte 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b\n.byte 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89\n.byte 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7\n.byte 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2\n.byte 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b\n.byte 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab\n.byte 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16\n.byte 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64\n.byte 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3\n.byte 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x5a, 0x01, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x22\n.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74\n.byte 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e\n.byte 0x63, 0x2e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x53, 0x65, 0x63\n.byte 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31, 0x31\n.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01\n.byte 0x00, 0xfd, 0x77, 0xaa, 0xa5, 0x1c, 0x90, 0x05, 0x3b, 0xcb, 0x4c, 0x9b, 0x33, 0x8b, 0x5a, 0x14\n.byte 0x45, 0xa4, 0xe7, 0x90, 0x16, 0xd1, 0xdf, 0x57, 0xd2, 0x21, 0x10, 0xa4, 0x17, 0xfd, 0xdf, 0xac\n.byte 0xd6, 0x1f, 0xa7, 0xe4, 0xdb, 0x7c, 0xf7, 0xec, 0xdf, 0xb8, 0x03, 0xda, 0x94, 0x58, 0xfd, 0x5d\n.byte 0x72, 0x7c, 0x8c, 0x3f, 0x5f, 0x01, 0x67, 0x74, 0x15, 0x96, 0xe3, 0x02, 0x3c, 0x87, 0xdb, 0xae\n.byte 0xcb, 0x01, 0x8e, 0xc2, 0xf3, 0x66, 0xc6, 0x85, 0x45, 0xf4, 0x02, 0xc6, 0x3a, 0xb5, 0x62, 0xb2\n.byte 0xaf, 0xfa, 0x9c, 0xbf, 0xa4, 0xe6, 0xd4, 0x80, 0x30, 0x98, 0xf3, 0x0d, 0xb6, 0x93, 0x8f, 0xa9\n.byte 0xd4, 0xd8, 0x36, 0xf2, 0xb0, 0xfc, 0x8a, 0xca, 0x2c, 0xa1, 0x15, 0x33, 0x95, 0x31, 0xda, 0xc0\n.byte 0x1b, 0xf2, 0xee, 0x62, 0x99, 0x86, 0x63, 0x3f, 0xbf, 0xdd, 0x93, 0x2a, 0x83, 0xa8, 0x76, 0xb9\n.byte 0x13, 0x1f, 0xb7, 0xce, 0x4e, 0x42, 0x85, 0x8f, 0x22, 0xe7, 0x2e, 0x1a, 0xf2, 0x95, 0x09, 0xb2\n.byte 0x05, 0xb5, 0x44, 0x4e, 0x77, 0xa1, 0x20, 0xbd, 0xa9, 0xf2, 0x4e, 0x0a, 0x7d, 0x50, 0xad, 0xf5\n.byte 0x05, 0x0d, 0x45, 0x4f, 0x46, 0x71, 0xfd, 0x28, 0x3e, 0x53, 0xfb, 0x04, 0xd8, 0x2d, 0xd7, 0x65\n.byte 0x1d, 0x4a, 0x1b, 0xfa, 0xcf, 0x3b, 0xb0, 0x31, 0x9a, 0x35, 0x6e, 0xc8, 0x8b, 0x06, 0xd3, 0x00\n.byte 0x91, 0xf2, 0x94, 0x08, 0x65, 0x4c, 0xb1, 0x34, 0x06, 0x00, 0x7a, 0x89, 0xe2, 0xf0, 0xc7, 0x03\n.byte 0x59, 0xcf, 0xd5, 0xd6, 0xe8, 0xa7, 0x32, 0xb3, 0xe6, 0x98, 0x40, 0x86, 0xc5, 0xcd, 0x27, 0x12\n.byte 0x8b, 0xcc, 0x7b, 0xce, 0xb7, 0x11, 0x3c, 0x62, 0x60, 0x07, 0x23, 0x3e, 0x2b, 0x40, 0x6e, 0x94\n.byte 0x80, 0x09, 0x6d, 0xb6, 0xb3, 0x6f, 0x77, 0x6f, 0x35, 0x08, 0x50, 0xfb, 0x02, 0x87, 0xc5, 0x3e\n.byte 0x89, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55\n.byte 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30\n.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31\n.byte 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30, 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82\n.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64\n.byte 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c, 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16\n.byte 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42, 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7\n.byte 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9, 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e\n.byte 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e, 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2\n.byte 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9, 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a\n.byte 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6, 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0\n.byte 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1, 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84\n.byte 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a, 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23\n.byte 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10, 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82\n.byte 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c, 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42\n.byte 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89, 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c\n.byte 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64, 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95\n.byte 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e, 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a\n.byte 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29, 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b\n.byte 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53, 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97\n.byte 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28, 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce\n.byte 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16, 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78\n.byte 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84, 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68\n.byte 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad, 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44\n.byte 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac, 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22\n.byte 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9, 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a\n.byte 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99, 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d\n.byte 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1, 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a\n.byte 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce, 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83\n.byte 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4, 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d\n.byte 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79, 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25\n.byte 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd, 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17\n.byte 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9, 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41\n.byte 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6, 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87\n.byte 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86, 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c\n.byte 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce, 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d\n.byte 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x01, 0x26\n.byte 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31\n.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d\n.byte 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79\n.byte 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62\n.byte 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa3, 0x04, 0xbb\n.byte 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8\n.byte 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0\n.byte 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb\n.byte 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7\n.byte 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62\n.byte 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25\n.byte 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f\n.byte 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca\n.byte 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2\n.byte 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59\n.byte 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85\n.byte 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39\n.byte 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23\n.byte 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e\n.byte 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf\n.byte 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x5c, 0x00, 0x78, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a\n.byte 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63\n.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67\n.byte 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20\n.byte 0x43, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06\n.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26\n.byte 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae, 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39\n.byte 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9, 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95\n.byte 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf, 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f\n.byte 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81, 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9\n.byte 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42, 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61\n.byte 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe, 0xf5, 0xf2, 0xa9, 0x00, 0x5f, 0x02, 0x26, 0x30, 0x5d\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30\n.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72\n.byte 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c\n.byte 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x53\n.byte 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63\n.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x33, 0x30, 0x82, 0x02\n.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00\n.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xe3, 0xc9\n.byte 0x72, 0x49, 0xf7, 0x30, 0xde, 0x09, 0x7c, 0xa9, 0x40, 0x81, 0x58, 0xd3, 0xb4, 0x3a, 0xdd, 0xba\n.byte 0x61, 0x0f, 0x93, 0x50, 0x6e, 0x69, 0x3c, 0x35, 0xc2, 0xee, 0x5b, 0x73, 0x90, 0x1b, 0x67, 0x4c\n.byte 0x21, 0xec, 0x5f, 0x35, 0xbb, 0x39, 0x3e, 0x2b, 0x0a, 0x60, 0xef, 0xbb, 0x6d, 0x2b, 0x86, 0xfb\n.byte 0x71, 0xa2, 0xc8, 0xac, 0xe4, 0x56, 0x94, 0xf9, 0xc9, 0xaf, 0xb1, 0x72, 0xd4, 0x20, 0xac, 0x74\n.byte 0xd2, 0xb8, 0x15, 0xad, 0x51, 0xfe, 0x85, 0x74, 0xa1, 0xb9, 0x10, 0xfe, 0x05, 0x80, 0xf9, 0x52\n.byte 0x93, 0xb3, 0x40, 0x3d, 0x75, 0x10, 0xac, 0xc0, 0x96, 0xb7, 0xa7, 0x7e, 0x76, 0xbc, 0xe3, 0x1b\n.byte 0x52, 0x19, 0xce, 0x11, 0x1f, 0x0b, 0x04, 0x34, 0xf5, 0xd8, 0xf5, 0x69, 0x3c, 0x77, 0xf3, 0x64\n.byte 0xf4, 0x0d, 0xaa, 0x85, 0xde, 0xe0, 0x09, 0x50, 0x04, 0x17, 0x96, 0x84, 0xb7, 0xc8, 0x8a, 0xbc\n.byte 0x4d, 0x72, 0xfc, 0x1c, 0xbb, 0xcf, 0xf3, 0x06, 0x4d, 0xf9, 0x9f, 0x64, 0xf7, 0x7e, 0xa6, 0x66\n.byte 0x86, 0x35, 0x71, 0xc8, 0x11, 0x80, 0x4c, 0xc1, 0x71, 0x40, 0x58, 0x1e, 0xbe, 0xa0, 0x73, 0xf6\n.byte 0xfc, 0x3e, 0x50, 0xe1, 0xe0, 0x2f, 0x26, 0x3d, 0x7e, 0x5c, 0x23, 0xb5, 0x79, 0x70, 0xde, 0xfa\n.byte 0xe0, 0xd1, 0xa5, 0xd6, 0x0c, 0x41, 0x71, 0x7b, 0xf7, 0xea, 0x8c, 0x1c, 0x88, 0xc7, 0xec, 0x8b\n.byte 0xf5, 0xd1, 0x2f, 0x55, 0x96, 0x46, 0x7c, 0x5a, 0x3b, 0x58, 0x3b, 0xfb, 0xba, 0xd8, 0x2d, 0xb5\n.byte 0x25, 0xda, 0x7a, 0x4e, 0xcf, 0x44, 0xae, 0x21, 0xa6, 0x9e, 0x98, 0xca, 0x20, 0x6e, 0x7c, 0xbb\n.byte 0x88, 0x85, 0x5b, 0xfb, 0xc0, 0x10, 0x62, 0xbb, 0xf2, 0xf9, 0x27, 0x47, 0xef, 0xd1, 0x89, 0x39\n.byte 0x43, 0xc4, 0xdf, 0xde, 0xe1, 0x41, 0xbf, 0x54, 0x73, 0x20, 0x97, 0x2d, 0x6c, 0xda, 0xf3, 0xd4\n.byte 0x07, 0xa3, 0xe6, 0xb9, 0xd8, 0x6f, 0xae, 0xfc, 0x8c, 0x19, 0x2e, 0xd3, 0x67, 0x67, 0x2b, 0x95\n.byte 0xdb, 0x58, 0x5c, 0xb5, 0x6a, 0x02, 0xf3, 0xb8, 0x83, 0x5e, 0xb4, 0x6b, 0xbe, 0x41, 0x7e, 0x57\n.byte 0x09, 0x75, 0x44, 0x50, 0x55, 0xcd, 0x5a, 0x11, 0x61, 0x21, 0x0a, 0x61, 0xc2, 0xa9, 0x88, 0xfd\n.byte 0x13, 0xbc, 0x2d, 0x89, 0x2f, 0xcd, 0x61, 0xe0, 0x95, 0xbe, 0xca, 0xb5, 0x7b, 0xe1, 0x7b, 0x34\n.byte 0x67, 0x0b, 0x1f, 0xb6, 0x0c, 0xc7, 0x7c, 0x1e, 0x19, 0x53, 0xca, 0xa7, 0xb1, 0x4a, 0x15, 0x20\n.byte 0x56, 0x14, 0x70, 0x3d, 0x2b, 0x82, 0x2c, 0x0f, 0x9d, 0x15, 0x1d, 0x47, 0x80, 0x47, 0xff, 0x78\n.byte 0x99, 0x0e, 0x31, 0xaf, 0x6f, 0x3e, 0x8f, 0xed, 0x86, 0x69, 0x1e, 0x7b, 0x18, 0x88, 0x14, 0xb2\n.byte 0xc2, 0xfc, 0x82, 0x33, 0x2e, 0x9c, 0x4b, 0x2d, 0xfb, 0x70, 0x3b, 0x71, 0xaa, 0x2b, 0x7b, 0x26\n.byte 0x27, 0xf3, 0x1a, 0xc2, 0xdc, 0xfb, 0x17, 0xb8, 0xa1, 0xea, 0xcb, 0xa0, 0xb4, 0xae, 0xd3, 0x94\n.byte 0x7e, 0x7a, 0xd0, 0xab, 0xc3, 0xec, 0x38, 0x2d, 0x11, 0x2e, 0x88, 0xbf, 0xd4, 0x3f, 0xad, 0x12\n.byte 0x3b, 0x42, 0xac, 0x8f, 0x02, 0x6e, 0x7d, 0xcc, 0xd1, 0x5f, 0x61, 0xbe, 0xa1, 0xbc, 0x3a, 0x6a\n.byte 0x48, 0xea, 0x26, 0x55, 0x22, 0x16, 0x5d, 0x5f, 0x0d, 0xff, 0x27, 0x33, 0x9f, 0x18, 0x03, 0x74\n.byte 0x8a, 0x5b, 0x52, 0x20, 0x47, 0x6b, 0x45, 0x4d, 0x22, 0x77, 0x8c, 0x55, 0x27, 0xf0, 0xaf, 0x1e\n.byte 0x8c, 0xc9, 0x83, 0x22, 0x54, 0xb7, 0x9a, 0xd0, 0x4f, 0xd9, 0xce, 0xfc, 0xd9, 0x2e, 0x1c, 0x96\n.byte 0x28, 0xb1, 0x02, 0xd3, 0x03, 0xbd, 0x25, 0x52, 0x1c, 0x34, 0x66, 0x4f, 0x23, 0xab, 0xf4, 0x77\n.byte 0x82, 0x96, 0x1d, 0xd1, 0x57, 0x30, 0x08, 0x11, 0x05, 0xfd, 0x57, 0xd1, 0xd9, 0xc7, 0x02, 0x03\n.byte 0x01, 0x00, 0x01, 0x00, 0x5f, 0x01, 0x26, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13\n.byte 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73\n.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30\n.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79\n.byte 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82\n.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5\n.byte 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb\n.byte 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d\n.byte 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9\n.byte 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5\n.byte 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6\n.byte 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83\n.byte 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe\n.byte 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d\n.byte 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00\n.byte 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53\n.byte 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa\n.byte 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f\n.byte 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde\n.byte 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a\n.byte 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16\n.byte 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x60, 0x02, 0x26\n.byte 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31\n.byte 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68\n.byte 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20\n.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65\n.byte 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69\n.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79\n.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01\n.byte 0x00, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a\n.byte 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84\n.byte 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60\n.byte 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2\n.byte 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22\n.byte 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12\n.byte 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef\n.byte 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc\n.byte 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a\n.byte 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a\n.byte 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81\n.byte 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3\n.byte 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97\n.byte 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7\n.byte 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80\n.byte 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59\n.byte 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69\n.byte 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8\n.byte 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06\n.byte 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b\n.byte 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09\n.byte 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22\n.byte 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01\n.byte 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d\n.byte 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a\n.byte 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3\n.byte 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a\n.byte 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78\n.byte 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34\n.byte 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89\n.byte 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2\n.byte 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54\n.byte 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x61, 0x01, 0x26, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55\n.byte 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30\n.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31\n.byte 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f\n.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb0, 0x7e, 0x72, 0xb8\n.byte 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde, 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59\n.byte 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10, 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25\n.byte 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53, 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31\n.byte 0x42, 0x16, 0x47, 0x85, 0x33, 0x22, 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85\n.byte 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10, 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59\n.byte 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80, 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae\n.byte 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63, 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1\n.byte 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56, 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1\n.byte 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30, 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b\n.byte 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45, 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c\n.byte 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a, 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2\n.byte 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf, 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b\n.byte 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a, 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04\n.byte 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7, 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38\n.byte 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f, 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b\n.byte 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58, 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00\n.byte 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53\n.byte 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65\n.byte 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43\n.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86\n.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04\n.byte 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03, 0xc3, 0xbd, 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75\n.byte 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e, 0xd7, 0x63, 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c\n.byte 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90, 0x12, 0xc8, 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f\n.byte 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9, 0xef, 0x6d, 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc\n.byte 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2, 0xc6, 0xf9, 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2\n.byte 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12, 0x47, 0x6d, 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1\n.byte 0x00, 0x63, 0x02, 0x26, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67\n.byte 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64\n.byte 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20\n.byte 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54, 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30\n.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd\n.byte 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e, 0x05, 0x4b, 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f\n.byte 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda, 0xf6, 0x06, 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39\n.byte 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06, 0xd4, 0xec, 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88\n.byte 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a, 0xb2, 0x6c, 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8\n.byte 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5, 0x30, 0xc4, 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30\n.byte 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c, 0x39, 0xad, 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e\n.byte 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd, 0x29, 0x67, 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57\n.byte 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43, 0xda, 0x7e, 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea\n.byte 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11, 0xbb, 0x35, 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb\n.byte 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc, 0x4e, 0xa0, 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a\n.byte 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca, 0xa3, 0x65, 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6\n.byte 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a, 0x2c, 0x47, 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d\n.byte 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00, 0x58, 0x97, 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96\n.byte 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10, 0x84, 0xc3, 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9\n.byte 0x77, 0x47, 0x18, 0x92, 0x94, 0x60, 0x5c, 0xc7, 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d\n.byte 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83, 0xad, 0x58, 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf\n.byte 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07, 0xdb, 0x60, 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01\n.byte 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2, 0x5b, 0x23, 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8\n.byte 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8, 0x66, 0xbf, 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79\n.byte 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2, 0x8f, 0x0c, 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90\n.byte 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd, 0x3a, 0x24, 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c\n.byte 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1, 0x56, 0x3f, 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32\n.byte 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b, 0xf6, 0x5d, 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36\n.byte 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d, 0x3f, 0xad, 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50\n.byte 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8, 0x58, 0x41, 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f\n.byte 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d, 0x58, 0xa7, 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b\n.byte 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c, 0x54, 0xe6, 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a\n.byte 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2, 0x80, 0xb9, 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec\n.byte 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28, 0x42, 0x01, 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d\n.byte 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1, 0xec, 0x2c, 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24\n.byte 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43, 0x5d, 0x27, 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7\n.byte 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3, 0x00, 0x97, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01\n.byte 0x26, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53\n.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43\n.byte 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b\n.byte 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63\n.byte 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67\n.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f\n.byte 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86\n.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a\n.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xe2, 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57\n.byte 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01\n.byte 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57\n.byte 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf\n.byte 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b\n.byte 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06\n.byte 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a\n.byte 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d\n.byte 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32\n.byte 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49\n.byte 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf\n.byte 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14\n.byte 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf\n.byte 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8\n.byte 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04\n.byte 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f\n.byte 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30, 0x61\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30\n.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74\n.byte 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77\n.byte 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31\n.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65\n.byte 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47\n.byte 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01\n.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01\n.byte 0x01, 0x00, 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75\n.byte 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae\n.byte 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e\n.byte 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05\n.byte 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde\n.byte 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2\n.byte 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b\n.byte 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06\n.byte 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b\n.byte 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd\n.byte 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb\n.byte 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a\n.byte 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1\n.byte 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5\n.byte 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21\n.byte 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83\n.byte 0x29, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 0x31, 0x0b, 0x30\n.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e\n.byte 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e\n.byte 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20\n.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76\n.byte 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04\n.byte 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f\n.byte 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b\n.byte 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d\n.byte 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c\n.byte 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee\n.byte 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23\n.byte 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55\n.byte 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43\n.byte 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f\n.byte 0x52, 0x49, 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30\n.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75\n.byte 0x73, 0x74, 0x41, 0x55, 0x54, 0x48, 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd9\n.byte 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc\n.byte 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63\n.byte 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9\n.byte 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57\n.byte 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63\n.byte 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a\n.byte 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a\n.byte 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae\n.byte 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef\n.byte 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c\n.byte 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23\n.byte 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10\n.byte 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34\n.byte 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66\n.byte 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64\n.byte 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd\n.byte 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76\n.byte 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7\n.byte 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09\n.byte 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f\n.byte 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97\n.byte 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20\n.byte 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4\n.byte 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5\n.byte 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed\n.byte 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82\n.byte 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9\n.byte 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f\n.byte 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00\n.byte 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d\n.byte 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a\n.byte 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21, 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19\n.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67\n.byte 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x13, 0x18, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75\n.byte 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90\n.byte 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7\n.byte 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab\n.byte 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16\n.byte 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6\n.byte 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16\n.byte 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94\n.byte 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2\n.byte 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e\n.byte 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb\n.byte 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66\n.byte 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca\n.byte 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc\n.byte 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4\n.byte 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5\n.byte 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab, 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e\n.byte 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a\n.byte 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67\n.byte 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f\n.byte 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97\n.byte 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7\n.byte 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25\n.byte 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9\n.byte 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11\n.byte 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95\n.byte 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1\n.byte 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d\n.byte 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6\n.byte 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5\n.byte 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63\n.byte 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45\n.byte 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5\n.byte 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x65, 0x01, 0x24, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18\n.byte 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f\n.byte 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04\n.byte 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73\n.byte 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f\n.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea\n.byte 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb, 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef\n.byte 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3, 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9\n.byte 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63, 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54\n.byte 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81, 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e\n.byte 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20, 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb\n.byte 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27, 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d\n.byte 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72, 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a\n.byte 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0, 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a\n.byte 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d, 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08\n.byte 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04, 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5\n.byte 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f, 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae\n.byte 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03, 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1\n.byte 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe, 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a\n.byte 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07, 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b\n.byte 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba, 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5\n.byte 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f, 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x00\n.byte 0x67, 0x01, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67\n.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55\n.byte 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74\n.byte 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44\n.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20\n.byte 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d\n.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01\n.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4\n.byte 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3, 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94\n.byte 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20, 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15\n.byte 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1, 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17\n.byte 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7, 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32\n.byte 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c, 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf\n.byte 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1, 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58\n.byte 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1, 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b\n.byte 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f, 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e\n.byte 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16, 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b\n.byte 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda, 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87\n.byte 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a, 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87\n.byte 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13, 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1\n.byte 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17, 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46\n.byte 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1, 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4\n.byte 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2, 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95\n.byte 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb, 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01\n.byte 0x00, 0x67, 0x01, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69\n.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03\n.byte 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72\n.byte 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b\n.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64\n.byte 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f\n.byte 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88, 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f\n.byte 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf, 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75\n.byte 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa, 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf\n.byte 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00, 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e\n.byte 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd, 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50\n.byte 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf, 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b\n.byte 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52, 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12\n.byte 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b, 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87\n.byte 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74, 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6\n.byte 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29, 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f\n.byte 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3, 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b\n.byte 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe, 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f\n.byte 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1, 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62\n.byte 0x33, 0xae, 0x16, 0x02, 0x77, 0x44, 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8\n.byte 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87, 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8\n.byte 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa, 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00\n.byte 0x01, 0x00, 0x67, 0x00, 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44\n.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65\n.byte 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13\n.byte 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65\n.byte 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10\n.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22\n.byte 0x03, 0x62, 0x00, 0x04, 0x19, 0xe7, 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb\n.byte 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d, 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5\n.byte 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f, 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a\n.byte 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9, 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38\n.byte 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6, 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2\n.byte 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f, 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36\n.byte 0xf2, 0x6c, 0x29, 0x39, 0x00, 0x67, 0x00, 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70\n.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65\n.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30\n.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81\n.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd4, 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23\n.byte 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51, 0x2f, 0x6a, 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca\n.byte 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51, 0xa2, 0x03, 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c\n.byte 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79, 0xa6, 0x2f, 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab\n.byte 0x28, 0xec, 0x63, 0x04, 0x66, 0x99, 0xf8, 0xfa, 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42\n.byte 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b, 0x84, 0x60, 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce\n.byte 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78, 0xc0, 0x00, 0x67, 0x02, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30\n.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43\n.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03\n.byte 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52\n.byte 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63\n.byte 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30\n.byte 0x31, 0x37, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d\n.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82\n.byte 0x02, 0x01, 0x00, 0xca, 0x5b, 0xbe, 0x94, 0x33, 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd\n.byte 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99, 0x36, 0xdf, 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f\n.byte 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67, 0x50, 0x33, 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3\n.byte 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c, 0x48, 0x40, 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68\n.byte 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4, 0x65, 0xd0, 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac\n.byte 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b, 0x43, 0x1d, 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64\n.byte 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9, 0x6c, 0xb3, 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c\n.byte 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5, 0x1c, 0xb5, 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26\n.byte 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae, 0x60, 0xa4, 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57\n.byte 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2, 0xde, 0x4b, 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd\n.byte 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66, 0x80, 0x64, 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2\n.byte 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78, 0x33, 0x5b, 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a\n.byte 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82, 0x3e, 0x76, 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28\n.byte 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9, 0x8c, 0x49, 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d\n.byte 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe, 0x78, 0xa8, 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc\n.byte 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89, 0xad, 0xba, 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45\n.byte 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c, 0x68, 0x30, 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7\n.byte 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85, 0x3b, 0x3e, 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13\n.byte 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2, 0x5e, 0x44, 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b\n.byte 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86, 0x61, 0xa4, 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f\n.byte 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13, 0x2b, 0x8f, 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c\n.byte 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1, 0x48, 0x27, 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48\n.byte 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba, 0x5b, 0xa2, 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4\n.byte 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22, 0x98, 0xf4, 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50\n.byte 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac, 0xfc, 0x38, 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94\n.byte 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a, 0x50, 0x6b, 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12\n.byte 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae, 0x57, 0x22, 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3\n.byte 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e, 0x0e, 0xd3, 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8\n.byte 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07, 0xf8, 0x52, 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0\n.byte 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2, 0x81, 0xe1, 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce\n.byte 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54, 0xd4, 0x14, 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd\n.byte 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90, 0x5b, 0x98, 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e\n.byte 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x69, 0x01, 0x26, 0x30, 0x67, 0x31, 0x0b\n.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49\n.byte 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68\n.byte 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20\n.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41\n.byte 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01\n.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x93, 0x4b, 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5\n.byte 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3, 0xe7, 0x9e, 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4\n.byte 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b, 0x20, 0xc6, 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7\n.byte 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3, 0x76, 0xbd, 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5\n.byte 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29, 0xdd, 0x16, 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96\n.byte 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a, 0xfe, 0x3c, 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15\n.byte 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b, 0xaa, 0xcd, 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf\n.byte 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32, 0x16, 0xd3, 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01\n.byte 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b, 0xd9, 0x4e, 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32\n.byte 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3, 0xfa, 0xa2, 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e\n.byte 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62, 0xe2, 0xab, 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea\n.byte 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68, 0x85, 0x6d, 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d\n.byte 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96, 0xd1, 0x13, 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2\n.byte 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40, 0x1c, 0x3e, 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83\n.byte 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2, 0x86, 0x60, 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b\n.byte 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79, 0x4e, 0x34, 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad\n.byte 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6a, 0x01, 0x24, 0x30\n.byte 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25\n.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65\n.byte 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c\n.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29\n.byte 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20\n.byte 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20\n.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d\n.byte 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71\n.byte 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf, 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f\n.byte 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3, 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90\n.byte 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8, 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6\n.byte 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf, 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e\n.byte 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a, 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f\n.byte 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54, 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30\n.byte 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad, 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87\n.byte 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb, 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1\n.byte 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10, 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b\n.byte 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30, 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d\n.byte 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85, 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f\n.byte 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d, 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca\n.byte 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17, 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9\n.byte 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e, 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d\n.byte 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb, 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8\n.byte 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0, 0x01, 0xab, 0x02, 0x01, 0x03, 0x00, 0x6b, 0x02\n.byte 0x26, 0x30, 0x69, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52\n.byte 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52\n.byte 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53, 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f\n.byte 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0xd4, 0xf1\n.byte 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a, 0xab, 0x0d, 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74\n.byte 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65, 0x5a, 0x29, 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42\n.byte 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a, 0x31, 0x65, 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11\n.byte 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7, 0x6a, 0xe9, 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48\n.byte 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91, 0xb1, 0xca, 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3\n.byte 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02, 0xe5, 0xda, 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11\n.byte 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84, 0x93, 0x18, 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0\n.byte 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9, 0x02, 0x1d, 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad\n.byte 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54, 0xf7, 0x34, 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4\n.byte 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a, 0xdd, 0xfe, 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca\n.byte 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9, 0x66, 0xd3, 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1\n.byte 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69, 0xa7, 0x29, 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00\n.byte 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b, 0x92, 0x8d, 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9\n.byte 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69, 0xed, 0x6f, 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0\n.byte 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc, 0x44, 0xaa, 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf\n.byte 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f, 0x0c, 0x0b, 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9\n.byte 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03, 0xa0, 0xa0, 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c\n.byte 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9, 0xf1, 0x6d, 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06\n.byte 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d, 0xf3, 0x54, 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41\n.byte 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2, 0xd5, 0x09, 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d\n.byte 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c, 0x53, 0x70, 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61\n.byte 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e, 0x5f, 0x1b, 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1\n.byte 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f, 0xa9, 0xb0, 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03\n.byte 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce, 0xbf, 0x5d, 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0\n.byte 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb, 0x3e, 0x9c, 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5\n.byte 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17, 0x61, 0x96, 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7\n.byte 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5, 0x5b, 0x3e, 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63\n.byte 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90, 0x62, 0xb4, 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99\n.byte 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9, 0x5e, 0x04, 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1\n.byte 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80, 0x6b, 0xed, 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b\n.byte 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01, 0xc9, 0xb8, 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b\n.byte 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9, 0x74, 0x84, 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x6d, 0x00, 0x78, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a\n.byte 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63\n.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65\n.byte 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69\n.byte 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d\n.byte 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01\n.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x23, 0xa5, 0x0c, 0xb8, 0x2d\n.byte 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2, 0xdd, 0xe2, 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d\n.byte 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74, 0xec, 0xbb, 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae\n.byte 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14, 0xa8, 0x4a, 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5\n.byte 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06, 0xd0, 0x86, 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04\n.byte 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6, 0xa5, 0x63, 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18\n.byte 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82, 0x64, 0x7d, 0x16, 0x93, 0xd1, 0x00, 0x6d, 0x02, 0x26, 0x30\n.byte 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e\n.byte 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23\n.byte 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73\n.byte 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f, 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30\n.byte 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63\n.byte 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61\n.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4\n.byte 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5, 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a\n.byte 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c, 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40\n.byte 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5, 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f\n.byte 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f, 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20\n.byte 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d, 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e\n.byte 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc, 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9\n.byte 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41, 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a\n.byte 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54, 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78\n.byte 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13, 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c\n.byte 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd, 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b\n.byte 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08, 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35\n.byte 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed, 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22\n.byte 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0, 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b\n.byte 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc, 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04\n.byte 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3, 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe\n.byte 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18, 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8\n.byte 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3, 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb\n.byte 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4, 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd\n.byte 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6, 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11\n.byte 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97, 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81\n.byte 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18, 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02\n.byte 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59, 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8\n.byte 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb, 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94\n.byte 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a, 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61\n.byte 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c, 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f\n.byte 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06, 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a\n.byte 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0, 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14\n.byte 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf, 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53\n.byte 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12, 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63\n.byte 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe, 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94\n.byte 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d, 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1\n.byte 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2, 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x6e, 0x00, 0x78, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e\n.byte 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69\n.byte 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49\n.byte 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24\n.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20\n.byte 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20\n.byte 0x32, 0x30, 0x32, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02\n.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x38, 0x08, 0xfe, 0xb1\n.byte 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf, 0x49, 0x3a, 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1\n.byte 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88, 0x84, 0xfc, 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04\n.byte 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55, 0x87, 0xfc, 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a\n.byte 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9, 0xf2, 0x96, 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc\n.byte 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75, 0xd3, 0x72, 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8\n.byte 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58, 0x90, 0x15, 0x72, 0xa7, 0xa1, 0xb7, 0x00, 0x6e, 0x02, 0x26\n.byte 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31\n.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e\n.byte 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20\n.byte 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75\n.byte 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53\n.byte 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8b\n.byte 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05, 0x67, 0x96, 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc\n.byte 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84, 0x7f, 0x77, 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed\n.byte 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25, 0x09, 0x97, 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36\n.byte 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51, 0x82, 0xff, 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11\n.byte 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b, 0x4c, 0xbf, 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9\n.byte 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98, 0xe2, 0x23, 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41\n.byte 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda, 0x1f, 0xd3, 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1\n.byte 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0, 0xd6, 0x69, 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb\n.byte 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa, 0xe3, 0xa4, 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f\n.byte 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3, 0x9f, 0xae, 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59\n.byte 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5, 0x30, 0x94, 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98\n.byte 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4, 0x5a, 0xd9, 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c\n.byte 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f, 0x8e, 0x0b, 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29\n.byte 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99, 0xca, 0x88, 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6\n.byte 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70, 0xc0, 0x5a, 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69\n.byte 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e, 0xd1, 0xf2, 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c\n.byte 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22, 0x38, 0x80, 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91\n.byte 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f, 0x35, 0xab, 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e\n.byte 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5, 0x11, 0xd1, 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1\n.byte 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba, 0xb3, 0x50, 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb\n.byte 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70, 0xa3, 0x09, 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c\n.byte 0xad, 0x38, 0xea, 0x81, 0x00, 0x63, 0x14, 0xb9, 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07\n.byte 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4, 0xa7, 0x02, 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65\n.byte 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0, 0xde, 0x3c, 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3\n.byte 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad, 0x77, 0x4c, 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06\n.byte 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f, 0x20, 0x8a, 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c\n.byte 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a, 0x83, 0x50, 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45\n.byte 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68, 0xe3, 0x26, 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c\n.byte 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a, 0x72, 0x61, 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2\n.byte 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe, 0xb3, 0x50, 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6\n.byte 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84, 0x5e, 0x68, 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6\n.byte 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27, 0x65, 0x2e, 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x6e, 0x01, 0x26, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19\n.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67\n.byte 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67\n.byte 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82\n.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5\n.byte 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3\n.byte 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2\n.byte 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38\n.byte 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d\n.byte 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe\n.byte 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55\n.byte 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a\n.byte 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00\n.byte 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61\n.byte 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d\n.byte 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13\n.byte 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04\n.byte 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66\n.byte 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d\n.byte 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb\n.byte 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x26\n.byte 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31\n.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65\n.byte 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54\n.byte 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64\n.byte 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f\n.byte 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c\n.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 0x30\n.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00\n.byte 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6, 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38\n.byte 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27, 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88\n.byte 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8, 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f\n.byte 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32, 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c\n.byte 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b, 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d\n.byte 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15, 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1\n.byte 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba, 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3\n.byte 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e, 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46\n.byte 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9, 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84\n.byte 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69, 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8\n.byte 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8, 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea\n.byte 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d, 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07\n.byte 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d, 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79\n.byte 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e, 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e\n.byte 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b, 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e\n.byte 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad, 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x00, 0x78, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03\n.byte 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64\n.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28\n.byte 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57\n.byte 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f\n.byte 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86\n.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04\n.byte 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18, 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79\n.byte 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb, 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b\n.byte 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d, 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e\n.byte 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb, 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7\n.byte 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78, 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37\n.byte 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4, 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91\n.byte 0x00, 0x71, 0x02, 0x26, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x09, 0x48, 0x6f\n.byte 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x07\n.byte 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x16, 0x30, 0x14, 0x06\n.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50\n.byte 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f\n.byte 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f, 0x20, 0x4e, 0xbe, 0xe6\n.byte 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1, 0x83, 0x0e, 0x3e, 0x68\n.byte 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4, 0x15, 0xb2, 0xee, 0xc1\n.byte 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc, 0x1c, 0xe7, 0x4b, 0x5f\n.byte 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13, 0x8e, 0xe9, 0x1f, 0x87\n.byte 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13, 0x70, 0x96, 0xbb, 0x89\n.byte 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88, 0xbb, 0xd3, 0xb9, 0x95\n.byte 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89, 0xf5, 0x41, 0x31, 0xca\n.byte 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5, 0x03, 0xf5, 0x99, 0xba\n.byte 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f, 0x05, 0xd2, 0x84, 0x45\n.byte 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb, 0xc2, 0x98, 0x1c, 0x84\n.byte 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda, 0x6e, 0x45, 0x1e, 0x89\n.byte 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50, 0x25, 0x88, 0x99, 0xcb\n.byte 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e, 0xab, 0xcd, 0x4a, 0xb8\n.byte 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2, 0x64, 0x62, 0x8a, 0x42\n.byte 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c, 0x76, 0x01, 0xbd, 0x2f\n.byte 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42, 0x86, 0x7e, 0x69, 0xc1\n.byte 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41, 0x2e, 0x3f, 0xb7, 0xe4\n.byte 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b, 0x34, 0x06, 0x90, 0xec\n.byte 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d, 0xdd, 0xe1, 0x15, 0xec\n.byte 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72, 0x25, 0xb1, 0x36, 0x86\n.byte 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d, 0xae, 0xcb, 0x50, 0xe1\n.byte 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c, 0x98, 0x1d, 0x77, 0xba\n.byte 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95, 0x87, 0x8f, 0x97, 0xc5\n.byte 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39, 0x3a, 0xd0, 0x54, 0xa1\n.byte 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0, 0x02, 0x8f, 0x6e, 0x96\n.byte 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed, 0x99, 0x06, 0x2f, 0xb6\n.byte 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d, 0x8a, 0x5f, 0xc4, 0x34\n.byte 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48, 0xb4, 0x8b, 0x06, 0xc5\n.byte 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42, 0xff, 0x37, 0x8f, 0xe1\n.byte 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f, 0xb6, 0x45, 0x37, 0x94\n.byte 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d, 0x45, 0x8f, 0x1a, 0xa7\n.byte 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x73, 0x00, 0x5b, 0x30\n.byte 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11\n.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73\n.byte 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72\n.byte 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55\n.byte 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33, 0x35, 0x38, 0x34, 0x34\n.byte 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x65, 0x2d, 0x53\n.byte 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30\n.byte 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06\n.byte 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x96, 0xdc, 0x3d\n.byte 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3, 0x56, 0x15, 0x7b, 0x8e\n.byte 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e, 0x87, 0xd0, 0x15, 0x48\n.byte 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6, 0x60, 0x5f, 0x68, 0x32\n.byte 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a, 0xda, 0x00, 0x76, 0x00\n.byte 0x78, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c\n.byte 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63\n.byte 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53\n.byte 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65\n.byte 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x19, 0x30, 0x17\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x45, 0x43\n.byte 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48\n.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc4\n.byte 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4, 0xcd, 0xec, 0xab, 0x3a\n.byte 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1, 0x94, 0xf2, 0xe3, 0x60\n.byte 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60, 0x83, 0x9f, 0xb4, 0xe6\n.byte 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11, 0x05, 0x2a, 0xa7, 0x88\n.byte 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55, 0xff, 0xce, 0x4c, 0xe7\n.byte 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53, 0xad, 0xeb, 0xc2, 0x00\n.byte 0x7a, 0x00, 0x78, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d\n.byte 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x05\n.byte 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f\n.byte 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32, 0x36, 0x30, 0x30, 0x34, 0x4a, 0x31\n.byte 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49\n.byte 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x49\n.byte 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f, 0x53, 0x30, 0x76, 0x30\n.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00\n.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xf6, 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab, 0xdf, 0x36, 0x4a, 0x52\n.byte 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e, 0x87, 0xc7, 0x47, 0xb1\n.byte 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb, 0x42, 0xc7, 0xb1, 0xb2\n.byte 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9, 0x36, 0x2c, 0x49, 0xdb\n.byte 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5, 0xfd, 0xaf, 0x36, 0x4d\n.byte 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43, 0x5a, 0x0a, 0x52, 0x6f\n.byte 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x00, 0x7c, 0x02, 0x26, 0x30, 0x7a, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53\n.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72\n.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f\n.byte 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x43\n.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f\n.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48\n.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02\n.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36, 0xea, 0x6d, 0x37, 0x91\n.byte 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82, 0xf7, 0x7c, 0x99, 0x9f\n.byte 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c, 0xdf, 0x29, 0x7e, 0x4b\n.byte 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8, 0x9d, 0x05, 0xc1, 0x2a\n.byte 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf, 0x38, 0x0f, 0xea, 0xa7\n.byte 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2, 0xe7, 0x25, 0xcf, 0x11\n.byte 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f, 0x39, 0xdc, 0x14, 0xa5\n.byte 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08, 0x1e, 0x14, 0x2a, 0x37\n.byte 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1, 0xbe, 0x29, 0x67, 0x55\n.byte 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d, 0xc2, 0xed, 0x37, 0xb6\n.byte 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a, 0xa8, 0xa8, 0x45, 0xf0\n.byte 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32, 0xc9, 0x8d, 0xef, 0x81\n.byte 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65, 0x95, 0x67, 0xa0, 0xf3, 0x19, 0xf6\n.byte 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a, 0x12, 0x22, 0x77, 0x1c\n.byte 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90, 0x58, 0xe0, 0x6a, 0x8e\n.byte 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9, 0xba, 0x7f, 0x56, 0xf1\n.byte 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79, 0xd5, 0x41, 0x9a, 0x9a\n.byte 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7, 0xc5, 0x25, 0xd7, 0x3d\n.byte 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e, 0x4c, 0x65, 0xff, 0x3b\n.byte 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e, 0x9a, 0x2a, 0xa2, 0xed\n.byte 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d, 0x55, 0xe3, 0x8c, 0x95\n.byte 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d, 0x00, 0xab, 0x67, 0x29\n.byte 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72, 0x5c, 0xc4, 0x85, 0xca\n.byte 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b, 0xf3, 0xe0, 0x3f, 0x9b\n.byte 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1, 0xf7, 0x3c, 0x07, 0x97\n.byte 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59, 0x46, 0xed, 0x0f, 0xa9\n.byte 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57, 0xf3, 0x97, 0x21, 0x7a\n.byte 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4, 0x98, 0x9e, 0x36, 0x09\n.byte 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30, 0xbd, 0x80, 0x50, 0xbf\n.byte 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0, 0xe3, 0x01, 0x81, 0x0e\n.byte 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08, 0xe5, 0x44, 0x80, 0x8c\n.byte 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5, 0x87, 0xd1, 0x3a, 0x4e\n.byte 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7d, 0x01, 0x26, 0x30\n.byte 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b\n.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72\n.byte 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06\n.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30\n.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43\n.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55\n.byte 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63\n.byte 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbe, 0x40, 0x9d\n.byte 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06\n.byte 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16\n.byte 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e\n.byte 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae\n.byte 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22\n.byte 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98\n.byte 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65\n.byte 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66\n.byte 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99\n.byte 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf\n.byte 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17\n.byte 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98\n.byte 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74\n.byte 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe\n.byte 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20\n.byte 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x7e, 0x00, 0x78, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05\n.byte 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07\n.byte 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f\n.byte 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e\n.byte 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69\n.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79\n.byte 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02\n.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x6e, 0xa9, 0x50\n.byte 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22, 0x64, 0x3f, 0xdc, 0x7a\n.byte 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9, 0x04, 0x1b, 0x47, 0x96\n.byte 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb, 0x89, 0x8c, 0x53, 0x58\n.byte 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41, 0x3b, 0x89, 0xcd, 0xec\n.byte 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f, 0xc2, 0x45, 0x95, 0xec\n.byte 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3, 0x00, 0x7e, 0x02, 0x26\n.byte 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31\n.byte 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31\n.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f\n.byte 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20\n.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f\n.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e\n.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x53, 0x41, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf9\n.byte 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85, 0xa6, 0xe7, 0x2e, 0x1b\n.byte 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91, 0xc4, 0x57, 0x47, 0x6b\n.byte 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16, 0x9e, 0x0b, 0x66, 0xc3\n.byte 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd, 0x00, 0x62, 0xf5, 0x22\n.byte 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97, 0xaa, 0x1b, 0xc8, 0xb8\n.byte 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c, 0xca, 0xf3, 0x41, 0xd8\n.byte 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d, 0x10, 0x0e, 0x4b, 0x19\n.byte 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02, 0x0b, 0x9d, 0x86, 0x55\n.byte 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1, 0x50, 0x62, 0x75, 0x74\n.byte 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8, 0x1e, 0xa1, 0xe3, 0xb2\n.byte 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37, 0xe9, 0x85, 0xa4, 0x33\n.byte 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7, 0xb2, 0xa8, 0xd3, 0xb7\n.byte 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9, 0x22, 0x84, 0x24, 0x74\n.byte 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1, 0xfe, 0x5f, 0x25, 0xaa\n.byte 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38, 0x9c, 0x7e, 0x3d, 0x86\n.byte 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28, 0xcb, 0xae, 0x71, 0x9f\n.byte 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5, 0x60, 0x3d, 0xd9, 0x7c\n.byte 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a, 0xc3, 0x1f, 0xef, 0x2c\n.byte 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03, 0xd6, 0xea, 0x60, 0x68\n.byte 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4, 0x24, 0xdc, 0x80, 0x2a\n.byte 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e, 0x5e, 0xbf, 0x7f, 0xc5\n.byte 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27, 0x4b, 0x4e, 0x80, 0xf4\n.byte 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c, 0x51, 0x2e, 0x1c, 0x2b\n.byte 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4, 0x9f, 0xad, 0x07, 0x93\n.byte 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe, 0x21, 0x73, 0xde, 0x92\n.byte 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc, 0x65, 0x55, 0x9b, 0xde\n.byte 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb, 0xc2, 0x6d, 0xca, 0x7c\n.byte 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b, 0x59, 0x3c, 0x2b, 0xcc\n.byte 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26, 0xf8, 0xca, 0x71, 0x9b\n.byte 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78, 0x09, 0x33, 0x70, 0xba\n.byte 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22, 0x13, 0x20, 0x94, 0x56\n.byte 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2, 0x33, 0xed, 0x87, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x80, 0x01, 0x26, 0x30, 0x7e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03\n.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f\n.byte 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06\n.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72\n.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f\n.byte 0x72, 0x69, 0x74, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x43\n.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65\n.byte 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09\n.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00\n.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe3, 0xfb, 0x7d, 0xa3, 0x72, 0xba, 0xc2\n.byte 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07, 0xba, 0x6d, 0x27, 0x5d\n.byte 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32, 0xa6, 0x61, 0x87, 0xb6\n.byte 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1, 0x18, 0x39, 0x5d, 0x6a\n.byte 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2, 0x04, 0xd2, 0x4b, 0x28\n.byte 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae, 0x4f, 0xc7, 0x56, 0xd5\n.byte 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59, 0x27, 0xcf, 0x09, 0x27\n.byte 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9, 0xd2, 0xe1, 0x74, 0x75\n.byte 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39, 0xad, 0x55, 0x28, 0xc5\n.byte 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76, 0x85, 0x9f, 0x39, 0x45\n.byte 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f, 0xf5, 0xac, 0x5f, 0xeb\n.byte 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25, 0xc9, 0x90, 0x38, 0x6f\n.byte 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e, 0xe6, 0x05, 0x28, 0xed\n.byte 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39, 0xca, 0xfe, 0x1f, 0xd8\n.byte 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11, 0x2d, 0x17, 0x5d, 0x1f\n.byte 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca, 0x50, 0x95, 0xf9, 0xa7\n.byte 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x81\n.byte 0x00, 0x78, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55\n.byte 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61\n.byte 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73\n.byte 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53\n.byte 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x34, 0x30\n.byte 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20\n.byte 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63\n.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20\n.byte 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01\n.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa, 0x12, 0x47, 0x90, 0x98\n.byte 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2\n.byte 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86\n.byte 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99\n.byte 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53\n.byte 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70\n.byte 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x00, 0x83, 0x02, 0x26, 0x30\n.byte 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31\n.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74\n.byte 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53\n.byte 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65\n.byte 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22\n.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72\n.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41\n.byte 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d\n.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82\n.byte 0x02, 0x01, 0x00, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96\n.byte 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc\n.byte 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99\n.byte 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e\n.byte 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25\n.byte 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb\n.byte 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f\n.byte 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9\n.byte 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5\n.byte 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86\n.byte 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0\n.byte 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b\n.byte 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f\n.byte 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b\n.byte 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42\n.byte 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88\n.byte 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02\n.byte 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27\n.byte 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd\n.byte 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe\n.byte 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc\n.byte 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a\n.byte 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46\n.byte 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8\n.byte 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70\n.byte 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8\n.byte 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8\n.byte 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b\n.byte 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe\n.byte 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b\n.byte 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1\n.byte 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63\n.byte 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x83, 0x00, 0x78, 0x30, 0x81, 0x80, 0x31\n.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d\n.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30\n.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20\n.byte 0x45, 0x42, 0x47, 0x20, 0x41, 0x2e, 0x53, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04\n.byte 0x0b, 0x13, 0x14, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74\n.byte 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x76, 0x33, 0x30\n.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81\n.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x8e, 0x98, 0x29, 0xbf, 0xc7, 0x10, 0x1e, 0x27, 0xdb\n.byte 0xab, 0x03, 0xcc, 0x28, 0x2c, 0xd8, 0x5e, 0x48, 0x19, 0x10, 0x29, 0xcc, 0xcb, 0x59, 0x81, 0xcc\n.byte 0x8c, 0xb8, 0x92, 0x17, 0x89, 0x83, 0x2a, 0x92, 0xf6, 0xc3, 0xa4, 0x1d, 0x4c, 0x62, 0xd5, 0x9f\n.byte 0xd6, 0xa0, 0x46, 0xdc, 0x1c, 0xbc, 0x76, 0xc1, 0xe3, 0x47, 0xd0, 0x5b, 0x13, 0xda, 0xe7, 0xa5\n.byte 0xb3, 0x66, 0x48, 0xe7, 0x21, 0x9a, 0x4a, 0x4f, 0x86, 0x0a, 0x7d, 0x6c, 0xea, 0x4d, 0x32, 0x80\n.byte 0x0a, 0xb2, 0x7a, 0x09, 0x9b, 0x69, 0x4b, 0x98, 0x81, 0xe2, 0x2e, 0xec, 0x02, 0x70, 0x96, 0x1f\n.byte 0xfd, 0xf5, 0x46, 0xce, 0xca, 0xdc, 0x82, 0x00, 0x83, 0x02, 0x26, 0x30, 0x81, 0x80, 0x31, 0x0b\n.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06\n.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30, 0x17\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x45\n.byte 0x42, 0x47, 0x20, 0x41, 0x2e, 0x53, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0b\n.byte 0x13, 0x14, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20\n.byte 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13\n.byte 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20, 0x76, 0x33, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa2\n.byte 0x66, 0xf0, 0x89, 0xb7, 0x72, 0x7b, 0xee, 0x09, 0xc9, 0x63, 0xd2, 0xd3, 0x43, 0xdd, 0x5e, 0xc3\n.byte 0xa6, 0x84, 0x38, 0x4a, 0xf1, 0x8d, 0x81, 0xbb, 0x14, 0xbd, 0x47, 0xe8, 0x40, 0x17, 0xf3, 0x3d\n.byte 0xc3, 0x78, 0x45, 0x72, 0xa6, 0x2e, 0x90, 0xde, 0x9a, 0x3a, 0xd4, 0x20, 0x71, 0xca, 0xbc, 0x9f\n.byte 0x1d, 0x4b, 0x97, 0x0a, 0xc7, 0x31, 0xba, 0x3e, 0xd7, 0xfe, 0x25, 0xa9, 0x2a, 0x8e, 0x36, 0xf4\n.byte 0xd1, 0x2f, 0xc7, 0xb7, 0xa9, 0x5d, 0x33, 0xdc, 0x30, 0x70, 0xf8, 0x40, 0x6c, 0x4b, 0xb2, 0xa6\n.byte 0x31, 0x61, 0xd1, 0x34, 0x3c, 0x3d, 0x31, 0x7a, 0xc7, 0xaf, 0xc4, 0xa7, 0xa7, 0x84, 0xe1, 0x97\n.byte 0xa4, 0xe8, 0x4b, 0xf6, 0x17, 0x7c, 0xee, 0x3c, 0x07, 0xed, 0xe2, 0x8a, 0x57, 0xdc, 0xb6, 0xfb\n.byte 0xf8, 0x43, 0x25, 0x50, 0xea, 0x27, 0x81, 0xa8, 0x86, 0xbc, 0x8f, 0x52, 0x4a, 0x96, 0x3a, 0x60\n.byte 0x1a, 0x96, 0xbb, 0xfd, 0x73, 0xf4, 0x85, 0xfd, 0x83, 0xfd, 0x7f, 0x84, 0x6d, 0x34, 0x6c, 0x7f\n.byte 0x6a, 0xb7, 0x4b, 0x01, 0x03, 0xbf, 0xad, 0x69, 0xb7, 0xd7, 0x32, 0xd9, 0xf5, 0x57, 0x6a, 0xe9\n.byte 0x86, 0x82, 0x3e, 0xa5, 0x66, 0x31, 0xb3, 0x16, 0x3d, 0xc2, 0xf3, 0x26, 0x60, 0x32, 0xd3, 0x52\n.byte 0x1e, 0xb0, 0x6c, 0xa4, 0x37, 0x3e, 0xf4, 0xf5, 0xaf, 0xeb, 0xe1, 0xdf, 0x80, 0x06, 0xcf, 0x2a\n.byte 0x41, 0xe7, 0x66, 0x09, 0xe1, 0x4b, 0x97, 0xe7, 0x77, 0xbd, 0x21, 0x6d, 0x29, 0xb6, 0x67, 0xc3\n.byte 0x2d, 0x7e, 0xed, 0xd6, 0x79, 0x65, 0xd1, 0xcf, 0x3a, 0xb6, 0xd1, 0xb1, 0x5e, 0x56, 0x61, 0x50\n.byte 0x7a, 0x5a, 0xce, 0x4e, 0x50, 0x31, 0x80, 0x03, 0x98, 0x47, 0xe7, 0xe4, 0x18, 0x7c, 0x44, 0x5a\n.byte 0xc6, 0xa4, 0xb3, 0x3b, 0xc6, 0xc6, 0xc3, 0x3a, 0xf0, 0x6c, 0xc3, 0x8b, 0xc8, 0xa4, 0x91, 0x05\n.byte 0xf3, 0xf5, 0xd9, 0xb6, 0xaa, 0x06, 0xa1, 0xb7, 0xab, 0xe4, 0xb1, 0xea, 0x21, 0x14, 0x5c, 0x83\n.byte 0xa4, 0xfc, 0xff, 0xb6, 0x50, 0xd3, 0x8c, 0x12, 0x26, 0x99, 0x76, 0x70, 0xe9, 0xc0, 0x0f, 0xa6\n.byte 0x74, 0xfc, 0xbb, 0xd0, 0x1b, 0x78, 0xce, 0x72, 0x92, 0xe2, 0x28, 0x9c, 0xbc, 0xe6, 0xe9, 0x09\n.byte 0xd8, 0x3a, 0xd3, 0x89, 0xe6, 0xbe, 0x2e, 0x77, 0xdf, 0x01, 0x0a, 0x6f, 0x96, 0xf6, 0xe5, 0x8d\n.byte 0x3c, 0x4d, 0x52, 0x76, 0x1a, 0x56, 0xe1, 0x73, 0x7e, 0x17, 0xac, 0x3d, 0xad, 0x6c, 0xa3, 0x52\n.byte 0x12, 0x18, 0x70, 0xe6, 0x80, 0x4e, 0x33, 0xf2, 0x7e, 0x26, 0x32, 0xac, 0x05, 0x8d, 0x38, 0xa4\n.byte 0xe6, 0x76, 0x3c, 0x9f, 0x10, 0x69, 0x0e, 0x6d, 0x9d, 0xd2, 0xc1, 0x79, 0x20, 0x6b, 0x5b, 0xcf\n.byte 0x33, 0x8d, 0xd1, 0x94, 0x76, 0x35, 0xe7, 0x5d, 0x55, 0xc7, 0xb7, 0xac, 0x28, 0xab, 0x46, 0xcc\n.byte 0xe7, 0x3b, 0x21, 0xb5, 0x0a, 0x0a, 0xe4, 0x4a, 0x59, 0xdc, 0x81, 0x35, 0x4b, 0x44, 0x95, 0x12\n.byte 0x0a, 0x67, 0xa5, 0xa1, 0xff, 0x5b, 0x00, 0x07, 0xd2, 0xc0, 0xcc, 0xf9, 0x3f, 0xfc, 0x9f, 0x33\n.byte 0xf2, 0x00, 0xf8, 0x8c, 0x6c, 0x87, 0x9d, 0x06, 0x2d, 0xf1, 0xef, 0xe3, 0xe6, 0x06, 0xfa, 0xc5\n.byte 0x66, 0x13, 0x5b, 0xfc, 0x50, 0x07, 0x9e, 0x71, 0x86, 0xb2, 0xda, 0x6f, 0x74, 0x30, 0xcf, 0x93\n.byte 0x53, 0xe8, 0xdc, 0x22, 0xd6, 0xde, 0x20, 0x1f, 0x61, 0x8d, 0xa3, 0x2e, 0xa3, 0x78, 0x32, 0x90\n.byte 0x6c, 0xdc, 0xac, 0x32, 0xb5, 0x05, 0xe4, 0xf5, 0x3c, 0x33, 0x0d, 0xd6, 0xe0, 0x87, 0x77, 0x17\n.byte 0x4c, 0x9d, 0xb0, 0xd8, 0x09, 0xa8, 0x0d, 0x57, 0xf7, 0x44, 0x85, 0xf0, 0xc8, 0x04, 0xbe, 0x5c\n.byte 0x5d, 0x5a, 0xe3, 0x17, 0x8e, 0x54, 0x63, 0x69, 0x7f, 0x49, 0x74, 0x64, 0x05, 0x8c, 0xa3, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x84, 0x01, 0x26, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04\n.byte 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68\n.byte 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07\n.byte 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69\n.byte 0x74, 0x65, 0x64, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f\n.byte 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22\n.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03\n.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b\n.byte 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1\n.byte 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0\n.byte 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42\n.byte 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50\n.byte 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71\n.byte 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2\n.byte 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4\n.byte 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d\n.byte 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04\n.byte 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9\n.byte 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b\n.byte 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00\n.byte 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4\n.byte 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad\n.byte 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19\n.byte 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01\n.byte 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c\n.byte 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72\n.byte 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47\n.byte 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d\n.byte 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65\n.byte 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54\n.byte 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52\n.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f, 0xda, 0x1b\n.byte 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60\n.byte 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2\n.byte 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c\n.byte 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2\n.byte 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49\n.byte 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39\n.byte 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9\n.byte 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3\n.byte 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf\n.byte 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21\n.byte 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b\n.byte 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91\n.byte 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f\n.byte 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f\n.byte 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78\n.byte 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00\n.byte 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22\n.byte 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70\n.byte 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d\n.byte 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53\n.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e\n.byte 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d\n.byte 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f\n.byte 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d\n.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01\n.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0x75, 0x93, 0xf0, 0x62\n.byte 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc\n.byte 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a\n.byte 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a\n.byte 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c\n.byte 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e\n.byte 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75\n.byte 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44\n.byte 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7\n.byte 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf\n.byte 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b\n.byte 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73\n.byte 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8\n.byte 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b\n.byte 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52\n.byte 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d\n.byte 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01\n.byte 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42\n.byte 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a\n.byte 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31\n.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73\n.byte 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d\n.byte 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68, 0x75, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06\n.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f\n.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad\n.byte 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63\n.byte 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1\n.byte 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6\n.byte 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f\n.byte 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46\n.byte 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d\n.byte 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67\n.byte 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba\n.byte 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53\n.byte 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10\n.byte 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4\n.byte 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb\n.byte 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57\n.byte 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0\n.byte 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76\n.byte 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00\n.byte 0x85, 0x02, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13\n.byte 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65\n.byte 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f\n.byte 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f\n.byte 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31\n.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f\n.byte 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66\n.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74\n.byte 0x79, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09\n.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00\n.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d\n.byte 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe\n.byte 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57\n.byte 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01\n.byte 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d\n.byte 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0\n.byte 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85\n.byte 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4\n.byte 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72\n.byte 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19\n.byte 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b\n.byte 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c\n.byte 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66\n.byte 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b\n.byte 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a\n.byte 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6\n.byte 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8\n.byte 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd\n.byte 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34\n.byte 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64\n.byte 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3\n.byte 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f\n.byte 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66\n.byte 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e\n.byte 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b\n.byte 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88\n.byte 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23\n.byte 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe\n.byte 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b\n.byte 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae\n.byte 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa\n.byte 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95\n.byte 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85\n.byte 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77\n.byte 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63\n.byte 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61\n.byte 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76\n.byte 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20\n.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75\n.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30\n.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf\n.byte 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69, 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d\n.byte 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74, 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad\n.byte 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b, 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29\n.byte 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d, 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f\n.byte 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e, 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11\n.byte 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4, 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f\n.byte 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a, 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b\n.byte 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c, 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44\n.byte 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d, 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8\n.byte 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8, 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b\n.byte 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86, 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64\n.byte 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a, 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25\n.byte 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d, 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4\n.byte 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d, 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb\n.byte 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83, 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e\n.byte 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x86, 0x01\n.byte 0x26, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55\n.byte 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a\n.byte 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63\n.byte 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20\n.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47\n.byte 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72\n.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69\n.byte 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a\n.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30\n.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34\n.byte 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20\n.byte 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0\n.byte 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f\n.byte 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75\n.byte 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6\n.byte 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19\n.byte 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66\n.byte 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38\n.byte 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c\n.byte 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c\n.byte 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9\n.byte 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc\n.byte 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a\n.byte 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d\n.byte 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb\n.byte 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x87, 0x02\n.byte 0x26, 0x30, 0x81, 0x84, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47\n.byte 0x36, 0x33, 0x32, 0x38, 0x37, 0x35, 0x31, 0x30, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e\n.byte 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65\n.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14\n.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20\n.byte 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41\n.byte 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72\n.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09\n.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00\n.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54\n.byte 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01, 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba\n.byte 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b, 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b\n.byte 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d, 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77\n.byte 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6, 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34\n.byte 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad, 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5\n.byte 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c, 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65\n.byte 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3, 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c\n.byte 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4, 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3\n.byte 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52, 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4\n.byte 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39, 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35\n.byte 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f, 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93\n.byte 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f, 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e\n.byte 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f, 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f\n.byte 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17, 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb\n.byte 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77, 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0\n.byte 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57, 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e\n.byte 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c, 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f\n.byte 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61, 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4\n.byte 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3, 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23\n.byte 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c, 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f\n.byte 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74, 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c\n.byte 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5, 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5\n.byte 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e, 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17\n.byte 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4, 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51\n.byte 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89, 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44\n.byte 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a, 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5\n.byte 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f, 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9\n.byte 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03, 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0\n.byte 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e, 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f\n.byte 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84, 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14\n.byte 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf, 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e\n.byte 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x88\n.byte 0x00, 0x78, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02\n.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65\n.byte 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31\n.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72\n.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f\n.byte 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30\n.byte 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45\n.byte 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e\n.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07\n.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62\n.byte 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16\n.byte 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a\n.byte 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa\n.byte 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71\n.byte 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59\n.byte 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3\n.byte 0x06, 0xe9, 0x00, 0x88, 0x02, 0x26, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55\n.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13\n.byte 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73\n.byte 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61\n.byte 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11\n.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65\n.byte 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f\n.byte 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61\n.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82\n.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05\n.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x91\n.byte 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74\n.byte 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12\n.byte 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17\n.byte 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa\n.byte 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82\n.byte 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82\n.byte 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43\n.byte 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab\n.byte 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55\n.byte 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99\n.byte 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51\n.byte 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f\n.byte 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc\n.byte 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22\n.byte 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99\n.byte 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf\n.byte 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2\n.byte 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0\n.byte 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43\n.byte 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28\n.byte 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1\n.byte 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6\n.byte 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c\n.byte 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02\n.byte 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3\n.byte 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27\n.byte 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf\n.byte 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e\n.byte 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31\n.byte 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa\n.byte 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d\n.byte 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02\n.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b, 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04\n.byte 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06\n.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30\n.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76\n.byte 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e\n.byte 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74\n.byte 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74\n.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72\n.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02\n.byte 0x82, 0x02, 0x01, 0x00, 0xb9, 0x5d, 0x51, 0x28, 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd\n.byte 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a, 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9\n.byte 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2, 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73\n.byte 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00, 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93\n.byte 0x87, 0x17, 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4, 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2\n.byte 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89, 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3\n.byte 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88, 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f\n.byte 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3, 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d\n.byte 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0, 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76\n.byte 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40, 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c\n.byte 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44, 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81\n.byte 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b, 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04\n.byte 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98, 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe\n.byte 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2, 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9\n.byte 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e, 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e\n.byte 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2, 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c\n.byte 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58, 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57\n.byte 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c, 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08\n.byte 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69, 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b\n.byte 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50, 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a\n.byte 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2, 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e\n.byte 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c, 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4\n.byte 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04, 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c\n.byte 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2, 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3\n.byte 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39, 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d\n.byte 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f, 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45\n.byte 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6, 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59\n.byte 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6, 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72\n.byte 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91, 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17\n.byte 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35, 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41\n.byte 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5, 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90\n.byte 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad, 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17\n.byte 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b, 0x00, 0x78, 0x30, 0x81, 0x88\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30\n.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73\n.byte 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72\n.byte 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54\n.byte 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04\n.byte 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43\n.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41\n.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86\n.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04\n.byte 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a\n.byte 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61\n.byte 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21\n.byte 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1\n.byte 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c\n.byte 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79\n.byte 0x00, 0x8b, 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e\n.byte 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55\n.byte 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31\n.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53\n.byte 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31\n.byte 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72\n.byte 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63\n.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed\n.byte 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09\n.byte 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6\n.byte 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd\n.byte 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0\n.byte 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64\n.byte 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87\n.byte 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb\n.byte 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51\n.byte 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03\n.byte 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f\n.byte 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12\n.byte 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34\n.byte 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7\n.byte 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74\n.byte 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc\n.byte 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b\n.byte 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e\n.byte 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30\n.byte 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7\n.byte 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf\n.byte 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c\n.byte 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d\n.byte 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d\n.byte 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51\n.byte 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41\n.byte 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8\n.byte 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c\n.byte 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2\n.byte 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9\n.byte 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e\n.byte 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x92, 0x01, 0x26, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09\n.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55\n.byte 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06\n.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65\n.byte 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66\n.byte 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65\n.byte 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74\n.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74\n.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03\n.byte 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7\n.byte 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1\n.byte 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd\n.byte 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec\n.byte 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5\n.byte 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8\n.byte 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d\n.byte 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e\n.byte 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc\n.byte 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d\n.byte 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f\n.byte 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8\n.byte 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf\n.byte 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b\n.byte 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59\n.byte 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00\n.byte 0x01, 0x00, 0x94, 0x00, 0x5b, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08\n.byte 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04\n.byte 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48\n.byte 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30\n.byte 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76\n.byte 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35\n.byte 0x36, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20\n.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a\n.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07\n.byte 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6, 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6\n.byte 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78, 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d\n.byte 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38, 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a\n.byte 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81, 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09\n.byte 0x3a, 0xa6, 0x3f, 0xad, 0x00, 0x94, 0x00, 0x78, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04\n.byte 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06\n.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30\n.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76\n.byte 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e\n.byte 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74\n.byte 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20\n.byte 0x50, 0x33, 0x38, 0x34, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10\n.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22\n.byte 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda, 0x0d, 0x75, 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99\n.byte 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10, 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28\n.byte 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82, 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e\n.byte 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04, 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b\n.byte 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25, 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41\n.byte 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3, 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98\n.byte 0x84, 0x38, 0x65, 0xa0, 0x00, 0x9b, 0x01, 0x26, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06\n.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04\n.byte 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03\n.byte 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31\n.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69\n.byte 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73\n.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13\n.byte 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69\n.byte 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69\n.byte 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d\n.byte 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02\n.byte 0x82, 0x01, 0x01, 0x00, 0xd5, 0x0c, 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97\n.byte 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8\n.byte 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00\n.byte 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a\n.byte 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a\n.byte 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e\n.byte 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84\n.byte 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf\n.byte 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7\n.byte 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47\n.byte 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18\n.byte 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8\n.byte 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32\n.byte 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61\n.byte 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54\n.byte 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55\n.byte 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa9, 0x02, 0x26, 0x30, 0x81, 0xa6\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30\n.byte 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44\n.byte 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69\n.byte 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52\n.byte 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74\n.byte 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f\n.byte 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48\n.byte 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63\n.byte 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e\n.byte 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43\n.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82\n.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2, 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c\n.byte 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a, 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01\n.byte 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23, 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28\n.byte 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec, 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d\n.byte 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f, 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06\n.byte 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b, 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8\n.byte 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24, 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a\n.byte 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb, 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94\n.byte 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3, 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8\n.byte 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7, 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b\n.byte 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc, 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c\n.byte 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84, 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59\n.byte 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd, 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87\n.byte 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6, 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63\n.byte 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39, 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84\n.byte 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc, 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c\n.byte 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68, 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7\n.byte 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7, 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce\n.byte 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17, 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75\n.byte 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41, 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e\n.byte 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53, 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43\n.byte 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b, 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e\n.byte 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb, 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98\n.byte 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51, 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61\n.byte 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04, 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc\n.byte 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47, 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e\n.byte 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d, 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84\n.byte 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d, 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4\n.byte 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47, 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b\n.byte 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19, 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16\n.byte 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea, 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86\n.byte 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f, 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80\n.byte 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xaa, 0x01, 0x26\n.byte 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55\n.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70\n.byte 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65\n.byte 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66, 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03\n.byte 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3\n.byte 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3, 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74\n.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63\n.byte 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65\n.byte 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61\n.byte 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29, 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3\n.byte 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d\n.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01\n.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe\n.byte 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97, 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee\n.byte 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca, 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4\n.byte 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d, 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f\n.byte 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f, 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b\n.byte 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e, 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d\n.byte 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30, 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64\n.byte 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16, 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0\n.byte 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6, 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf\n.byte 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15, 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d\n.byte 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7, 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3\n.byte 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60, 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6\n.byte 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde, 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4\n.byte 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b, 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85\n.byte 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9, 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54\n.byte 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d, 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5\n.byte 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42, 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b\n.byte 0x00, 0xad, 0x00, 0x78, 0x30, 0x81, 0xaa, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06\n.byte 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41\n.byte 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b\n.byte 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69\n.byte 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49\n.byte 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74\n.byte 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41\n.byte 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65\n.byte 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e\n.byte 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31\n.byte 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05\n.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84\n.byte 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64, 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a\n.byte 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64, 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0\n.byte 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76, 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9\n.byte 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c, 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d\n.byte 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a, 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69\n.byte 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1, 0x46, 0x00, 0xb3, 0x01, 0x26, 0x30, 0x81, 0xb0\n.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30\n.byte 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c\n.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30\n.byte 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f\n.byte 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61\n.byte 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65\n.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32\n.byte 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63\n.byte 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72\n.byte 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69\n.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79\n.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01\n.byte 0x00, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6, 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39\n.byte 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68, 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1\n.byte 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e, 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1\n.byte 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b, 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20\n.byte 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8, 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47\n.byte 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62, 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff\n.byte 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb, 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00\n.byte 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd, 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45\n.byte 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c, 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c\n.byte 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68, 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d\n.byte 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88, 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b\n.byte 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8, 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5\n.byte 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f, 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb\n.byte 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2, 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e\n.byte 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e, 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb\n.byte 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8, 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8\n.byte 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb5, 0x02, 0x26, 0x30, 0x81, 0xb2, 0x31, 0x0b, 0x30\n.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03\n.byte 0x55, 0x04, 0x07, 0x0c, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x40, 0x30, 0x3e, 0x06\n.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x37, 0x45, 0x2d, 0x54, 0x75, 0xc4, 0x9f, 0x72, 0x61, 0x20, 0x45\n.byte 0x42, 0x47, 0x20, 0x42, 0x69, 0x6c, 0x69, 0xc5, 0x9f, 0x69, 0x6d, 0x20, 0x54, 0x65, 0x6b, 0x6e\n.byte 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x76, 0x65, 0x20, 0x48, 0x69, 0x7a\n.byte 0x6d, 0x65, 0x74, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x41, 0x2e, 0xc5, 0x9e, 0x2e, 0x31, 0x26, 0x30\n.byte 0x24, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20\n.byte 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65\n.byte 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1f\n.byte 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63\n.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30\n.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01\n.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00\n.byte 0xe2, 0xf5, 0x3f, 0x93, 0x05, 0x51, 0x1e, 0x85, 0x62, 0x54, 0x5e, 0x7a, 0x0b, 0xf5, 0x18, 0x07\n.byte 0x83, 0xae, 0x7e, 0xaf, 0x7c, 0xf7, 0xd4, 0x8a, 0x6b, 0xa5, 0x63, 0x43, 0x39, 0xb9, 0x4b, 0xf7\n.byte 0xc3, 0xc6, 0x64, 0x89, 0x3d, 0x94, 0x2e, 0x54, 0x80, 0x52, 0x39, 0x39, 0x07, 0x4b, 0x4b, 0xdd\n.byte 0x85, 0x07, 0x76, 0x87, 0xcc, 0xbf, 0x2f, 0x95, 0x4c, 0xcc, 0x7d, 0xa7, 0x3d, 0xbc, 0x47, 0x0f\n.byte 0x98, 0x70, 0xf8, 0x8c, 0x85, 0x1e, 0x74, 0x8e, 0x92, 0x6d, 0x1b, 0x40, 0xd1, 0x99, 0x0d, 0xbb\n.byte 0x75, 0x6e, 0xc8, 0xa9, 0x6b, 0x9a, 0xc0, 0x84, 0x31, 0xaf, 0xca, 0x43, 0xcb, 0xeb, 0x2b, 0x34\n.byte 0xe8, 0x8f, 0x97, 0x6b, 0x01, 0x9b, 0xd5, 0x0e, 0x4a, 0x08, 0xaa, 0x5b, 0x92, 0x74, 0x85, 0x43\n.byte 0xd3, 0x80, 0xae, 0xa1, 0x88, 0x5b, 0xae, 0xb3, 0xea, 0x5e, 0xcb, 0x16, 0x9a, 0x77, 0x44, 0xc8\n.byte 0xa1, 0xf6, 0x54, 0x68, 0xce, 0xde, 0x8f, 0x97, 0x2b, 0xba, 0x5b, 0x40, 0x02, 0x0c, 0x64, 0x17\n.byte 0xc0, 0xb5, 0x93, 0xcd, 0xe1, 0xf1, 0x13, 0x66, 0xce, 0x0c, 0x79, 0xef, 0xd1, 0x91, 0x28, 0xab\n.byte 0x5f, 0xa0, 0x12, 0x52, 0x30, 0x73, 0x19, 0x8e, 0x8f, 0xe1, 0x8c, 0x07, 0xa2, 0xc3, 0xbb, 0x4a\n.byte 0xf0, 0xea, 0x1f, 0x15, 0xa8, 0xee, 0x25, 0xcc, 0xa4, 0x46, 0xf8, 0x1b, 0x22, 0xef, 0xb3, 0x0e\n.byte 0x43, 0xba, 0x2c, 0x24, 0xb8, 0xc5, 0x2c, 0x5c, 0xd4, 0x1c, 0xf8, 0x5d, 0x64, 0xbd, 0xc3, 0x93\n.byte 0x5e, 0x28, 0xa7, 0x3f, 0x27, 0xf1, 0x8e, 0x1e, 0xd3, 0x2a, 0x50, 0x05, 0xa3, 0x55, 0xd9, 0xcb\n.byte 0xe7, 0x39, 0x53, 0xc0, 0x98, 0x9e, 0x8c, 0x54, 0x62, 0x8b, 0x26, 0xb0, 0xf7, 0x7d, 0x8d, 0x7c\n.byte 0xe4, 0xc6, 0x9e, 0x66, 0x42, 0x55, 0x82, 0x47, 0xe7, 0xb2, 0x58, 0x8d, 0x66, 0xf7, 0x07, 0x7c\n.byte 0x2e, 0x36, 0xe6, 0x50, 0x1c, 0x3f, 0xdb, 0x43, 0x24, 0xc5, 0xbf, 0x86, 0x47, 0x79, 0xb3, 0x79\n.byte 0x1c, 0xf7, 0x5a, 0xf4, 0x13, 0xec, 0x6c, 0xf8, 0x3f, 0xe2, 0x59, 0x1f, 0x95, 0xee, 0x42, 0x3e\n.byte 0xb9, 0xad, 0xa8, 0x32, 0x85, 0x49, 0x97, 0x46, 0xfe, 0x4b, 0x31, 0x8f, 0x5a, 0xcb, 0xad, 0x74\n.byte 0x47, 0x1f, 0xe9, 0x91, 0xb7, 0xdf, 0x28, 0x04, 0x22, 0xa0, 0xd4, 0x0f, 0x5d, 0xe2, 0x79, 0x4f\n.byte 0xea, 0x6c, 0x85, 0x86, 0xbd, 0xa8, 0xa6, 0xce, 0xe4, 0xfa, 0xc3, 0xe1, 0xb3, 0xae, 0xde, 0x3c\n.byte 0x51, 0xee, 0xcb, 0x13, 0x7c, 0x01, 0x7f, 0x84, 0x0e, 0x5d, 0x51, 0x94, 0x9e, 0x13, 0x0c, 0xb6\n.byte 0x2e, 0xa5, 0x4c, 0xf9, 0x39, 0x70, 0x36, 0x6f, 0x96, 0xca, 0x2e, 0x0c, 0x44, 0x55, 0xc5, 0xca\n.byte 0xfa, 0x5d, 0x02, 0xa3, 0xdf, 0xd6, 0x64, 0x8c, 0x5a, 0xb3, 0x01, 0x0a, 0xa9, 0xb5, 0x0a, 0x47\n.byte 0x17, 0xff, 0xef, 0x91, 0x40, 0x2a, 0x8e, 0xa1, 0x46, 0x3a, 0x31, 0x98, 0xe5, 0x11, 0xfc, 0xcc\n.byte 0xbb, 0x49, 0x56, 0x8a, 0xfc, 0xb9, 0xd0, 0x61, 0x9a, 0x6f, 0x65, 0x6c, 0xe6, 0xc3, 0xcb, 0x3e\n.byte 0x75, 0x49, 0xfe, 0x8f, 0xa7, 0xe2, 0x89, 0xc5, 0x67, 0xd7, 0x9d, 0x46, 0x13, 0x4e, 0x31, 0x76\n.byte 0x3b, 0x24, 0xb3, 0x9e, 0x11, 0x65, 0x86, 0xab, 0x7f, 0xef, 0x1d, 0xd4, 0xf8, 0xbc, 0xe7, 0xac\n.byte 0x5a, 0x5c, 0xb7, 0x5a, 0x47, 0x5c, 0x55, 0xce, 0x55, 0xb4, 0x22, 0x71, 0x5b, 0x5b, 0x0b, 0xf0\n.byte 0xcf, 0xdc, 0xa0, 0x61, 0x64, 0xea, 0xa9, 0xd7, 0x68, 0x0a, 0x63, 0xa7, 0xe0, 0x0d, 0x3f, 0xa0\n.byte 0xaf, 0xd3, 0xaa, 0xd2, 0x7e, 0xef, 0x51, 0xa0, 0xe6, 0x51, 0x2b, 0x55, 0x92, 0x15, 0x17, 0x53\n.byte 0xcb, 0xb7, 0x66, 0x0e, 0x66, 0x4c, 0xf8, 0xf9, 0x75, 0x4c, 0x90, 0xe7, 0x12, 0x70, 0xc7, 0x45\n.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb7, 0x01, 0x26, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12\n.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e\n.byte 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77\n.byte 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53\n.byte 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79\n.byte 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69\n.byte 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28\n.byte 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e\n.byte 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65\n.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20\n.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29\n.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01\n.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01\n.byte 0x00, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86, 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a\n.byte 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d, 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40\n.byte 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb, 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93\n.byte 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e, 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e\n.byte 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc, 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5\n.byte 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1, 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77\n.byte 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7, 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97\n.byte 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66, 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89\n.byte 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89, 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60\n.byte 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76, 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53\n.byte 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29, 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce\n.byte 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64, 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf\n.byte 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29, 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f\n.byte 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd, 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90\n.byte 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91, 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e\n.byte 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18, 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07\n.byte 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc1, 0x01, 0x26, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30\n.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03\n.byte 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e\n.byte 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65\n.byte 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74\n.byte 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37\n.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20\n.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20\n.byte 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75\n.byte 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03\n.byte 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43\n.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74\n.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30\n.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82\n.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72\n.byte 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41\n.byte 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06\n.byte 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72\n.byte 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a\n.byte 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65\n.byte 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5\n.byte 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb\n.byte 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98\n.byte 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a\n.byte 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c\n.byte 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11\n.byte 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69\n.byte 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae\n.byte 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a\n.byte 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac\n.byte 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00\n.byte 0x01, 0x00, 0xc1, 0x02, 0x26, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04\n.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d\n.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30\n.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e\n.byte 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61\n.byte 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b\n.byte 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x35, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75\n.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61\n.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e\n.byte 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74\n.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66\n.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74\n.byte 0x79, 0x20, 0x2d, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86\n.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82\n.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb1, 0xec, 0x2c, 0x42, 0xee, 0xe2, 0xd1, 0x30, 0xff\n.byte 0xa5, 0x92, 0x47, 0xe2, 0x2d, 0xc3, 0xba, 0x64, 0x97, 0x6d, 0xca, 0xf7, 0x0d, 0xb5, 0x59, 0xc1\n.byte 0xb3, 0xcb, 0xa8, 0x68, 0x19, 0xd8, 0xaf, 0x84, 0x6d, 0x30, 0x70, 0x5d, 0x7e, 0xf3, 0x2e, 0xd2\n.byte 0x53, 0x99, 0xe1, 0xfe, 0x1f, 0x5e, 0xd9, 0x48, 0xaf, 0x5d, 0x13, 0x8d, 0xdb, 0xff, 0x63, 0x33\n.byte 0x4d, 0xd3, 0x00, 0x02, 0xbc, 0xc4, 0xf8, 0xd1, 0x06, 0x08, 0x94, 0x79, 0x58, 0x8a, 0x15, 0xde\n.byte 0x29, 0xb3, 0xfd, 0xfd, 0xc4, 0x4f, 0xe8, 0xaa, 0xe2, 0xa0, 0x3b, 0x79, 0xcd, 0xbf, 0x6b, 0x43\n.byte 0x32, 0xdd, 0xd9, 0x74, 0x10, 0xb9, 0xf7, 0xf4, 0x68, 0xd4, 0xbb, 0xd0, 0x87, 0xd5, 0xaa, 0x4b\n.byte 0x8a, 0x2a, 0x6f, 0x2a, 0x04, 0xb5, 0xb2, 0xa6, 0xc7, 0xa0, 0x7a, 0xe6, 0x48, 0xab, 0xd2, 0xd1\n.byte 0x59, 0xcc, 0xd6, 0x7e, 0x23, 0xe6, 0x97, 0x6c, 0xf0, 0x42, 0xe5, 0xdc, 0x51, 0x4b, 0x15, 0x41\n.byte 0xed, 0x49, 0x4a, 0xc9, 0xde, 0x10, 0x97, 0xd6, 0x76, 0xc1, 0xef, 0xa5, 0xb5, 0x36, 0x14, 0x97\n.byte 0x35, 0xd8, 0x78, 0x22, 0x35, 0x52, 0xef, 0x43, 0xbd, 0xdb, 0x27, 0xdb, 0x61, 0x56, 0x82, 0x34\n.byte 0xdc, 0xcb, 0x88, 0x60, 0x0c, 0x0b, 0x5a, 0xe5, 0x2c, 0x01, 0xc6, 0x54, 0xaf, 0xd7, 0xaa, 0xc1\n.byte 0x10, 0x7b, 0xd2, 0x05, 0x5a, 0xb8, 0x40, 0x9e, 0x86, 0xa7, 0xc3, 0x90, 0x86, 0x02, 0x56, 0x52\n.byte 0x09, 0x7a, 0x9c, 0xd2, 0x27, 0x82, 0x53, 0x4a, 0x65, 0x52, 0x6a, 0xf5, 0x3c, 0xe7, 0xa8, 0xf2\n.byte 0x9c, 0xaf, 0x8b, 0xbd, 0xd3, 0x0e, 0xd4, 0xd4, 0x5e, 0x6e, 0x87, 0x9e, 0x6a, 0x3d, 0x45, 0x1d\n.byte 0xd1, 0x5d, 0x1b, 0xf4, 0xe9, 0x0a, 0xac, 0x60, 0x99, 0xfb, 0x89, 0xb4, 0xff, 0x98, 0x2c, 0xcf\n.byte 0x7c, 0x1d, 0xe9, 0x02, 0xaa, 0x04, 0x9a, 0x1e, 0xb8, 0xdc, 0x88, 0x6e, 0x25, 0xb3, 0x6c, 0x66\n.byte 0xf7, 0x3c, 0x90, 0xf3, 0x57, 0xc1, 0xb3, 0x2f, 0xf5, 0x6d, 0xf2, 0xfb, 0xca, 0xa1, 0xf8, 0x29\n.byte 0x9d, 0x46, 0x8b, 0xb3, 0x6a, 0xf6, 0xe6, 0x67, 0x07, 0xbe, 0x2c, 0x67, 0x0a, 0x2a, 0x1f, 0x5a\n.byte 0xb2, 0x3e, 0x57, 0xc4, 0xd3, 0x21, 0x21, 0x63, 0x65, 0x52, 0x91, 0x1b, 0xb1, 0x99, 0x8e, 0x79\n.byte 0x7e, 0xe6, 0xeb, 0x8d, 0x00, 0xd9, 0x5a, 0xaa, 0xea, 0x73, 0xe8, 0xa4, 0x82, 0x02, 0x47, 0x96\n.byte 0xfe, 0x5b, 0x8e, 0x54, 0x61, 0xa3, 0xeb, 0x2f, 0x4b, 0x30, 0xb0, 0x8b, 0x23, 0x75, 0x72, 0x7c\n.byte 0x21, 0x3c, 0xc8, 0xf6, 0xf1, 0x74, 0xd4, 0x1c, 0x7b, 0xa3, 0x05, 0x55, 0xee, 0xbb, 0x4d, 0x3b\n.byte 0x32, 0xbe, 0x9a, 0x77, 0x66, 0x9e, 0xac, 0x69, 0x90, 0x22, 0x07, 0x1f, 0x61, 0x3a, 0x96, 0xbe\n.byte 0xe5, 0x9a, 0x4f, 0xcc, 0x05, 0x3c, 0x28, 0x59, 0xd3, 0xc1, 0x0c, 0x54, 0xa8, 0x59, 0x61, 0xbd\n.byte 0xc8, 0x72, 0x4c, 0xe8, 0xdc, 0x9f, 0x87, 0x7f, 0xbd, 0x9c, 0x48, 0x36, 0x5e, 0x95, 0xa3, 0x0e\n.byte 0xb9, 0x38, 0x24, 0x55, 0xfc, 0x75, 0x66, 0xeb, 0x02, 0xe3, 0x08, 0x34, 0x29, 0x4a, 0xc6, 0xe3\n.byte 0x2b, 0x2f, 0x33, 0xa0, 0xda, 0xa3, 0x86, 0xa5, 0x12, 0x97, 0xfd, 0x80, 0x2b, 0xda, 0x14, 0x42\n.byte 0xe3, 0x92, 0xbd, 0x3e, 0xf2, 0x5d, 0x5e, 0x67, 0x74, 0x2e, 0x1c, 0x88, 0x47, 0x29, 0x34, 0x5f\n.byte 0xe2, 0x32, 0xa8, 0x9c, 0x25, 0x37, 0x8c, 0xba, 0x98, 0x00, 0x97, 0x8b, 0x49, 0x96, 0x1e, 0xfd\n.byte 0x25, 0x8a, 0xac, 0xdc, 0xda, 0xd8, 0x5d, 0x74, 0x6e, 0x66, 0xb0, 0xff, 0x44, 0xdf, 0xa1, 0x18\n.byte 0xc6, 0xbe, 0x48, 0x2f, 0x37, 0x94, 0x78, 0xf8, 0x95, 0x4a, 0x3f, 0x7f, 0x13, 0x5e, 0x5d, 0x59\n.byte 0xfd, 0x74, 0x86, 0x43, 0x63, 0x73, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc2, 0x00, 0x78\n.byte 0x30, 0x81, 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53\n.byte 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75\n.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04\n.byte 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75\n.byte 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72\n.byte 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29\n.byte 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49\n.byte 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72\n.byte 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30\n.byte 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20\n.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69\n.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x45\n.byte 0x43, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06\n.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d\n.byte 0x41, 0x7b, 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69\n.byte 0x47, 0xe3, 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06\n.byte 0x19, 0x86, 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61\n.byte 0x4c, 0x7d, 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70\n.byte 0x5d, 0x36, 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f\n.byte 0xf5, 0xe3, 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0x00, 0xd5, 0x01, 0x26, 0x30, 0x81\n.byte 0xd2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18\n.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d\n.byte 0x20, 0x4b, 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04\n.byte 0x0a, 0x13, 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d\n.byte 0x73, 0x65, 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69\n.byte 0x6b, 0x20, 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75\n.byte 0x6d, 0x75, 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b\n.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74\n.byte 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a\n.byte 0x69, 0x20, 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06\n.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61\n.byte 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65\n.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75\n.byte 0x6d, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7\n.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02\n.byte 0x82, 0x01, 0x01, 0x00, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37\n.byte 0x84, 0xd9, 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95\n.byte 0x56, 0x42, 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64\n.byte 0x38, 0xb7, 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40\n.byte 0x8e, 0x18, 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4\n.byte 0xed, 0x8a, 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4\n.byte 0xaa, 0xce, 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5\n.byte 0x03, 0xec, 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4\n.byte 0x4f, 0x0c, 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21\n.byte 0x57, 0x9c, 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90\n.byte 0x7f, 0x0e, 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22\n.byte 0x02, 0xc8, 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca\n.byte 0x16, 0x80, 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85\n.byte 0x0a, 0xbd, 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59\n.byte 0x23, 0x2c, 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb\n.byte 0x93, 0xd5, 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9\n.byte 0xf9, 0xec, 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01\n\n.global _binary_x509_crt_bundle_end\n_binary_x509_crt_bundle_end: /* for objcopy compatibility */\n\n\n.global x509_crt_bundle_length\nx509_crt_bundle_length:\n.word 64057\n"
  },
  {
    "path": "Code/components/st7789/CMakeLists.txt",
    "content": "set(srcs \"st7789.c\" \"fontx.c\")\n\nidf_component_register(SRCS \"${srcs}\"\n                       PRIV_REQUIRES driver\n                       INCLUDE_DIRS \".\")\n"
  },
  {
    "path": "Code/components/st7789/Kconfig.projbuild",
    "content": "menu \"ST7789 Configuration\"\n\n\tconfig GPIO_RANGE_MAX\n\t\tint\n\t\tdefault 33 if IDF_TARGET_ESP32\n\t\tdefault 46 if IDF_TARGET_ESP32S2\n\t\tdefault 48 if IDF_TARGET_ESP32S3\n\t\tdefault 18 if IDF_TARGET_ESP32C2\n\t\tdefault 19 if IDF_TARGET_ESP32C3\n\t\tdefault 30 if IDF_TARGET_ESP32C6\n\n\tconfig WIDTH\n\t\tint \"SCREEN WIDTH\"\n\t\trange 0 999\n\t\tdefault 240\n\t\thelp\n\t\t\tThe width resolution of the screen.\n\n\tconfig HEIGHT\n\t\tint \"SCREEN HEIGHT\"\n\t\trange 0 999\n\t\tdefault 240\n\t\thelp\n\t\t\tThe height resolution of the screen.\n\n\tconfig OFFSETX\n\t\tint \"GRAM X OFFSET\"\n\t\trange 0 99\n\t\tdefault 0\n\t\thelp\n\t\t\tWhen your TFT have offset(X), set it.\n\n\tconfig OFFSETY\n\t\tint \"GRAM Y OFFSET\"\n\t\trange 0 99\n\t\tdefault 0\n\t\thelp\n\t\t\tWhen your TFT have offset(Y), set it.\n\n\tconfig MOSI_GPIO\n\t\tint \"MOSI GPIO number\"\n\t\trange 0 GPIO_RANGE_MAX\n\t\tdefault 23 if IDF_TARGET_ESP32\n\t\tdefault 35 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\tdefault  0 # C3 and others\n\t\thelp\n\t\t\tGPIO number (IOxx) to SPI MOSI.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to MOSI.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig SCLK_GPIO\n\t\tint \"SCLK GPIO number\"\n\t\trange 0 GPIO_RANGE_MAX\n\t\tdefault 18 if IDF_TARGET_ESP32\n\t\tdefault 36 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\tdefault  1 # C3 and others\n\t\thelp\n\t\t\tGPIO number (IOxx) to SPI SCLK.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to SCLK.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig CS_GPIO\n\t\tint \"CS GPIO number\"\n\t\trange -1 GPIO_RANGE_MAX\n\t\tdefault -1\n\t\thelp\n\t\t\tGPIO number (IOxx) to SPI CS.\n\t\t\tWhen it is -1, CS isn't performed.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to CS.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig DC_GPIO\n\t\tint \"DC GPIO number\"\n\t\trange 0 GPIO_RANGE_MAX\n\t\tdefault 27 if IDF_TARGET_ESP32\n\t\tdefault 37 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\tdefault  2 # C3 and others\n\t\thelp\n\t\t\tGPIO number (IOxx) to SPI DC.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to DC.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig RESET_GPIO\n\t\tint \"RESET GPIO number\"\n\t\trange 0 GPIO_RANGE_MAX\n\t\tdefault 33 if IDF_TARGET_ESP32\n\t\tdefault 38 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\tdefault  3 # C3 and others\n\t\thelp\n\t\t\tGPIO number (IOxx) to RESET.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to RESET.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig BL_GPIO\n\t\tint \"BACKLIGHT GPIO number\"\n\t\trange -1 GPIO_RANGE_MAX\n\t\tdefault 32 if IDF_TARGET_ESP32\n\t\tdefault 33 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\tdefault  4 # C3 and others\n\t\thelp\n\t\t\tGPIO number (IOxx) to BACKLIGHT.\n\t\t\tWhen it is -1, BACKLIGHT isn't performed.\n\t\t\tSome GPIOs are used for other purposes (flash connections, etc.) and cannot be used to BACKLIGHT.\n\t\t\tOn the ESP32, GPIOs 35-39 are input-only so cannot be used as outputs.\n\t\t\tOn the ESP32-S2, GPIO 46 is input-only so cannot be used as outputs.\n\n\tconfig INVERSION\n\t\tbool \"Enable Display Inversion\"\n\t\tdefault false\n\t\thelp\n\t\t\tEnable Display Inversion.\n\n\tchoice SPI_HOST\n\t\tprompt \"SPI peripheral that controls this bus\"\n\t\tdefault SPI2_HOST\n\t\thelp\n\t\t\tSelect SPI peripheral that controls this bus.\n\t\tconfig SPI2_HOST\n\t\t\tbool \"SPI2_HOST\"\n\t\t\thelp\n\t\t\t\tUse SPI2_HOST. This is also called HSPI_HOST.\n\t\tconfig SPI3_HOST\n\t\t\tdepends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3\n\t\t\tbool \"SPI3_HOST\"\n\t\t\thelp\n\t\t\t\tUSE SPI3_HOST. This is also called VSPI_HOST\n\tendchoice\n\n\tconfig FRAME_BUFFER\n\t\tbool \"Enable Frame Buffer\"\n\t\tdepends on !IDF_TARGET_ESP32C2\n\t\tdefault false\n\t\thelp\n\t\t\tEnable Frame Buffer.\n\nendmenu\n"
  },
  {
    "path": "Code/components/st7789/component.mk",
    "content": "#\n# \"main\" pseudo-component makefile.\n#\n# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)\n"
  },
  {
    "path": "Code/components/st7789/fontx.c",
    "content": "#include <stdio.h>\n#include <stdbool.h>\n#include <inttypes.h>\n#include <string.h>\n#include <sys/unistd.h>\n#include <sys/stat.h>\n#include \"esp_err.h\"\n#include \"esp_log.h\"\n//#include \"esp_spiffs.h\"\n\n#include \"fontx.h\"\n\n#define FontxDebug 0 // for Debug\n\n// フォントファイルパスを構造体に保存\nvoid AddFontx(FontxFile *fx, const char *path)\n{\n\tmemset(fx, 0, sizeof(FontxFile));\n\tfx->path = path;\n\tfx->opened = false;\n}\n\n// フォント構造体を初期化\nvoid InitFontx(FontxFile *fxs, const char *f0, const char *f1)\n{\n\tAddFontx(&fxs[0], f0);\n\tAddFontx(&fxs[1], f1);\n}\n\n// フォントファイルをOPEN\nbool OpenFontx(FontxFile *fx)\n{\n\tFILE *f;\n\tif(!fx->opened){\n\t\tif(FontxDebug)printf(\"[openFont]fx->path=[%s]\\n\",fx->path);\n\t\tf = fopen(fx->path, \"r\");\n\t\tif(FontxDebug)printf(\"[openFont]fopen=%p\\n\",f);\n\t\tif (f == NULL) {\n\t\t\tfx->valid = false;\n\t\t\tprintf(\"Fontx:%s not found.\\n\",fx->path);\n\t\t\treturn fx->valid ;\n\t\t}\n\t\tfx->opened = true;\n\t\tfx->file = f;\n\t\tchar buf[18];\n\t\tif (fread(buf, 1, sizeof(buf), fx->file) != sizeof(buf)) {\n\t\t\tfx->valid = false;\n\t\t\tprintf(\"Fontx:%s not FONTX format.\\n\",fx->path);\n\t\t\tfclose(fx->file);\n\t\t\treturn fx->valid ;\n\t\t}\n\n\t\tif(FontxDebug) {\n\t\t\tfor(int i=0;i<sizeof(buf);i++) {\n\t\t\t\tprintf(\"buf[%d]=0x%x\\n\",i,buf[i]);\n\t\t\t}\n\t\t}\n\t\tmemcpy(fx->fxname, &buf[6], 8);\n\t\tfx->w = buf[14];\n\t\tfx->h = buf[15];\n\t\tfx->is_ank = (buf[16] == 0);\n\t\tfx->bc = buf[17];\n\t\tfx->fsz = (fx->w + 7)/8 * fx->h;\n\t\tif(fx->fsz > FontxGlyphBufSize){\n\t\t\tprintf(\"Fontx:%s is too big font size.\\n\",fx->path);\n\t\t\tfx->valid = false;\n\t\t\tfclose(fx->file);\n\t\t\treturn fx->valid ;\n\t\t}\n\t\tfx->valid = true;\n\t}\n\treturn fx->valid;\n}\n\n// フォントファイルをCLOSE\nvoid CloseFontx(FontxFile *fx)\n{\n\tif(fx->opened){\n\t\tfclose(fx->file);\n\t\tfx->opened = false;\n\t}\n}\n\n// フォント構造体の表示\nvoid DumpFontx(FontxFile *fxs)\n{\n\tfor(int i=0;i<2;i++) {\n\t\tprintf(\"fxs[%d]->path=%s\\n\",i,fxs[i].path);\n\t\tprintf(\"fxs[%d]->opened=%d\\n\",i,fxs[i].opened);\n\t\tprintf(\"fxs[%d]->fxname=%s\\n\",i,fxs[i].fxname);\n\t\tprintf(\"fxs[%d]->valid=%d\\n\",i,fxs[i].valid);\n\t\tprintf(\"fxs[%d]->is_ank=%d\\n\",i,fxs[i].is_ank);\n\t\tprintf(\"fxs[%d]->w=%d\\n\",i,fxs[i].w);\n\t\tprintf(\"fxs[%d]->h=%d\\n\",i,fxs[i].h);\n\t\tprintf(\"fxs[%d]->fsz=%d\\n\",i,fxs[i].fsz);\n\t\tprintf(\"fxs[%d]->bc=%d\\n\",i,fxs[i].bc);\n\t}\n}\n\nuint8_t getFortWidth(FontxFile *fx) {\n\tprintf(\"fx->w=%d\\n\",fx->w);\n\treturn(fx->w);\n}\n\nuint8_t getFortHeight(FontxFile *fx) {\n\tprintf(\"fx->h=%d\\n\",fx->h);\n\treturn(fx->h);\n}\n\n\n/*\n フォントファイルからフォントパターンを取り出す\n\n フォントの並び(16X16ドット)\n\t00000000\t01111111\n\t12345678\t90123456\n 01 pGlyph[000] pGlyph[001]\n 02 pGlyph[002] pGlyph[003]\n 03 pGlyph[004] pGlyph[005]\n 04 pGlyph[006] pGlyph[007]\n 05 pGlyph[008] pGlyph[009]\n 06 pGlyph[010] pGlyph[011]\n 07 pGlyph[012] pGlyph[013]\n 08 pGlyph[014] pGlyph[015]\n 09 pGlyph[016] pGlyph[017]\n 10 pGlyph[018] pGlyph[019]\n 11 pGlyph[020] pGlyph[021]\n 12 pGlyph[022] pGlyph[023]\n 13 pGlyph[024] pGlyph[025]\n 14 pGlyph[026] pGlyph[027]\n 15 pGlyph[028] pGlyph[029]\n 16 pGlyph[030] pGlyph[031]\n\n フォントの並び(24X24ドット)\n\t00000000\t01111111\t11122222\n\t12345678\t90123456\t78901234\n 01 pGlyph[000] pGlyph[001] pGlyph[002]\n 02 pGlyph[003] pGlyph[004] pGlyph[005]\n 03 pGlyph[006] pGlyph[007] pGlyph[008]\n 04 pGlyph[009] pGlyph[010] pGlyph[011]\n 05 pGlyph[012] pGlyph[013] pGlyph[014]\n 06 pGlyph[015] pGlyph[016] pGlyph[017]\n 07 pGlyph[018] pGlyph[019] pGlyph[020]\n 08 pGlyph[021] pGlyph[022] pGlyph[023]\n 09 pGlyph[024] pGlyph[025] pGlyph[026]\n 10 pGlyph[027] pGlyph[028] pGlyph[029]\n 11 pGlyph[030] pGlyph[031] pGlyph[032]\n 12 pGlyph[033] pGlyph[034] pGlyph[035]\n 13 pGlyph[036] pGlyph[037] pGlyph[038]\n 14 pGlyph[039] pGlyph[040] pGlyph[041]\n 15 pGlyph[042] pGlyph[043] pGlyph[044]\n 16 pGlyph[045] pGlyph[046] pGlyph[047]\n 17 pGlyph[048] pGlyph[049] pGlyph[050]\n 18 pGlyph[051] pGlyph[052] pGlyph[053]\n 19 pGlyph[054] pGlyph[055] pGlyph[056]\n 20 pGlyph[057] pGlyph[058] pGlyph[059]\n 21 pGlyph[060] pGlyph[061] pGlyph[062]\n 22 pGlyph[063] pGlyph[064] pGlyph[065]\n 23 pGlyph[066] pGlyph[067] pGlyph[068]\n 24 pGlyph[069] pGlyph[070] pGlyph[071]\n\n フォントの並び(32X32ドット)\n\t00000000\t01111111\t11122222\t22222333\n\t12345678\t90123456\t78901234\t56789012\n 01 pGlyph[000] pGlyph[001] pGlyph[002] pGlyph[003]\n 02 pGlyph[004] pGlyph[005] pGlyph[006] pGlyph[007]\n 03 pGlyph[008] pGlyph[009] pGlyph[010] pGlyph[011]\n 04 pGlyph[012] pGlyph[013] pGlyph[014] pGlyph[015]\n 05 pGlyph[016] pGlyph[017] pGlyph[018] pGlyph[019]\n 06 pGlyph[020] pGlyph[021] pGlyph[022] pGlyph[023]\n 07 pGlyph[024] pGlyph[025] pGlyph[026] pGlyph[027]\n 08 pGlyph[028] pGlyph[029] pGlyph[030] pGlyph[031]\n 09 pGlyph[032] pGlyph[033] pGlyph[034] pGlyph[035]\n 10 pGlyph[036] pGlyph[037] pGlyph[038] pGlyph[039]\n 11 pGlyph[040] pGlyph[041] pGlyph[042] pGlyph[043]\n 12 pGlyph[044] pGlyph[045] pGlyph[046] pGlyph[047]\n 13 pGlyph[048] pGlyph[049] pGlyph[050] pGlyph[051]\n 14 pGlyph[052] pGlyph[053] pGlyph[054] pGlyph[055]\n 15 pGlyph[056] pGlyph[057] pGlyph[058] pGlyph[059]\n 16 pGlyph[060] pGlyph[061] pGlyph[062] pGlyph[063]\n 17 pGlyph[064] pGlyph[065] pGlyph[066] pGlyph[067]\n 18 pGlyph[068] pGlyph[069] pGlyph[070] pGlyph[071]\n 19 pGlyph[072] pGlyph[073] pGlyph[074] pGlyph[075]\n 20 pGlyph[076] pGlyph[077] pGlyph[078] pGlyph[079]\n 21 pGlyph[080] pGlyph[081] pGlyph[082] pGlyph[083]\n 22 pGlyph[084] pGlyph[085] pGlyph[086] pGlyph[087]\n 23 pGlyph[088] pGlyph[089] pGlyph[090] pGlyph[091]\n 24 pGlyph[092] pGlyph[093] pGlyph[094] pGlyph[095]\n 25 pGlyph[096] pGlyph[097] pGlyph[098] pGlyph[099]\n 26 pGlyph[100] pGlyph[101] pGlyph[102] pGlyph[103]\n 27 pGlyph[104] pGlyph[105] pGlyph[106] pGlyph[107]\n 28 pGlyph[108] pGlyph[109] pGlyph[110] pGlyph[111]\n 29 pGlyph[112] pGlyph[113] pGlyph[114] pGlyph[115]\n 30 pGlyph[116] pGlyph[117] pGlyph[118] pGlyph[119]\n 31 pGlyph[120] pGlyph[121] pGlyph[122] pGlyph[123]\n 32 pGlyph[124] pGlyph[125] pGlyph[127] pGlyph[128]\n\n*/\n\nbool GetFontx(FontxFile *fxs, uint8_t ascii , uint8_t *pGlyph, uint8_t *pw, uint8_t *ph)\n{\n  \n\tint i;\n\tuint32_t offset;\n\n\tif(FontxDebug)printf(\"[GetFontx]ascii=0x%x\\n\",ascii);\n\tfor(i=0; i<2; i++){\n\t//for(i=0; i<1; i++){\n\t\tif(!OpenFontx(&fxs[i])) continue;\n\t\tif(FontxDebug)printf(\"[GetFontx]openFontxFile[%d] ok\\n\",i);\n\t\n\t\t//if(ascii < 0xFF){\n\t\t\tif(fxs[i].is_ank){\n\t\t\t\tif(FontxDebug)printf(\"[GetFontx]fxs.is_ank fxs.fsz=%d\\n\",fxs[i].fsz);\n\t\t\t\toffset = 17 + ascii * fxs[i].fsz;\n\t\t\t\tif(FontxDebug)printf(\"[GetFontx]offset=%\"PRIu32\"\\n\",offset);\n\t\t\t\tif(fseek(fxs[i].file, offset, SEEK_SET)) {\n\t\t\t\t\tprintf(\"Fontx:seek(%\"PRIu32\") failed.\\n\",offset);\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tif(fread(pGlyph, 1, fxs[i].fsz, fxs[i].file) != fxs[i].fsz) {\n\t\t\t\t\tprintf(\"Fontx:fread failed.\\n\");\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tif(pw) *pw = fxs[i].w;\n\t\t\t\tif(ph) *ph = fxs[i].h;\n\t\t\t\treturn true;\n\t\t\t}\n\t\t//}\n\t}\n\treturn false;\n}\n\n\n/*\n フォントパターンをビットマップイメージに変換する\n\n fonts(16X16ドット)\n\t00000000\t01111111\n\t12345678\t90123456\n 01 pGlyph[000] pGlyph[001]\n 02 pGlyph[002] pGlyph[003]\n 03 pGlyph[004] pGlyph[005]\n 04 pGlyph[006] pGlyph[007]\n 05 pGlyph[008] pGlyph[009]\n 06 pGlyph[010] pGlyph[011]\n 07 pGlyph[012] pGlyph[013]\n 08 pGlyph[014] pGlyph[015]\n 09 pGlyph[016] pGlyph[017]\n 10 pGlyph[018] pGlyph[019]\n 11 pGlyph[020] pGlyph[021]\n 12 pGlyph[022] pGlyph[023]\n 13 pGlyph[024] pGlyph[025]\n 14 pGlyph[026] pGlyph[027]\n 15 pGlyph[028] pGlyph[029]\n 16 pGlyph[030] pGlyph[031]\n\t\t\t  \n line[32*4]\n 01 line[000] line[001] line[002] .... line[014] line[015] line[016-031](Not use)\n |\n 07 line[000] line[001] line[002] .... line[014] line[015] line[016-031](Not use)\n\n 08 line[032] line[033] line[034] .... line[046] line[047] line[048-063](Not use)\n |\n 16 line[032] line[033] line[034] .... line[046] line[047] line[048-063](Not use)\n\n\n\n fonts(24X24ドット)\n\t00000000\t01111111\t11122222\n\t12345678\t90123456\t78901234\n 01 pGlyph[000] pGlyph[001] pGlyph[002]\n 02 pGlyph[003] pGlyph[004] pGlyph[005]\n 03 pGlyph[006] pGlyph[007] pGlyph[008]\n 04 pGlyph[009] pGlyph[010] pGlyph[011]\n 05 pGlyph[012] pGlyph[013] pGlyph[014]\n 06 pGlyph[015] pGlyph[016] pGlyph[017]\n 07 pGlyph[018] pGlyph[019] pGlyph[020]\n 08 pGlyph[021] pGlyph[022] pGlyph[023]\n 09 pGlyph[024] pGlyph[025] pGlyph[026]\n 10 pGlyph[027] pGlyph[028] pGlyph[029]\n 11 pGlyph[030] pGlyph[031] pGlyph[032]\n 12 pGlyph[033] pGlyph[034] pGlyph[035]\n 13 pGlyph[036] pGlyph[037] pGlyph[038]\n 14 pGlyph[039] pGlyph[040] pGlyph[041]\n 15 pGlyph[042] pGlyph[043] pGlyph[044]\n 16 pGlyph[045] pGlyph[046] pGlyph[047]\n 17 pGlyph[048] pGlyph[049] pGlyph[050]\n 18 pGlyph[051] pGlyph[052] pGlyph[053]\n 19 pGlyph[054] pGlyph[055] pGlyph[056]\n 20 pGlyph[057] pGlyph[058] pGlyph[059]\n 21 pGlyph[060] pGlyph[061] pGlyph[062]\n 22 pGlyph[063] pGlyph[064] pGlyph[065]\n 23 pGlyph[066] pGlyph[067] pGlyph[068]\n 24 pGlyph[069] pGlyph[070] pGlyph[071]\n\t\t\t  \n line[32*4]\n 01 line[000] line[001] line[002] .... line[022] line[023] line[024-031](Not use)\n |\n 08 line[000] line[001] line[002] .... line[022] line[023] line[024-031](Not use)\n\n 09 line[032] line[033] line[034] .... line[054] line[055] line[056-063](Not use)\n |\n 16 line[032] line[033] line[034] .... line[054] line[055] line[056-063](Not use)\n\n 17 line[064] line[065] line[066] .... line[086] line[087] line[088-095](Not use)\n |\n 24 line[064] line[065] line[066] .... line[086] line[087] line[088-095](Not use)\n\n\n fonts(32X32ドット)\n\t00000000\t01111111\t11122222\t22222333\n\t12345678\t90123456\t78901234\t56789012\n 01 pGlyph[000] pGlyph[001] pGlyph[002] pGlyph[003]\n 02 pGlyph[004] pGlyph[005] pGlyph[006] pGlyph[007]\n 03 pGlyph[008] pGlyph[009] pGlyph[010] pGlyph[011]\n 04 pGlyph[012] pGlyph[013] pGlyph[014] pGlyph[015]\n 05 pGlyph[016] pGlyph[017] pGlyph[018] pGlyph[019]\n 06 pGlyph[020] pGlyph[021] pGlyph[022] pGlyph[023]\n 07 pGlyph[024] pGlyph[025] pGlyph[026] pGlyph[027]\n 08 pGlyph[028] pGlyph[029] pGlyph[030] pGlyph[031]\n 09 pGlyph[032] pGlyph[033] pGlyph[034] pGlyph[035]\n 10 pGlyph[036] pGlyph[037] pGlyph[038] pGlyph[039]\n 11 pGlyph[040] pGlyph[041] pGlyph[042] pGlyph[043]\n 12 pGlyph[044] pGlyph[045] pGlyph[046] pGlyph[047]\n 13 pGlyph[048] pGlyph[049] pGlyph[050] pGlyph[051]\n 14 pGlyph[052] pGlyph[053] pGlyph[054] pGlyph[055]\n 15 pGlyph[056] pGlyph[057] pGlyph[058] pGlyph[059]\n 16 pGlyph[060] pGlyph[061] pGlyph[062] pGlyph[063]\n 17 pGlyph[064] pGlyph[065] pGlyph[066] pGlyph[067]\n 18 pGlyph[068] pGlyph[069] pGlyph[070] pGlyph[071]\n 19 pGlyph[072] pGlyph[073] pGlyph[074] pGlyph[075]\n 20 pGlyph[076] pGlyph[077] pGlyph[078] pGlyph[079]\n 21 pGlyph[080] pGlyph[081] pGlyph[082] pGlyph[083]\n 22 pGlyph[084] pGlyph[085] pGlyph[086] pGlyph[087]\n 23 pGlyph[088] pGlyph[089] pGlyph[090] pGlyph[091]\n 24 pGlyph[092] pGlyph[093] pGlyph[094] pGlyph[095]\n 25 pGlyph[096] pGlyph[097] pGlyph[098] pGlyph[099]\n 26 pGlyph[100] pGlyph[101] pGlyph[102] pGlyph[103]\n 27 pGlyph[104] pGlyph[105] pGlyph[106] pGlyph[107]\n 28 pGlyph[108] pGlyph[109] pGlyph[110] pGlyph[111]\n 29 pGlyph[112] pGlyph[113] pGlyph[114] pGlyph[115]\n 30 pGlyph[116] pGlyph[117] pGlyph[118] pGlyph[119]\n 31 pGlyph[120] pGlyph[121] pGlyph[122] pGlyph[123]\n 32 pGlyph[124] pGlyph[125] pGlyph[127] pGlyph[128]\n\t\t\t  \n line[32*4]\n 01 line[000] line[001] line[002] .... line[030] line[031]\n |\n 08 line[000] line[001] line[002] .... line[030] line[031]\n\n 09 line[032] line[033] line[034] .... line[062] line[063]\n |\n 16 line[032] line[033] line[034] .... line[062] line[063]\n\n 17 line[064] line[065] line[066] .... line[094] line[095]\n |\n 24 line[064] line[065] line[066] .... line[094] line[095]\n\n 25 line[096] line[097] line[098] .... line[126] line[127]\n |\n 32 line[096] line[097] line[098] .... line[126] line[127]\n\n*/\nvoid Font2Bitmap(uint8_t *fonts, uint8_t *line, uint8_t w, uint8_t h, uint8_t inverse) {\n\tint x,y;\n\tfor(y=0; y<(h/8); y++){\n\t\tfor(x=0; x<w; x++){\n\t\t\tline[y*32+x] = 0;\n\t\t}\n\t}\n\n\tint mask = 7;\n\tint fontp;\n\tfontp = 0;\n\tfor(y=0; y<h; y++){\n\t\tfor(x=0; x<w; x++){\n\t\t\tuint8_t d = fonts[fontp+x/8];\n\t\t\tuint8_t linep = (y/8)*32+x;\n\t\t\tif (d & (0x80 >> (x % 8))) line[linep] = line[linep] + (1 << mask);\n\t\t}\n\t\tmask--;\n\t\tif (mask < 0) mask = 7;\n\t\tfontp += (w + 7)/8;\n\t}\n\n\tif (inverse) {\n\t\tfor(y=0; y<(h/8); y++){\n\t\t\tfor(x=0; x<w; x++){\n\t\t\t\tline[y*32+x] = RotateByte(line[y*32+x]);\n\t\t\t}\n\t\t}\n\t}\n}\n\n// アンダーラインを追加\nvoid UnderlineBitmap(uint8_t *line, uint8_t w, uint8_t h) {\n\tint x,y;\n\tuint8_t wk;\n\tfor(y=0; y<(h/8); y++){\n\t\tfor(x=0; x<w; x++){\n\t\t\twk = line[y*32+x];\n\t\t\tif ( (y+1) == (h/8)) line[y*32+x] = wk + 0x80;\n\t\t}\n\t}\n}\n\n// ビットマップを反転\nvoid ReversBitmap(uint8_t *line, uint8_t w, uint8_t h) {\n\tint x,y;\n\tuint8_t wk;\n\tfor(y=0; y<(h/8); y++){\n\t\tfor(x=0; x<w; x++){\n\t\t\twk = line[y*32+x];\n\t\t\tline[y*32+x] = ~wk;\n\t\t}\n\t}\n}\n\n// フォントパターンの表示\nvoid ShowFont(uint8_t *fonts, uint8_t pw, uint8_t ph) {\n\tint x,y,fpos;\n\tprintf(\"[ShowFont pw=%d ph=%d]\\n\",pw,ph);\n\tfpos=0;\n\tfor (y=0;y<ph;y++) {\n\t\tprintf(\"%02d\",y);\n\t\tfor (x=0;x<pw;x++) {\n\t\t\tif (fonts[fpos+x/8] & (0x80 >> (x % 8))) {\n\t\t\tprintf(\"*\");\n\t\t\t} else {\n\t\t\t\tprintf(\".\");\n\t\t\t}\n\t\t}\n\t\tprintf(\"\\n\");\n\t\tfpos=fpos+(pw+7)/8;\n\t}\n\tprintf(\"\\n\");\n}\n\n// Bitmapの表示\nvoid ShowBitmap(uint8_t *bitmap, uint8_t pw, uint8_t ph) {\n\tint x,y,fpos;\n\tprintf(\"[ShowBitmap pw=%d ph=%d]\\n\",pw,ph);\n#if 0\n\tfor (y=0;y<(ph+7)/8;y++) {\n\t\tfor (x=0;x<pw;x++) {\n\t\t\tprintf(\"%02x \",bitmap[x+y*32]);\n\t\t}\n\t\tprintf(\"\\n\");\n\t}\n#endif\n\n\tfpos=0;\n\tfor (y=0;y<ph;y++) {\n\t\tprintf(\"%02d\",y);\n\t\tfor (x=0;x<pw;x++) {\n//printf(\"b=%x m=%x\\n\",bitmap[x+(y/8)*32],0x80 >> fpos);\n\t\t\tif (bitmap[x+(y/8)*32] & (0x80 >> fpos)) {\n\t\t\t\tprintf(\"*\");\n\t\t\t} else {\n\t\t\t\tprintf(\".\");\n\t\t\t}\n\t\t}\n\t\tprintf(\"\\n\");\n\t\tfpos++;\n\t\tif (fpos > 7) fpos = 0;\n\t}\n\tprintf(\"\\n\");\n}\n\n\n// 8ビットデータを反転\nuint8_t RotateByte(uint8_t ch1) {\n\tuint8_t ch2 = 0;\n\tint j;\n\tfor (j=0;j<8;j++) {\n\t\tch2 = (ch2 << 1) + (ch1 & 0x01);\n\t\tch1 = ch1 >> 1;\n\t}\n\treturn ch2;\n}\n\n\n#if 0\n// UTF code(3Byte) を SJIS Code(2 Byte) に変換\n// https://www.mgo-tec.com/blog-entry-utf8sjis01.html\nuint16_t UTF2SJIS(spiffs_file fd, uint8_t *utf8) {\n\n  uint32_t offset = 0;\n  uint32_t ret;\n  uint32_t UTF8uint = utf8[0]*256*256 + utf8[1]*256 + utf8[2];\n   \n  if(utf8[0]>=0xC2 && utf8[0]<=0xD1){ //0xB0からS_JISコード実データ。0x00-0xAFまではライセンス文ヘッダなのでそれをカット。\n\toffset = ((utf8[0]*256 + utf8[1])-0xC2A2)*2 + 0xB0; //文字\"￠\" UTF8コード C2A2～、S_jisコード8191\n  }else if(utf8[0]==0xE2 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE28090)*2 + 0x1EEC; //文字\"‐\" UTF8コード E28090～、S_jisコード815D\n  }else if(utf8[0]==0xE3 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE38080)*2 + 0x9DCC; //スペース UTF8コード E38080～、S_jisコード8140\n  }else if(utf8[0]==0xE4 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE4B880)*2 + 0x11CCC; //文字\"一\" UTF8コード E4B880～、S_jisコード88EA\n  }else if(utf8[0]==0xE5 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE58085)*2 + 0x12BCC; //文字\"倅\" UTF8コード E58085～、S_jisコード98E4\n  }else if(utf8[0]==0xE6 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE6808E)*2 + 0x1AAC2; //文字\"怎\" UTF8コード E6808E～、S_jisコード9C83\n  }else if(utf8[0]==0xE7 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE78081)*2 + 0x229A6; //文字\"瀁\" UTF8コード E78081～、S_jisコードE066\n  }else if(utf8[0]==0xE8 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE88080)*2 + 0x2A8A4; //文字\"耀\" UTF8コード E88080～、S_jisコード9773\n  }else if(utf8[0]==0xE9 && utf8[1]>=0x80){\n\toffset = (UTF8uint-0xE98080)*2 + 0x327A4; //文字\"退\" UTF8コード E98080～、S_jisコード91DE\n  }else if(utf8[0]>=0xEF && utf8[1]>=0xBC){\n\toffset = (UTF8uint-0xEFBC81)*2 + 0x3A6A4; //文字\"！\" UTF8コード EFBC81～、S_jisコード8149\n\tif(utf8[0]==0xEF && utf8[1]==0xBD && utf8[2]==0x9E){\n\t  offset = 0x3A8DE; // \"～\" UTF8コード EFBD9E、S_jisコード8160\n\t}\n  }\n\nif(FontxDebug)printf(\"[UTF2SJIS] offset=%d\\n\",offset);\n  char buf[2];\n  ret = SPIFFS_lseek(&fs, fd, offset, SPIFFS_SEEK_SET);\nif(FontxDebug)printf(\"[UTF2SJIS] lseek ret=%d\\n\",ret);\n  if (ret != offset) {\n\tprintf(\"UTF2SJIS:seek(%u) failed.\\n\",offset);\n\treturn 0;\n  }\n  if (SPIFFS_read(&fs, fd, buf, sizeof(buf)) != sizeof(buf)) {\n\tprintf(\"UTF2SJIS:read failed.\\n\");\n\treturn 0;\n  }\nif(FontxDebug)printf(\"[UTF2SJIS] sjis=0x%x%x\\n\",buf[0],buf[1]);\n  return buf[0]*256+buf[1];\n}\n\n\n// UTFを含む文字列をSJISに変換\nint String2SJIS(spiffs_file fd, unsigned char *str_in, size_t stlen,\n\t\tuint16_t *sjis, size_t ssize) {\n  int i;\n  uint8_t sp;\n  uint8_t c1 = 0;\n  uint8_t c2 = 0;\n  uint8_t utf8[3];\n  uint16_t sjis2;\n  int spos = 0;\n\n  for(i=0;i<stlen;i++) {\n\tsp = str_in[i];\nif(FontxDebug)printf(\"[String2SJIS]sp[%d]=%x\\n\",i,sp);\n\tif ((sp & 0xf0) == 0xe0) { // 上位4ビットが1110なら、3バイト文字の1バイト目\n\t  c1 = sp;\n\t} else if ((sp & 0xc0) == 0x80) { // 上位2ビットが10なら、他バイト文字の2バイト目以降\n\t  if (c2 == 0) {\n\t\tc2 = sp;\n\t  } else {\n\t\tif (c1 == 0xef && c2 == 0xbd) {\nif(FontxDebug)printf(\"[String2SJIS]hankaku kana %x-%x-%x\\n\",c1,c2,sp);\n\t\t  sjis2 = sp;\nif(FontxDebug)printf(\"[String2SJIS]sjis2=%x\\n\",sjis2);\n\t\t  if (spos < ssize) sjis[spos++] = sjis2;\n\t\t} else if (c1 == 0xef && c2 == 0xbe) {\nif(FontxDebug)printf(\"[String2SJIS]hankaku kana %x-%x-%x\\n\",c1,c2,sp);\n\t\t  sjis2 = 0xc0 + (sp - 0x80);\nif(FontxDebug)printf(\"[String2SJIS]sjis2=%x\\n\",sjis2);\n\t\t  if (spos < ssize) sjis[spos++] = sjis2;\n\t\t} else {\nif(FontxDebug)printf(\"[String2SJIS]UTF8 %x-%x-%x\\n\",c1,c2,sp);\n\t\t  utf8[0] = c1;\n\t\t  utf8[1] = c2;\n\t\t  utf8[2] = sp;\n\t\t  sjis2 = UTF2SJIS(fd, utf8);\nif(FontxDebug)printf(\"[String2SJIS]sjis2=%x\\n\",sjis2);\n\t\t  if (spos < ssize) sjis[spos++] = sjis2;\n\t\t}\n\t\tc1 = c2 = 0;\n\t  }\n\t} else if ((sp & 0x80) == 0) { // 1バイト文字の場合\nif(FontxDebug)printf(\"[String2SJIS]ANK %x\\n\",sp);\n\t\tif (spos < ssize) sjis[spos++] = sp;\n\t}\n  }\n  return spos;\n}\n#endif\n\n"
  },
  {
    "path": "Code/components/st7789/fontx.h",
    "content": "#ifndef MAIN_FONTX_H_\n#define MAIN_FONTX_H_\n#define FontxGlyphBufSize (32*32/8)\n\ntypedef struct {\n\tconst char *path;\n\tchar  fxname[10];\n\tbool  opened;\n\tbool  valid;\n\tbool  is_ank;\n\tuint8_t w;\n\tuint8_t h;\n\tuint16_t fsz;\n\tuint8_t bc;\n\tFILE *file;\n} FontxFile;\n\nvoid AaddFontx(FontxFile *fx, const char *path);\nvoid InitFontx(FontxFile *fxs, const char *f0, const char *f1);\nbool OpenFontx(FontxFile *fx);\nvoid CloseFontx(FontxFile *fx);\nvoid DumpFontx(FontxFile *fxs);\nuint8_t getFortWidth(FontxFile *fx);\nuint8_t getFortHeight(FontxFile *fx);\nbool GetFontx(FontxFile *fxs, uint8_t ascii , uint8_t *pGlyph, uint8_t *pw, uint8_t *ph);\nvoid Font2Bitmap(uint8_t *fonts, uint8_t *line, uint8_t w, uint8_t h, uint8_t inverse);\nvoid UnderlineBitmap(uint8_t *line, uint8_t w, uint8_t h);\nvoid ReversBitmap(uint8_t *line, uint8_t w, uint8_t h);\nvoid ShowFont(uint8_t *fonts, uint8_t pw, uint8_t ph);\nvoid ShowBitmap(uint8_t *bitmap, uint8_t pw, uint8_t ph);\nuint8_t RotateByte(uint8_t ch);\n\n// UTF8 to SJIS table\n// https://www.mgo-tec.com/blog-entry-utf8sjis01.html\n//#define Utf8Sjis \"Utf8Sjis.tbl\"\n//uint16_t UTF2SJIS(spiffs_file fd, uint8_t *utf8);\n//int String2SJIS(spiffs_file fd, unsigned char *str_in, size_t stlen, uint16_t *sjis, size_t ssize);\n#endif /* MAIN_FONTX_H_ */\n\n"
  },
  {
    "path": "Code/components/st7789/st7789.c",
    "content": "#include <string.h>\n#include <inttypes.h>\n#include <math.h>\n\n#include \"freertos/FreeRTOS.h\"\n#include \"freertos/task.h\"\n\n#include <driver/spi_master.h>\n#include <driver/gpio.h>\n#include \"esp_log.h\"\n\n#include \"st7789.h\"\n\n#define TAG \"ST7789\"\n#define\t_DEBUG_ 0\n\n#if 0\n#ifdef CONFIG_IDF_TARGET_ESP32\n#define LCD_HOST HSPI_HOST\n#elif defined CONFIG_IDF_TARGET_ESP32S2\n#define LCD_HOST SPI2_HOST\n#elif defined CONFIG_IDF_TARGET_ESP32S3\n#define LCD_HOST SPI2_HOST\n#elif defined CONFIG_IDF_TARGET_ESP32C3\n#define LCD_HOST SPI2_HOST\n#endif\n#endif\n\n#if CONFIG_SPI2_HOST\n#define HOST_ID SPI2_HOST\n#elif CONFIG_SPI3_HOST\n#define HOST_ID SPI3_HOST\n#endif\n\nstatic const int SPI_Command_Mode = 0;\nstatic const int SPI_Data_Mode = 1;\nstatic const int SPI_Frequency = SPI_MASTER_FREQ_20M;\n//static const int SPI_Frequency = SPI_MASTER_FREQ_26M;\n//static const int SPI_Frequency = SPI_MASTER_FREQ_40M;\n//static const int SPI_Frequency = SPI_MASTER_FREQ_80M;\n\n\nvoid spi_master_init(TFT_t * dev, int16_t GPIO_MOSI, int16_t GPIO_SCLK, int16_t GPIO_CS, int16_t GPIO_DC, int16_t GPIO_RESET, int16_t GPIO_BL)\n{\n\tesp_err_t ret;\n\n\tESP_LOGI(TAG, \"GPIO_CS=%d\",GPIO_CS);\n\tif ( GPIO_CS >= 0 ) {\n\t\t//gpio_pad_select_gpio( GPIO_CS );\n\t\tgpio_reset_pin( GPIO_CS );\n\t\tgpio_set_direction( GPIO_CS, GPIO_MODE_OUTPUT );\n\t\tgpio_set_level( GPIO_CS, 0 );\n\t}\n\n\tESP_LOGI(TAG, \"GPIO_DC=%d\",GPIO_DC);\n\t//gpio_pad_select_gpio( GPIO_DC );\n\tgpio_reset_pin( GPIO_DC );\n\tgpio_set_direction( GPIO_DC, GPIO_MODE_OUTPUT );\n\tgpio_set_level( GPIO_DC, 0 );\n\n\tESP_LOGI(TAG, \"GPIO_RESET=%d\",GPIO_RESET);\n\tif ( GPIO_RESET >= 0 ) {\n\t\t//gpio_pad_select_gpio( GPIO_RESET );\n\t\tgpio_reset_pin( GPIO_RESET );\n\t\tgpio_set_direction( GPIO_RESET, GPIO_MODE_OUTPUT );\n\t\tgpio_set_level( GPIO_RESET, 1 );\n\t\tdelayMS(100);\n\t\tgpio_set_level( GPIO_RESET, 0 );\n\t\tdelayMS(100);\n\t\tgpio_set_level( GPIO_RESET, 1 );\n\t\tdelayMS(100);\n\t}\n\n\tESP_LOGI(TAG, \"GPIO_BL=%d\",GPIO_BL);\n\tif ( GPIO_BL >= 0 ) {\n\t\t//gpio_pad_select_gpio(GPIO_BL);\n\t\tgpio_reset_pin(GPIO_BL);\n\t\tgpio_set_direction( GPIO_BL, GPIO_MODE_OUTPUT );\n\t\tgpio_set_level( GPIO_BL, 0 );\n\t}\n\n\tESP_LOGI(TAG, \"GPIO_MOSI=%d\",GPIO_MOSI);\n\tESP_LOGI(TAG, \"GPIO_SCLK=%d\",GPIO_SCLK);\n\tspi_bus_config_t buscfg = {\n\t\t.mosi_io_num = GPIO_MOSI,\n\t\t.miso_io_num = -1,\n\t\t.sclk_io_num = GPIO_SCLK,\n\t\t.quadwp_io_num = -1,\n\t\t.quadhd_io_num = -1,\n\t\t.max_transfer_sz = 0,\n\t\t.flags = 0\n\t};\n\n\tret = spi_bus_initialize( HOST_ID, &buscfg, SPI_DMA_CH_AUTO );\n\tESP_LOGD(TAG, \"spi_bus_initialize=%d\",ret);\n\tassert(ret==ESP_OK);\n\n\tspi_device_interface_config_t devcfg;\n\tmemset(&devcfg, 0, sizeof(devcfg));\n\tdevcfg.clock_speed_hz = SPI_Frequency;\n\tdevcfg.queue_size = 7;\n\t//devcfg.mode = 2;\n\tdevcfg.mode = 3;\n\tdevcfg.flags = SPI_DEVICE_NO_DUMMY;\n\n\tif ( GPIO_CS >= 0 ) {\n\t\tdevcfg.spics_io_num = GPIO_CS;\n\t} else {\n\t\tdevcfg.spics_io_num = -1;\n\t}\n\t\n\tspi_device_handle_t handle;\n\tret = spi_bus_add_device( HOST_ID, &devcfg, &handle);\n\tESP_LOGD(TAG, \"spi_bus_add_device=%d\",ret);\n\tassert(ret==ESP_OK);\n\tdev->_dc = GPIO_DC;\n\tdev->_bl = GPIO_BL;\n\tdev->_SPIHandle = handle;\n}\n\nbool spi_master_write_byte(spi_device_handle_t SPIHandle, const uint8_t* Data, size_t DataLength)\n{\n\tspi_transaction_t SPITransaction;\n\tesp_err_t ret;\n\n\tif ( DataLength > 0 ) {\n\t\tmemset( &SPITransaction, 0, sizeof( spi_transaction_t ) );\n\t\tSPITransaction.length = DataLength * 8;\n\t\tSPITransaction.tx_buffer = Data;\n#if 1\n\t\tret = spi_device_transmit( SPIHandle, &SPITransaction );\n#else\n\t\tret = spi_device_polling_transmit( SPIHandle, &SPITransaction );\n#endif\n\t\tassert(ret==ESP_OK); \n\t}\n\n\treturn true;\n}\n\nbool spi_master_write_command(TFT_t * dev, uint8_t cmd)\n{\n\tstatic uint8_t Byte = 0;\n\tByte = cmd;\n\tgpio_set_level( dev->_dc, SPI_Command_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, &Byte, 1 );\n}\n\nbool spi_master_write_data_byte(TFT_t * dev, uint8_t data)\n{\n\tstatic uint8_t Byte = 0;\n\tByte = data;\n\tgpio_set_level( dev->_dc, SPI_Data_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, &Byte, 1 );\n}\n\n\nbool spi_master_write_data_word(TFT_t * dev, uint16_t data)\n{\n\tstatic uint8_t Byte[2];\n\tByte[0] = (data >> 8) & 0xFF;\n\tByte[1] = data & 0xFF;\n\tgpio_set_level( dev->_dc, SPI_Data_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, Byte, 2);\n}\n\nbool spi_master_write_addr(TFT_t * dev, uint16_t addr1, uint16_t addr2)\n{\n\tstatic uint8_t Byte[4];\n\tByte[0] = (addr1 >> 8) & 0xFF;\n\tByte[1] = addr1 & 0xFF;\n\tByte[2] = (addr2 >> 8) & 0xFF;\n\tByte[3] = addr2 & 0xFF;\n\tgpio_set_level( dev->_dc, SPI_Data_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, Byte, 4);\n}\n\nbool spi_master_write_color(TFT_t * dev, uint16_t color, uint16_t size)\n{\n\tstatic uint8_t Byte[1024];\n\tint index = 0;\n\tfor(int i=0;i<size;i++) {\n\t\tByte[index++] = (color >> 8) & 0xFF;\n\t\tByte[index++] = color & 0xFF;\n\t}\n\tgpio_set_level( dev->_dc, SPI_Data_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, Byte, size*2);\n}\n\n// Add 202001\nbool spi_master_write_colors(TFT_t * dev, uint16_t * colors, uint16_t size)\n{\n\tstatic uint8_t Byte[1024];\n\tint index = 0;\n\tfor(int i=0;i<size;i++) {\n\t\tByte[index++] = (colors[i] >> 8) & 0xFF;\n\t\tByte[index++] = colors[i] & 0xFF;\n\t}\n\tgpio_set_level( dev->_dc, SPI_Data_Mode );\n\treturn spi_master_write_byte( dev->_SPIHandle, Byte, size*2);\n}\n\nvoid delayMS(int ms) {\n\tint _ms = ms + (portTICK_PERIOD_MS - 1);\n\tTickType_t xTicksToDelay = _ms / portTICK_PERIOD_MS;\n\tESP_LOGD(TAG, \"ms=%d _ms=%d portTICK_PERIOD_MS=%\"PRIu32\" xTicksToDelay=%\"PRIu32,ms,_ms,portTICK_PERIOD_MS,xTicksToDelay);\n\tvTaskDelay(xTicksToDelay);\n}\n\n\nvoid lcdInit(TFT_t * dev, int width, int height, int offsetx, int offsety)\n{\n\tdev->_width = width;\n\tdev->_height = height;\n\tdev->_offsetx = offsetx;\n\tdev->_offsety = offsety;\n\tdev->_font_direction = DIRECTION0;\n\tdev->_font_fill = false;\n\tdev->_font_underline = false;\n\n\tspi_master_write_command(dev, 0x01);\t//Software Reset\n\tdelayMS(150);\n\n\tspi_master_write_command(dev, 0x11);\t//Sleep Out\n\tdelayMS(255);\n\t\n\tspi_master_write_command(dev, 0x3A);\t//Interface Pixel Format\n\tspi_master_write_data_byte(dev, 0x55);\n\tdelayMS(10);\n\t\n\tspi_master_write_command(dev, 0x36);\t//Memory Data Access Control\n\tspi_master_write_data_byte(dev, 0x00);\n\n\tspi_master_write_command(dev, 0x2A);\t//Column Address Set\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0xF0);\n\n\tspi_master_write_command(dev, 0x2B);\t//Row Address Set\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0x00);\n\tspi_master_write_data_byte(dev, 0xF0);\n\n\tspi_master_write_command(dev, 0x21);\t//Display Inversion On\n\tdelayMS(10);\n\n\tspi_master_write_command(dev, 0x13);\t//Normal Display Mode On\n\tdelayMS(10);\n\n\tspi_master_write_command(dev, 0x29);\t//Display ON\n\tdelayMS(255);\n\n\tif(dev->_bl >= 0) {\n\t\tgpio_set_level( dev->_bl, 1 );\n\t}\n\n\tdev->_use_frame_buffer = false;\n#if CONFIG_FRAME_BUFFER\n\tdev->_frame_buffer = heap_caps_malloc(sizeof(uint16_t)*width*height, MALLOC_CAP_DMA);\n\tif (dev->_frame_buffer == NULL) {\n\t\tESP_LOGE(TAG, \"heap_caps_malloc fail\");\n\t} else {\n\t\tESP_LOGI(TAG, \"heap_caps_malloc success\");\n\t\tdev->_use_frame_buffer = true;\n\t}\n\n#endif\n}\n\n\n// Draw pixel\n// x:X coordinate\n// y:Y coordinate\n// color:color\nvoid lcdDrawPixel(TFT_t * dev, uint16_t x, uint16_t y, uint16_t color){\n\tif (x >= dev->_width) return;\n\tif (y >= dev->_height) return;\n\n\tif (dev->_use_frame_buffer) {\n\t\tdev->_frame_buffer[y*dev->_width+x] = color;\n\t} else {\n\t\tuint16_t _x = x + dev->_offsetx;\n\t\tuint16_t _y = y + dev->_offsety;\n\n\t\tspi_master_write_command(dev, 0x2A);\t// set column(x) address\n\t\tspi_master_write_addr(dev, _x, _x);\n\t\tspi_master_write_command(dev, 0x2B);\t// set Page(y) address\n\t\tspi_master_write_addr(dev, _y, _y);\n\t\tspi_master_write_command(dev, 0x2C);\t// Memory Write\n\t\t//spi_master_write_data_word(dev, color);\n\t\tspi_master_write_colors(dev, &color, 1);\n\t}\n}\n\n\n// Draw multi pixel\n// x:X coordinate\n// y:Y coordinate\n// size:Number of colors\n// colors:colors\nvoid lcdDrawMultiPixels(TFT_t * dev, uint16_t x, uint16_t y, uint16_t size, uint16_t * colors) {\n\tif (x+size > dev->_width) return;\n\tif (y >= dev->_height) return;\n\n\tif (dev->_use_frame_buffer) {\n\t\tuint16_t _x1 = x;\n\t\tuint16_t _x2 = _x1 + (size-1);\n\t\tuint16_t _y1 = y;\n\t\tuint16_t _y2 = _y1;\n\t\tint16_t index = 0;\n\t\tfor (int16_t j = _y1; j <= _y2; j++){\n\t\t\tfor(int16_t i = _x1; i <= _x2; i++){\n\t\t\t\t dev->_frame_buffer[j*dev->_width+i] = colors[index++];\n\t\t\t}\n\t\t}\n\t} else {\n\t\tuint16_t _x1 = x + dev->_offsetx;\n\t\tuint16_t _x2 = _x1 + (size-1);\n\t\tuint16_t _y1 = y + dev->_offsety;\n\t\tuint16_t _y2 = _y1;\n\n\t\tspi_master_write_command(dev, 0x2A);\t// set column(x) address\n\t\tspi_master_write_addr(dev, _x1, _x2);\n\t\tspi_master_write_command(dev, 0x2B);\t// set Page(y) address\n\t\tspi_master_write_addr(dev, _y1, _y2);\n\t\tspi_master_write_command(dev, 0x2C);\t// Memory Write\n\t\tspi_master_write_colors(dev, colors, size);\n\t}\n}\n\n// Draw rectangle of filling\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End X coordinate\n// y2:End Y coordinate\n// color:color\nvoid lcdDrawFillRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {\n\tif (x1 >= dev->_width) return;\n\tif (x2 >= dev->_width) x2=dev->_width-1;\n\tif (y1 >= dev->_height) return;\n\tif (y2 >= dev->_height) y2=dev->_height-1;\n\n\tESP_LOGD(TAG,\"offset(x)=%d offset(y)=%d\",dev->_offsetx,dev->_offsety);\n\n\tif (dev->_use_frame_buffer) {\n\t\tfor (int16_t j = y1; j <= y2; j++){\n\t\t\tfor(int16_t i = x1; i <= x2; i++){\n\t\t\t\tdev->_frame_buffer[j*dev->_width+i] = color;\n\t\t\t}\n\t\t}\n\t} else {\n\t\tuint16_t _x1 = x1 + dev->_offsetx;\n\t\tuint16_t _x2 = x2 + dev->_offsetx;\n\t\tuint16_t _y1 = y1 + dev->_offsety;\n\t\tuint16_t _y2 = y2 + dev->_offsety;\n\n\t\tspi_master_write_command(dev, 0x2A);\t// set column(x) address\n\t\tspi_master_write_addr(dev, _x1, _x2);\n\t\tspi_master_write_command(dev, 0x2B);\t// set Page(y) address\n\t\tspi_master_write_addr(dev, _y1, _y2);\n\t\tspi_master_write_command(dev, 0x2C);\t// Memory Write\n\t\tfor(int i=_x1;i<=_x2;i++){\n\t\t\tuint16_t size = _y2-_y1+1;\n\t\t\tspi_master_write_color(dev, color, size);\n\t\t}\n\t}\n}\n\n// Display OFF\nvoid lcdDisplayOff(TFT_t * dev) {\n\tspi_master_write_command(dev, 0x28);\t// Display off\n}\n \n// Display ON\nvoid lcdDisplayOn(TFT_t * dev) {\n\tspi_master_write_command(dev, 0x29);\t// Display on\n}\n\n// Fill screen\n// color:color\nvoid lcdFillScreen(TFT_t * dev, uint16_t color) {\n\tlcdDrawFillRect(dev, 0, 0, dev->_width-1, dev->_height-1, color);\n}\n\n// Draw line\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End\tX coordinate\n// y2:End\tY coordinate\n// color:color \nvoid lcdDrawLine(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {\n\tint i;\n\tint dx,dy;\n\tint sx,sy;\n\tint E;\n\n\t/* distance between two points */\n\tdx = ( x2 > x1 ) ? x2 - x1 : x1 - x2;\n\tdy = ( y2 > y1 ) ? y2 - y1 : y1 - y2;\n\n\t/* direction of two point */\n\tsx = ( x2 > x1 ) ? 1 : -1;\n\tsy = ( y2 > y1 ) ? 1 : -1;\n\n\t/* inclination < 1 */\n\tif ( dx > dy ) {\n\t\tE = -dx;\n\t\tfor ( i = 0 ; i <= dx ; i++ ) {\n\t\t\tlcdDrawPixel(dev, x1, y1, color);\n\t\t\tx1 += sx;\n\t\t\tE += 2 * dy;\n\t\t\tif ( E >= 0 ) {\n\t\t\ty1 += sy;\n\t\t\tE -= 2 * dx;\n\t\t}\n\t}\n\n\t/* inclination >= 1 */\n\t} else {\n\t\tE = -dy;\n\t\tfor ( i = 0 ; i <= dy ; i++ ) {\n\t\t\tlcdDrawPixel(dev, x1, y1, color);\n\t\t\ty1 += sy;\n\t\t\tE += 2 * dx;\n\t\t\tif ( E >= 0 ) {\n\t\t\t\tx1 += sx;\n\t\t\t\tE -= 2 * dy;\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Draw rectangle\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End\tX coordinate\n// y2:End\tY coordinate\n// color:color\nvoid lcdDrawRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {\n\tlcdDrawLine(dev, x1, y1, x2, y1, color);\n\tlcdDrawLine(dev, x2, y1, x2, y2, color);\n\tlcdDrawLine(dev, x2, y2, x1, y2, color);\n\tlcdDrawLine(dev, x1, y2, x1, y1, color);\n}\n\n// Draw rectangle with angle\n// xc:Center X coordinate\n// yc:Center Y coordinate\n// w:Width of rectangle\n// h:Height of rectangle\n// angle:Angle of rectangle\n// color:color\n\n//When the origin is (0, 0), the point (x1, y1) after rotating the point (x, y) by the angle is obtained by the following calculation.\n// x1 = x * cos(angle) - y * sin(angle)\n// y1 = x * sin(angle) + y * cos(angle)\nvoid lcdDrawRectAngle(TFT_t * dev, uint16_t xc, uint16_t yc, uint16_t w, uint16_t h, uint16_t angle, uint16_t color) {\n\tdouble xd,yd,rd;\n\tint x1,y1;\n\tint x2,y2;\n\tint x3,y3;\n\tint x4,y4;\n\trd = -angle * M_PI / 180.0;\n\txd = 0.0 - w/2;\n\tyd = h/2;\n\tx1 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty1 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\tyd = 0.0 - yd;\n\tx2 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty2 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\txd = w/2;\n\tyd = h/2;\n\tx3 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty3 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\tyd = 0.0 - yd;\n\tx4 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty4 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\tlcdDrawLine(dev, x1, y1, x2, y2, color);\n\tlcdDrawLine(dev, x1, y1, x3, y3, color);\n\tlcdDrawLine(dev, x2, y2, x4, y4, color);\n\tlcdDrawLine(dev, x3, y3, x4, y4, color);\n}\n\n// Draw triangle\n// xc:Center X coordinate\n// yc:Center Y coordinate\n// w:Width of triangle\n// h:Height of triangle\n// angle:Angle of triangle\n// color:color\n\n//When the origin is (0, 0), the point (x1, y1) after rotating the point (x, y) by the angle is obtained by the following calculation.\n// x1 = x * cos(angle) - y * sin(angle)\n// y1 = x * sin(angle) + y * cos(angle)\nvoid lcdDrawTriangle(TFT_t * dev, uint16_t xc, uint16_t yc, uint16_t w, uint16_t h, uint16_t angle, uint16_t color) {\n\tdouble xd,yd,rd;\n\tint x1,y1;\n\tint x2,y2;\n\tint x3,y3;\n\trd = -angle * M_PI / 180.0;\n\txd = 0.0;\n\tyd = h/2;\n\tx1 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty1 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\txd = w/2;\n\tyd = 0.0 - yd;\n\tx2 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty2 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\txd = 0.0 - w/2;\n\tx3 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\ty3 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\tlcdDrawLine(dev, x1, y1, x2, y2, color);\n\tlcdDrawLine(dev, x1, y1, x3, y3, color);\n\tlcdDrawLine(dev, x2, y2, x3, y3, color);\n}\n\n// Draw regular polygon\n// xc:Center X coordinate\n// yc:Center Y coordinate\n// n:Number of slides\n// r:radius\n// angle:Angle of regular polygon\n// color:color\nvoid lcdDrawRegularPolygon(TFT_t *dev, uint16_t xc, uint16_t yc, uint16_t n, uint16_t r, uint16_t angle, uint16_t color)\n{\n\tdouble xd, yd, rd;\n\tint x1, y1;\n\tint x2, y2;\n\tint i;\n\n\trd = -angle * M_PI / 180.0;\n\tfor (i = 0; i < n; i++)\n\t{\n\t\txd = r * cos(2 * M_PI * i / n);\n\t\tyd = r * sin(2 * M_PI * i / n);\n\t\tx1 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\t\ty1 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\t\txd = r * cos(2 * M_PI * (i + 1) / n);\n\t\tyd = r * sin(2 * M_PI * (i + 1) / n);\n\t\tx2 = (int)(xd * cos(rd) - yd * sin(rd) + xc);\n\t\ty2 = (int)(xd * sin(rd) + yd * cos(rd) + yc);\n\n\t\tlcdDrawLine(dev, x1, y1, x2, y2, color);\n\t}\n}\n\n// Draw circle\n// x0:Central X coordinate\n// y0:Central Y coordinate\n// r:radius\n// color:color\nvoid lcdDrawCircle(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t r, uint16_t color) {\n\tint x;\n\tint y;\n\tint err;\n\tint old_err;\n\n\tx=0;\n\ty=-r;\n\terr=2-2*r;\n\tdo{\n\t\tlcdDrawPixel(dev, x0-x, y0+y, color); \n\t\tlcdDrawPixel(dev, x0-y, y0-x, color); \n\t\tlcdDrawPixel(dev, x0+x, y0-y, color); \n\t\tlcdDrawPixel(dev, x0+y, y0+x, color); \n\t\tif ((old_err=err)<=x)\terr+=++x*2+1;\n\t\tif (old_err>y || err>x) err+=++y*2+1;\t \n\t} while(y<0);\n}\n\n// Draw circle of filling\n// x0:Central X coordinate\n// y0:Central Y coordinate\n// r:radius\n// color:color\nvoid lcdDrawFillCircle(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t r, uint16_t color) {\n\tint x;\n\tint y;\n\tint err;\n\tint old_err;\n\tint ChangeX;\n\n\tx=0;\n\ty=-r;\n\terr=2-2*r;\n\tChangeX=1;\n\tdo{\n\t\tif(ChangeX) {\n\t\t\tlcdDrawLine(dev, x0-x, y0-y, x0-x, y0+y, color);\n\t\t\tlcdDrawLine(dev, x0+x, y0-y, x0+x, y0+y, color);\n\t\t} // endif\n\t\tChangeX=(old_err=err)<=x;\n\t\tif (ChangeX)\t\t\terr+=++x*2+1;\n\t\tif (old_err>y || err>x) err+=++y*2+1;\n\t} while(y<=0);\n} \n\n// Draw rectangle with round corner\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End\tX coordinate\n// y2:End\tY coordinate\n// r:radius\n// color:color\nvoid lcdDrawRoundRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t r, uint16_t color) {\n\tint x;\n\tint y;\n\tint err;\n\tint old_err;\n\tunsigned char temp;\n\n\tif(x1>x2) {\n\t\ttemp=x1; x1=x2; x2=temp;\n\t} // endif\n\t  \n\tif(y1>y2) {\n\t\ttemp=y1; y1=y2; y2=temp;\n\t} // endif\n\n\tESP_LOGD(TAG, \"x1=%d x2=%d delta=%d r=%d\",x1, x2, x2-x1, r);\n\tESP_LOGD(TAG, \"y1=%d y2=%d delta=%d r=%d\",y1, y2, y2-y1, r);\n\tif (x2-x1 < r) return; // Add 20190517\n\tif (y2-y1 < r) return; // Add 20190517\n\n\tx=0;\n\ty=-r;\n\terr=2-2*r;\n\n\tdo{\n\t\tif(x) {\n\t\t\tlcdDrawPixel(dev, x1+r-x, y1+r+y, color); \n\t\t\tlcdDrawPixel(dev, x2-r+x, y1+r+y, color); \n\t\t\tlcdDrawPixel(dev, x1+r-x, y2-r-y, color); \n\t\t\tlcdDrawPixel(dev, x2-r+x, y2-r-y, color);\n\t\t} // endif \n\t\tif ((old_err=err)<=x)\terr+=++x*2+1;\n\t\tif (old_err>y || err>x) err+=++y*2+1;\t \n\t} while(y<0);\n\n\tESP_LOGD(TAG, \"x1+r=%d x2-r=%d\",x1+r, x2-r);\n\tlcdDrawLine(dev, x1+r,y1  ,x2-r,y1\t,color);\n\tlcdDrawLine(dev, x1+r,y2  ,x2-r,y2\t,color);\n\tESP_LOGD(TAG, \"y1+r=%d y2-r=%d\",y1+r, y2-r);\n\tlcdDrawLine(dev, x1  ,y1+r,x1  ,y2-r,color);\n\tlcdDrawLine(dev, x2  ,y1+r,x2  ,y2-r,color);  \n} \n\n// Draw arrow\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End\tX coordinate\n// y2:End\tY coordinate\n// w:Width of the botom\n// color:color\n// Thanks http://k-hiura.cocolog-nifty.com/blog/2010/11/post-2a62.html\nvoid lcdDrawArrow(TFT_t * dev, uint16_t x0,uint16_t y0,uint16_t x1,uint16_t y1,uint16_t w,uint16_t color) {\n\tdouble Vx= x1 - x0;\n\tdouble Vy= y1 - y0;\n\tdouble v = sqrt(Vx*Vx+Vy*Vy);\n\t//\t printf(\"v=%f\\n\",v);\n\tdouble Ux= Vx/v;\n\tdouble Uy= Vy/v;\n\n\tuint16_t L[2],R[2];\n\tL[0]= x1 - Uy*w - Ux*v;\n\tL[1]= y1 + Ux*w - Uy*v;\n\tR[0]= x1 + Uy*w - Ux*v;\n\tR[1]= y1 - Ux*w - Uy*v;\n\t//printf(\"L=%d-%d R=%d-%d\\n\",L[0],L[1],R[0],R[1]);\n\n\t//lcdDrawLine(x0,y0,x1,y1,color);\n\tlcdDrawLine(dev, x1, y1, L[0], L[1], color);\n\tlcdDrawLine(dev, x1, y1, R[0], R[1], color);\n\tlcdDrawLine(dev, L[0], L[1], R[0], R[1], color);\n}\n\n\n// Draw arrow of filling\n// x1:Start X coordinate\n// y1:Start Y coordinate\n// x2:End\tX coordinate\n// y2:End\tY coordinate\n// w:Width of the botom\n// color:color\nvoid lcdDrawFillArrow(TFT_t * dev, uint16_t x0,uint16_t y0,uint16_t x1,uint16_t y1,uint16_t w,uint16_t color) {\n\tdouble Vx= x1 - x0;\n\tdouble Vy= y1 - y0;\n\tdouble v = sqrt(Vx*Vx+Vy*Vy);\n\t//printf(\"v=%f\\n\",v);\n\tdouble Ux= Vx/v;\n\tdouble Uy= Vy/v;\n\n\tuint16_t L[2],R[2];\n\tL[0]= x1 - Uy*w - Ux*v;\n\tL[1]= y1 + Ux*w - Uy*v;\n\tR[0]= x1 + Uy*w - Ux*v;\n\tR[1]= y1 - Ux*w - Uy*v;\n\t//printf(\"L=%d-%d R=%d-%d\\n\",L[0],L[1],R[0],R[1]);\n\n\tlcdDrawLine(dev, x0, y0, x1, y1, color);\n\tlcdDrawLine(dev, x1, y1, L[0], L[1], color);\n\tlcdDrawLine(dev, x1, y1, R[0], R[1], color);\n\tlcdDrawLine(dev, L[0], L[1], R[0], R[1], color);\n\n\tint ww;\n\tfor(ww=w-1;ww>0;ww--) {\n\t\tL[0]= x1 - Uy*ww - Ux*v;\n\t\tL[1]= y1 + Ux*ww - Uy*v;\n\t\tR[0]= x1 + Uy*ww - Ux*v;\n\t\tR[1]= y1 - Ux*ww - Uy*v;\n\t\t//printf(\"Fill>L=%d-%d R=%d-%d\\n\",L[0],L[1],R[0],R[1]);\n\t\tlcdDrawLine(dev, x1, y1, L[0], L[1], color);\n\t\tlcdDrawLine(dev, x1, y1, R[0], R[1], color);\n\t}\n}\n\n\n// Draw ASCII character\n// x:X coordinate\n// y:Y coordinate\n// ascii: ascii code\n// color:color\nint lcdDrawChar(TFT_t * dev, FontxFile *fxs, uint16_t x, uint16_t y, uint8_t ascii, uint16_t color) {\n\tuint16_t xx,yy,bit,ofs;\n\tunsigned char fonts[128]; // font pattern\n\tunsigned char pw, ph;\n\tint h,w;\n\tuint16_t mask;\n\tbool rc;\n\n\tif(_DEBUG_)printf(\"_font_direction=%d\\n\",dev->_font_direction);\n\trc = GetFontx(fxs, ascii, fonts, &pw, &ph);\n\tif(_DEBUG_)printf(\"GetFontx rc=%d pw=%d ph=%d\\n\",rc,pw,ph);\n\tif (!rc) return 0;\n\n\tint16_t xd1 = 0;\n\tint16_t yd1 = 0;\n\tint16_t xd2 = 0;\n\tint16_t yd2 = 0;\n\tuint16_t xss = 0;\n\tuint16_t yss = 0;\n\tint16_t xsd = 0;\n\tint16_t ysd = 0;\n\tint16_t next = 0;\n\tuint16_t x0  = 0;\n\tuint16_t x1  = 0;\n\tuint16_t y0  = 0;\n\tuint16_t y1  = 0;\n\tif (dev->_font_direction == 0) {\n\t\txd1 = +1;\n\t\tyd1 = +1; //-1;\n\t\txd2 =  0;\n\t\tyd2 =  0;\n\t\txss =  x;\n\t\tyss =  y - (ph - 1);\n\t\txsd =  1;\n\t\tysd =  0;\n\t\tnext = x + pw;\n\n\t\tx0\t= x;\n\t\ty0\t= y - (ph-1);\n\t\tx1\t= x + (pw-1);\n\t\ty1\t= y;\n\t} else if (dev->_font_direction == 2) {\n\t\txd1 = -1;\n\t\tyd1 = -1; //+1;\n\t\txd2 =  0;\n\t\tyd2 =  0;\n\t\txss =  x;\n\t\tyss =  y + ph + 1;\n\t\txsd =  1;\n\t\tysd =  0;\n\t\tnext = x - pw;\n\n\t\tx0\t= x - (pw-1);\n\t\ty0\t= y;\n\t\tx1\t= x;\n\t\ty1\t= y + (ph-1);\n\t} else if (dev->_font_direction == 1) {\n\t\txd1 =  0;\n\t\tyd1 =  0;\n\t\txd2 = -1;\n\t\tyd2 = +1; //-1;\n\t\txss =  x + ph;\n\t\tyss =  y;\n\t\txsd =  0;\n\t\tysd =  1;\n\t\tnext = y + pw; //y - pw;\n\n\t\tx0\t= x;\n\t\ty0\t= y;\n\t\tx1\t= x + (ph-1);\n\t\ty1\t= y + (pw-1);\n\t} else if (dev->_font_direction == 3) {\n\t\txd1 =  0;\n\t\tyd1 =  0;\n\t\txd2 = +1;\n\t\tyd2 = -1; //+1;\n\t\txss =  x - (ph - 1);\n\t\tyss =  y;\n\t\txsd =  0;\n\t\tysd =  1;\n\t\tnext = y - pw; //y + pw;\n\n\t\tx0\t= x - (ph-1);\n\t\ty0\t= y - (pw-1);\n\t\tx1\t= x;\n\t\ty1\t= y;\n\t}\n\n\tif (dev->_font_fill) lcdDrawFillRect(dev, x0, y0, x1, y1, dev->_font_fill_color);\n\n\tint bits;\n\tif(_DEBUG_)printf(\"xss=%d yss=%d\\n\",xss,yss);\n\tofs = 0;\n\tyy = yss;\n\txx = xss;\n\tfor(h=0;h<ph;h++) {\n\t\tif(xsd) xx = xss;\n\t\tif(ysd) yy = yss;\n\t\t//for(w=0;w<(pw/8);w++) {\n\t\tbits = pw;\n\t\tfor(w=0;w<((pw+4)/8);w++) {\n\t\t\tmask = 0x80;\n\t\t\tfor(bit=0;bit<8;bit++) {\n\t\t\t\tbits--;\n\t\t\t\tif (bits < 0) continue;\n\t\t\t\t//if(_DEBUG_)printf(\"xx=%d yy=%d mask=%02x fonts[%d]=%02x\\n\",xx,yy,mask,ofs,fonts[ofs]);\n\t\t\t\tif (fonts[ofs] & mask) {\n\t\t\t\t\tlcdDrawPixel(dev, xx, yy, color);\n\t\t\t\t} else {\n\t\t\t\t\t//if (dev->_font_fill) lcdDrawPixel(dev, xx, yy, dev->_font_fill_color);\n\t\t\t\t}\n\t\t\t\tif (h == (ph-2) && dev->_font_underline)\n\t\t\t\t\tlcdDrawPixel(dev, xx, yy, dev->_font_underline_color);\n\t\t\t\tif (h == (ph-1) && dev->_font_underline)\n\t\t\t\t\tlcdDrawPixel(dev, xx, yy, dev->_font_underline_color);\n\t\t\t\txx = xx + xd1;\n\t\t\t\tyy = yy + yd2;\n\t\t\t\tmask = mask >> 1;\n\t\t\t}\n\t\t\tofs++;\n\t\t}\n\t\tyy = yy + yd1;\n\t\txx = xx + xd2;\n\t}\n\n\tif (next < 0) next = 0;\n\treturn next;\n}\n\nint lcdDrawString(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, uint8_t * ascii, uint16_t color) {\n\tint length = strlen((char *)ascii);\n\tif(_DEBUG_)printf(\"lcdDrawString length=%d\\n\",length);\n\tfor(int i=0;i<length;i++) {\n\t\tif(_DEBUG_)printf(\"ascii[%d]=%x x=%d y=%d\\n\",i,ascii[i],x,y);\n\t\tif (dev->_font_direction == 0)\n\t\t\tx = lcdDrawChar(dev, fx, x, y, ascii[i], color);\n\t\tif (dev->_font_direction == 1)\n\t\t\ty = lcdDrawChar(dev, fx, x, y, ascii[i], color);\n\t\tif (dev->_font_direction == 2)\n\t\t\tx = lcdDrawChar(dev, fx, x, y, ascii[i], color);\n\t\tif (dev->_font_direction == 3)\n\t\t\ty = lcdDrawChar(dev, fx, x, y, ascii[i], color);\n\t}\n\tif (dev->_font_direction == 0) return x;\n\tif (dev->_font_direction == 2) return x;\n\tif (dev->_font_direction == 1) return y;\n\tif (dev->_font_direction == 3) return y;\n\treturn 0;\n}\n\n\n// Draw Non-Alphanumeric character\n// x:X coordinate\n// y:Y coordinate\n// code:character code\n// color:color\nint lcdDrawCode(TFT_t * dev, FontxFile *fx, uint16_t x,uint16_t y,uint8_t code,uint16_t color) {\n\tif(_DEBUG_)printf(\"code=%x x=%d y=%d\\n\",code,x,y);\n\tif (dev->_font_direction == 0)\n\t\tx = lcdDrawChar(dev, fx, x, y, code, color);\n\tif (dev->_font_direction == 1)\n\t\ty = lcdDrawChar(dev, fx, x, y, code, color);\n\tif (dev->_font_direction == 2)\n\t\tx = lcdDrawChar(dev, fx, x, y, code, color);\n\tif (dev->_font_direction == 3)\n\t\ty = lcdDrawChar(dev, fx, x, y, code, color);\n\tif (dev->_font_direction == 0) return x;\n\tif (dev->_font_direction == 2) return x;\n\tif (dev->_font_direction == 1) return y;\n\tif (dev->_font_direction == 3) return y;\n\treturn 0;\n}\n\n#if 0\n// Draw UTF8 character\n// x:X coordinate\n// y:Y coordinate\n// utf8:UTF8 code\n// color:color\nint lcdDrawUTF8Char(TFT_t * dev, FontxFile *fx, uint16_t x,uint16_t y,uint8_t *utf8,uint16_t color) {\n\tuint16_t sjis[1];\n\n\tsjis[0] = UTF2SJIS(utf8);\n\tif(_DEBUG_)printf(\"sjis=%04x\\n\",sjis[0]);\n\treturn lcdDrawSJISChar(dev, fx, x, y, sjis[0], color);\n}\n\n// Draw UTF8 string\n// x:X coordinate\n// y:Y coordinate\n// utfs:UTF8 string\n// color:color\nint lcdDrawUTF8String(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, unsigned char *utfs, uint16_t color) {\n\n\tint i;\n\tint spos;\n\tuint16_t sjis[64];\n\tspos = String2SJIS(utfs, strlen((char *)utfs), sjis, 64);\n\tif(_DEBUG_)printf(\"spos=%d\\n\",spos);\n\tfor(i=0;i<spos;i++) {\n\t\tif(_DEBUG_)printf(\"sjis[%d]=%x y=%d\\n\",i,sjis[i],y);\n\t\tif (dev->_font_direction == 0)\n\t\t\tx = lcdDrawSJISChar(dev, fx, x, y, sjis[i], color);\n\t\tif (dev->_font_direction == 1)\n\t\t\ty = lcdDrawSJISChar(dev, fx, x, y, sjis[i], color);\n\t\tif (dev->_font_direction == 2)\n\t\t\tx = lcdDrawSJISChar(dev, fx, x, y, sjis[i], color);\n\t\tif (dev->_font_direction == 3)\n\t\t\ty = lcdDrawSJISChar(dev, fx, x, y, sjis[i], color);\n\t}\n\tif (dev->_font_direction == 0) return x;\n\tif (dev->_font_direction == 2) return x;\n\tif (dev->_font_direction == 1) return y;\n\tif (dev->_font_direction == 3) return y;\n\treturn 0;\n}\n#endif\n\n// Set font direction\n// dir:Direction\nvoid lcdSetFontDirection(TFT_t * dev, uint16_t dir) {\n\tdev->_font_direction = dir;\n}\n\n// Set font filling\n// color:fill color\nvoid lcdSetFontFill(TFT_t * dev, uint16_t color) {\n\tdev->_font_fill = true;\n\tdev->_font_fill_color = color;\n}\n\n// UnSet font filling\nvoid lcdUnsetFontFill(TFT_t * dev) {\n\tdev->_font_fill = false;\n}\n\n// Set font underline\n// color:frame color\nvoid lcdSetFontUnderLine(TFT_t * dev, uint16_t color) {\n\tdev->_font_underline = true;\n\tdev->_font_underline_color = color;\n}\n\n// UnSet font underline\nvoid lcdUnsetFontUnderLine(TFT_t * dev) {\n\tdev->_font_underline = false;\n}\n\n// Backlight OFF\nvoid lcdBacklightOff(TFT_t * dev) {\n\tif(dev->_bl >= 0) {\n\t\tgpio_set_level( dev->_bl, 0 );\n\t}\n}\n\n// Backlight ON\nvoid lcdBacklightOn(TFT_t * dev) {\n\tif(dev->_bl >= 0) {\n\t\tgpio_set_level( dev->_bl, 1 );\n\t}\n}\n\n// Display Inversion Off\nvoid lcdInversionOff(TFT_t * dev) {\n\tspi_master_write_command(dev, 0x20); // Display Inversion Off\n}\n\n// Display Inversion On\nvoid lcdInversionOn(TFT_t * dev) {\n\tspi_master_write_command(dev, 0x21); // Display Inversion On\n}\n\nvoid lcdWrapArround(TFT_t * dev, SCROLL_TYPE_t scroll, int start, int end) {\n\tif (dev->_use_frame_buffer == false) return;\n\t\n\tint _width = dev->_width;\n\tint _height = dev->_height;\n\tint32_t index1;\n\tint32_t index2;\n\n\tif (scroll == SCROLL_RIGHT) {\n\t\tuint16_t wk[_width];\n\t\tfor (int i=start;i<end;i++) {\n\t\t\tindex1 = i * _width;\n\t\t\tmemcpy((char *)wk, (char*)&dev->_frame_buffer[index1], _width*2);\n\t\t\tindex2 = index1 + _width - 1;\n\t\t\tdev->_frame_buffer[index1] = dev->_frame_buffer[index2];\n\t\t\tmemcpy((char *)&dev->_frame_buffer[index1+1], (char *)&wk[0], (_width-1)*2);\n\t\t}\n\t} else if (scroll == SCROLL_LEFT) {\n\t\tuint16_t wk[_width];\n\t\tfor (int i=start;i<end;i++) {\n\t\t\tindex1 = i * _width;\n\t\t\tmemcpy((char *)wk, (char*)&dev->_frame_buffer[index1], _width*2);\n\t\t\tindex2 = index1 + _width - 1;\n\t\t\tdev->_frame_buffer[index2] = dev->_frame_buffer[index1];\n\t\t\tmemcpy((char *)&dev->_frame_buffer[index1], (char *)&wk[1], (_width-1)*2);\n\t\t}\n\t} else if (scroll == SCROLL_UP) {\n\t\tuint16_t wk;\n\t\tfor (int i=start;i<=end;i++) {\n\t\t\twk = dev->_frame_buffer[i];\n\t\t\tfor (int j=0;j<_height-1;j++) {\n\t\t\t\tindex1 = j * _width + i;\n\t\t\t\tindex2 = (j+1) * _width + i;\n\t\t\t\tdev->_frame_buffer[index1] = dev->_frame_buffer[index2];\n\t\t\t}\n\t\t\tindex2 = (_height-1) * _width + i;\n\t\t\tdev->_frame_buffer[index2] = wk;\n\t\t}\n\t} else if (scroll == SCROLL_DOWN) {\n\t\tuint16_t wk;\n\t\tfor (int i=start;i<=end;i++) {\n\t\t\tindex2 = (_height-1) * _width + i;\n\t\t\twk = dev->_frame_buffer[index2];\n\t\t\tfor (int j=_height-2;j>=0;j--) {\n\t\t\t\tindex1 = j * _width + i;\n\t\t\t\tindex2 = (j+1) * _width + i;\n\t\t\t\tdev->_frame_buffer[index2] = dev->_frame_buffer[index1];\n\t\t\t}\n\t\t\tdev->_frame_buffer[i] = wk;\n\t\t}\n\t}\n}\n\n// Draw Frame Buffer\nvoid lcdDrawFinish(TFT_t *dev)\n{\n\tif (dev->_use_frame_buffer == false) return;\n\n\tspi_master_write_command(dev, 0x2A); // set column(x) address\n\tspi_master_write_addr(dev, dev->_offsetx, dev->_offsetx+dev->_width-1);\n\tspi_master_write_command(dev, 0x2B); // set Page(y) address\n\tspi_master_write_addr(dev, dev->_offsety, dev->_offsety+dev->_height-1);\n\tspi_master_write_command(dev, 0x2C); // Memory Write\n\n\t//uint16_t size = dev->_width*dev->_height;\n\tuint32_t size = dev->_width*dev->_height;\n\tuint16_t *image = dev->_frame_buffer;\n\twhile (size > 0) {\n\t\t// 1024 bytes per time.\n\t\tuint16_t bs = (size > 1024) ? 1024 : size;\n\t\tspi_master_write_colors(dev, image, bs);\n\t\tsize -= bs;\n\t\timage += bs;\n\t}\n\treturn;\n}\n"
  },
  {
    "path": "Code/components/st7789/st7789.h",
    "content": "#ifndef MAIN_ST7789_H_\n#define MAIN_ST7789_H_\n\n#include \"driver/spi_master.h\"\n#include \"fontx.h\"\n\n#define rgb565(r, g, b) (((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3))\n\n#define RED    rgb565(255,   0,   0) // 0xf800\n#define GREEN  rgb565(  0, 255,   0) // 0x07e0\n#define BLUE   rgb565(0, 71, 171) // 0x001f #define COBALT\n#define BLACK  rgb565(  0,   0,   0) // 0x0000\n#define WHITE  rgb565(255, 255, 255) // 0xffff\n#define GRAY   rgb565(128, 128, 128) // 0x8410\n#define YELLOW rgb565(255, 255,   0) // 0xFFE0\n#define CYAN   rgb565(  0, 156, 209) // 0x04FA\n#define PURPLE rgb565(128,   0, 128) // 0x8010\n\ntypedef enum {DIRECTION0, DIRECTION90, DIRECTION180, DIRECTION270} DIRECTION;\n\ntypedef enum {\n\tSCROLL_RIGHT = 1,\n\tSCROLL_LEFT = 2,\n\tSCROLL_DOWN = 3,\n\tSCROLL_UP = 4,\n} SCROLL_TYPE_t;\n\ntypedef struct {\n\tuint16_t _width;\n\tuint16_t _height;\n\tuint16_t _offsetx;\n\tuint16_t _offsety;\n\tuint16_t _font_direction;\n\tuint16_t _font_fill;\n\tuint16_t _font_fill_color;\n\tuint16_t _font_underline;\n\tuint16_t _font_underline_color;\n\tint16_t _dc;\n\tint16_t _bl;\n\tspi_device_handle_t _SPIHandle;\n\tbool _use_frame_buffer;\n\tuint16_t *_frame_buffer;\n} TFT_t;\n\nvoid spi_master_init(TFT_t * dev, int16_t GPIO_MOSI, int16_t GPIO_SCLK, int16_t GPIO_CS, int16_t GPIO_DC, int16_t GPIO_RESET, int16_t GPIO_BL);\nbool spi_master_write_byte(spi_device_handle_t SPIHandle, const uint8_t* Data, size_t DataLength);\nbool spi_master_write_command(TFT_t * dev, uint8_t cmd);\nbool spi_master_write_data_byte(TFT_t * dev, uint8_t data);\nbool spi_master_write_data_word(TFT_t * dev, uint16_t data);\nbool spi_master_write_addr(TFT_t * dev, uint16_t addr1, uint16_t addr2);\nbool spi_master_write_color(TFT_t * dev, uint16_t color, uint16_t size);\nbool spi_master_write_colors(TFT_t * dev, uint16_t * colors, uint16_t size);\n\nvoid delayMS(int ms);\nvoid lcdInit(TFT_t * dev, int width, int height, int offsetx, int offsety);\nvoid lcdDrawPixel(TFT_t * dev, uint16_t x, uint16_t y, uint16_t color);\nvoid lcdDrawMultiPixels(TFT_t * dev, uint16_t x, uint16_t y, uint16_t size, uint16_t * colors);\nvoid lcdDrawFillRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color);\nvoid lcdDisplayOff(TFT_t * dev);\nvoid lcdDisplayOn(TFT_t * dev);\nvoid lcdFillScreen(TFT_t * dev, uint16_t color);\nvoid lcdDrawLine(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color);\nvoid lcdDrawRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color);\nvoid lcdDrawRectAngle(TFT_t * dev, uint16_t xc, uint16_t yc, uint16_t w, uint16_t h, uint16_t angle, uint16_t color);\nvoid lcdDrawTriangle(TFT_t * dev, uint16_t xc, uint16_t yc, uint16_t w, uint16_t h, uint16_t angle, uint16_t color);\nvoid lcdDrawRegularPolygon(TFT_t *dev, uint16_t xc, uint16_t yc, uint16_t n, uint16_t r, uint16_t angle, uint16_t color);\nvoid lcdDrawCircle(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t r, uint16_t color);\nvoid lcdDrawFillCircle(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t r, uint16_t color);\nvoid lcdDrawRoundRect(TFT_t * dev, uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t r, uint16_t color);\nvoid lcdDrawArrow(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t w, uint16_t color);\nvoid lcdDrawFillArrow(TFT_t * dev, uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t w, uint16_t color);\nint lcdDrawChar(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, uint8_t ascii, uint16_t color);\nint lcdDrawString(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, uint8_t * ascii, uint16_t color);\nint lcdDrawCode(TFT_t * dev, FontxFile *fx, uint16_t x,uint16_t y,uint8_t code,uint16_t color);\n//int lcdDrawUTF8Char(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, uint8_t *utf8, uint16_t color);\n//int lcdDrawUTF8String(TFT_t * dev, FontxFile *fx, uint16_t x, uint16_t y, unsigned char *utfs, uint16_t color);\nvoid lcdSetFontDirection(TFT_t * dev, uint16_t);\nvoid lcdSetFontFill(TFT_t * dev, uint16_t color);\nvoid lcdUnsetFontFill(TFT_t * dev);\nvoid lcdSetFontUnderLine(TFT_t * dev, uint16_t color);\nvoid lcdUnsetFontUnderLine(TFT_t * dev);\nvoid lcdBacklightOff(TFT_t * dev);\nvoid lcdBacklightOn(TFT_t * dev);\nvoid lcdInversionOff(TFT_t * dev);\nvoid lcdInversionOn(TFT_t * dev);\nvoid lcdWrapArround(TFT_t * dev, SCROLL_TYPE_t scroll, int start, int end);\nvoid lcdDrawFinish(TFT_t *dev);\n#endif /* MAIN_ST7789_H_ */\n\n"
  },
  {
    "path": "Code/main/CMakeLists.txt",
    "content": "set(srcs \"main.c\"\n    \"decode_png.c\"\n    \"pngle.c\"\n    \"bme680.c\" \n    \"i2cdev.c\" \n    \"VL53L1X_api.c\" \n    \"VL53L1X_calibration.c\" \n    \"RdWr_Byte.c\"\n    \"ds3231.c\"\n    \"icm42670.c\"\n    \"mcp342x.c\"\n    )\n\nidf_component_register(SRCS ${srcs} INCLUDE_DIRS \".\")\n"
  },
  {
    "path": "Code/main/RdWr_Byte.c",
    "content": "#include \"driver/i2c.h\"\n#include \"vl53l1_platform.h\"\n\n#define I2C_MASTER_SCL_IO           19          // SCL pin\n#define I2C_MASTER_SDA_IO           18          // SDA pin\n#define I2C_MASTER_NUM              I2C_NUM_0   // I2C port number\n#define I2C_MASTER_FREQ_HZ          400000      // I2C frequency\n#define VL53L1X_I2C_ADDRESS         0x29        // Default I2C address of VL53L1X (7-bit address)\n\n#define I2C_MASTER_NUM I2C_NUM_0 // Use I2C port 0\n\nint8_t VL53L1_RdByte(uint16_t dev, uint16_t index, uint8_t *data) {\n    i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n    i2c_master_start(cmd);\n    i2c_master_write_byte(cmd, (VL53L1X_I2C_ADDRESS << 1) | I2C_MASTER_WRITE, true);\n    i2c_master_write_byte(cmd, (index >> 8) & 0xFF, true); // MSB of the register address\n    i2c_master_write_byte(cmd, index & 0xFF, true); // LSB of the register address\n    i2c_master_start(cmd); // Repeated start condition\n    i2c_master_write_byte(cmd, (VL53L1X_I2C_ADDRESS << 1) | I2C_MASTER_READ, true);\n    i2c_master_read_byte(cmd, data, I2C_MASTER_NACK);\n    i2c_master_stop(cmd);\n    esp_err_t ret = i2c_master_cmd_begin(I2C_MASTER_NUM, cmd, 1000 / portTICK_PERIOD_MS);\n    i2c_cmd_link_delete(cmd);\n    return ret == ESP_OK ? 0 : -1;\n}\n\nint8_t VL53L1_WrByte(uint16_t dev, uint16_t index, uint8_t data) {\n    i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n    i2c_master_start(cmd);\n    i2c_master_write_byte(cmd, (VL53L1X_I2C_ADDRESS << 1) | I2C_MASTER_WRITE, true);\n    i2c_master_write_byte(cmd, (index >> 8) & 0xFF, true); // MSB of the register address\n    i2c_master_write_byte(cmd, index & 0xFF, true); // LSB of the register address\n    i2c_master_write_byte(cmd, data, true);\n    i2c_master_stop(cmd);\n    esp_err_t ret = i2c_master_cmd_begin(I2C_MASTER_NUM, cmd, 1000 / portTICK_PERIOD_MS);\n    i2c_cmd_link_delete(cmd);\n    return ret == ESP_OK ? 0 : -1;\n}\n\nint8_t VL53L1_RdWord(uint16_t dev, uint16_t index, uint16_t *data) {\n    uint8_t msb, lsb;\n    i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n    esp_err_t ret = ESP_FAIL;\n\n    // Start condition and device address + write bit\n    i2c_master_start(cmd);\n    i2c_master_write_byte(cmd, (VL53L1X_I2C_ADDRESS << 1) | I2C_MASTER_WRITE, true);\n\n    // Register address (high byte and then low byte)\n    i2c_master_write_byte(cmd, (index >> 8) & 0xFF, true);\n    i2c_master_write_byte(cmd, index & 0xFF, true);\n\n    // Repeated start condition, device address + read bit\n    i2c_master_start(cmd);\n    i2c_master_write_byte(cmd, (VL53L1X_I2C_ADDRESS << 1) | I2C_MASTER_READ, true);\n\n    // Read MSB and LSB\n    i2c_master_read_byte(cmd, &msb, I2C_MASTER_ACK);\n    i2c_master_read_byte(cmd, &lsb, I2C_MASTER_NACK);\n    i2c_master_stop(cmd);\n\n    // Execute the command\n    ret = i2c_master_cmd_begin(I2C_MASTER_NUM, cmd, 1000 / portTICK_PERIOD_MS);\n    i2c_cmd_link_delete(cmd);\n\n    if (ret == ESP_OK) {\n        *data = ((uint16_t)msb << 8) | (uint16_t)lsb;\n        return 0;\n    } else {\n        return -1;\n    }\n}\n"
  },
  {
    "path": "Code/main/VL53L1X_api.c",
    "content": "/*\n Copyright (c) 2017, STMicroelectronics - All Rights Reserved\n\n This file : part of VL53L1 Core and : dual licensed,\n either 'STMicroelectronics\n Proprietary license'\n or 'BSD 3-clause \"New\" or \"Revised\" License' , at your option.\n\n*******************************************************************************\n\n 'STMicroelectronics Proprietary license'\n\n*******************************************************************************\n\n License terms: STMicroelectronics Proprietary in accordance with licensing\n terms at www.st.com/sla0081\n\n STMicroelectronics confidential\n Reproduction and Communication of this document : strictly prohibited unless\n specifically authorized in writing by STMicroelectronics.\n\n\n*******************************************************************************\n\n Alternatively, VL53L1 Core may be distributed under the terms of\n 'BSD 3-clause \"New\" or \"Revised\" License', in which case the following\n provisions apply instead of the ones mentioned above :\n\n*******************************************************************************\n\n License terms: BSD 3-clause \"New\" or \"Revised\" License.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*******************************************************************************\n*/\n\n/**\n * @file  vl53l1x_api.c\n * @brief Functions implementation\n */\n\n#include \"VL53L1X_api.h\"\n#include <string.h>\n\n#if 0\nuint8_t VL51L1X_NVM_CONFIGURATION[] = {\n0x00, /* 0x00 : not user-modifiable */\n0x29, /* 0x01 : 7 bits I2C address (default=0x29), use SetI2CAddress(). Warning: after changing the register value to a new I2C address, the device will only answer to the new address */\n0x00, /* 0x02 : not user-modifiable */\n0x00, /* 0x03 : not user-modifiable */\n0x00, /* 0x04 : not user-modifiable */\n0x00, /* 0x05 : not user-modifiable */\n0x00, /* 0x06 : not user-modifiable */\n0x00, /* 0x07 : not user-modifiable */\n0x00, /* 0x08 : not user-modifiable */\n0x50, /* 0x09 : not user-modifiable */\n0x00, /* 0x0A : not user-modifiable */\n0x00, /* 0x0B : not user-modifiable */\n0x00, /* 0x0C : not user-modifiable */\n0x00, /* 0x0D : not user-modifiable */\n0x0a, /* 0x0E : not user-modifiable */\n0x00, /* 0x0F : not user-modifiable */\n0x00, /* 0x10 : not user-modifiable */\n0x00, /* 0x11 : not user-modifiable */\n0x00, /* 0x12 : not user-modifiable */\n0x00, /* 0x13 : not user-modifiable */\n0x00, /* 0x14 : not user-modifiable */\n0x00, /* 0x15 : not user-modifiable */\n0x00, /* 0x16 : Xtalk calibration value MSB (7.9 format in kcps), use SetXtalk() */\n0x00, /* 0x17 : Xtalk calibration value LSB */\n0x00, /* 0x18 : not user-modifiable */\n0x00, /* 0x19 : not user-modifiable */\n0x00, /* 0x1a : not user-modifiable */\n0x00, /* 0x1b : not user-modifiable */\n0x00, /* 0x1e : Part to Part offset x4 MSB (in mm), use SetOffset() */\n0x50, /* 0x1f : Part to Part offset x4 LSB */\n0x00, /* 0x20 : not user-modifiable */\n0x00, /* 0x21 : not user-modifiable */\n0x00, /* 0x22 : not user-modifiable */\n0x00, /* 0x23 : not user-modifiable */\n}\n#endif\n\nconst uint8_t VL51L1X_DEFAULT_CONFIGURATION[] = {\n0x00, /* 0x2d : set bit 2 and 5 to 1 for fast plus mode (1MHz I2C), else don't touch */\n0x00, /* 0x2e : bit 0 if I2C pulled up at 1.8V, else set bit 0 to 1 (pull up at AVDD) */\n0x00, /* 0x2f : bit 0 if GPIO pulled up at 1.8V, else set bit 0 to 1 (pull up at AVDD) */\n0x01, /* 0x30 : set bit 4 to 0 for active high interrupt and 1 for active low (bits 3:0 must be 0x1), use SetInterruptPolarity() */\n0x02, /* 0x31 : bit 1 = interrupt depending on the polarity, use CheckForDataReady() */\n0x00, /* 0x32 : not user-modifiable */\n0x02, /* 0x33 : not user-modifiable */\n0x08, /* 0x34 : not user-modifiable */\n0x00, /* 0x35 : not user-modifiable */\n0x08, /* 0x36 : not user-modifiable */\n0x10, /* 0x37 : not user-modifiable */\n0x01, /* 0x38 : not user-modifiable */\n0x01, /* 0x39 : not user-modifiable */\n0x00, /* 0x3a : not user-modifiable */\n0x00, /* 0x3b : not user-modifiable */\n0x00, /* 0x3c : not user-modifiable */\n0x00, /* 0x3d : not user-modifiable */\n0xff, /* 0x3e : not user-modifiable */\n0x00, /* 0x3f : not user-modifiable */\n0x0F, /* 0x40 : not user-modifiable */\n0x00, /* 0x41 : not user-modifiable */\n0x00, /* 0x42 : not user-modifiable */\n0x00, /* 0x43 : not user-modifiable */\n0x00, /* 0x44 : not user-modifiable */\n0x00, /* 0x45 : not user-modifiable */\n0x20, /* 0x46 : interrupt configuration 0->level low detection, 1-> level high, 2-> Out of window, 3->In window, 0x20-> New sample ready , TBC */\n0x0b, /* 0x47 : not user-modifiable */\n0x00, /* 0x48 : not user-modifiable */\n0x00, /* 0x49 : not user-modifiable */\n0x02, /* 0x4a : not user-modifiable */\n0x0a, /* 0x4b : not user-modifiable */\n0x21, /* 0x4c : not user-modifiable */\n0x00, /* 0x4d : not user-modifiable */\n0x00, /* 0x4e : not user-modifiable */\n0x05, /* 0x4f : not user-modifiable */\n0x00, /* 0x50 : not user-modifiable */\n0x00, /* 0x51 : not user-modifiable */\n0x00, /* 0x52 : not user-modifiable */\n0x00, /* 0x53 : not user-modifiable */\n0xc8, /* 0x54 : not user-modifiable */\n0x00, /* 0x55 : not user-modifiable */\n0x00, /* 0x56 : not user-modifiable */\n0x38, /* 0x57 : not user-modifiable */\n0xff, /* 0x58 : not user-modifiable */\n0x01, /* 0x59 : not user-modifiable */\n0x00, /* 0x5a : not user-modifiable */\n0x08, /* 0x5b : not user-modifiable */\n0x00, /* 0x5c : not user-modifiable */\n0x00, /* 0x5d : not user-modifiable */\n0x01, /* 0x5e : not user-modifiable */\n0xcc, /* 0x5f : not user-modifiable */\n0x0f, /* 0x60 : not user-modifiable */\n0x01, /* 0x61 : not user-modifiable */\n0xf1, /* 0x62 : not user-modifiable */\n0x0d, /* 0x63 : not user-modifiable */\n0x01, /* 0x64 : Sigma threshold MSB (mm in 14.2 format for MSB+LSB), use SetSigmaThreshold(), default value 90 mm  */\n0x68, /* 0x65 : Sigma threshold LSB */\n0x00, /* 0x66 : Min count Rate MSB (MCPS in 9.7 format for MSB+LSB), use SetSignalThreshold() */\n0x80, /* 0x67 : Min count Rate LSB */\n0x08, /* 0x68 : not user-modifiable */\n0xb8, /* 0x69 : not user-modifiable */\n0x00, /* 0x6a : not user-modifiable */\n0x00, /* 0x6b : not user-modifiable */\n0x00, /* 0x6c : Intermeasurement period MSB, 32 bits register, use SetIntermeasurementInMs() */\n0x00, /* 0x6d : Intermeasurement period */\n0x0f, /* 0x6e : Intermeasurement period */\n0x89, /* 0x6f : Intermeasurement period LSB */\n0x00, /* 0x70 : not user-modifiable */\n0x00, /* 0x71 : not user-modifiable */\n0x00, /* 0x72 : distance threshold high MSB (in mm, MSB+LSB), use SetD:tanceThreshold() */\n0x00, /* 0x73 : distance threshold high LSB */\n0x00, /* 0x74 : distance threshold low MSB ( in mm, MSB+LSB), use SetD:tanceThreshold() */\n0x00, /* 0x75 : distance threshold low LSB */\n0x00, /* 0x76 : not user-modifiable */\n0x01, /* 0x77 : not user-modifiable */\n0x0f, /* 0x78 : not user-modifiable */\n0x0d, /* 0x79 : not user-modifiable */\n0x0e, /* 0x7a : not user-modifiable */\n0x0e, /* 0x7b : not user-modifiable */\n0x00, /* 0x7c : not user-modifiable */\n0x00, /* 0x7d : not user-modifiable */\n0x02, /* 0x7e : not user-modifiable */\n0xc7, /* 0x7f : ROI center, use SetROI() */\n0xff, /* 0x80 : XY ROI (X=Width, Y=Height), use SetROI() */\n0x9B, /* 0x81 : not user-modifiable */\n0x00, /* 0x82 : not user-modifiable */\n0x00, /* 0x83 : not user-modifiable */\n0x00, /* 0x84 : not user-modifiable */\n0x01, /* 0x85 : not user-modifiable */\n0x00, /* 0x86 : clear interrupt, use ClearInterrupt() */\n0x00  /* 0x87 : start ranging, use StartRanging() or StopRanging(), If you want an automatic start after VL53L1X_init() call, put 0x40 in location 0x87 */\n};\n\n\nVL53L1X_ERROR VL53L1X_GetSWVersion(VL53L1X_Version_t *pVersion)\n{\n\tVL53L1X_ERROR Status = 0;\n\n\tpVersion->major = VL53L1X_IMPLEMENTATION_VER_MAJOR;\n\tpVersion->minor = VL53L1X_IMPLEMENTATION_VER_MINOR;\n\tpVersion->build = VL53L1X_IMPLEMENTATION_VER_SUB;\n\tpVersion->revision = VL53L1X_IMPLEMENTATION_VER_REVISION;\n\treturn Status;\n}\n\nVL53L1X_ERROR VL53L1X_SetI2CAddress(VL53L1_Dev_t dev, uint8_t new_address)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrByte(&dev, VL53L1_I2C_SLAVE__DEVICE_ADDRESS, new_address >> 1);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SensorInit(VL53L1_Dev_t dev)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t Addr = 0x00, tmp=0;\n\n\tfor (Addr = 0x2D; Addr <= 0x87; Addr++){\n\t\tstatus = VL53L1_WrByte(&dev, Addr, VL51L1X_DEFAULT_CONFIGURATION[Addr - 0x2D]);\n\t}\n\tstatus = VL53L1X_StartRanging(dev);\n\twhile(tmp==0){\n\t\t\tstatus = VL53L1X_CheckForDataReady(dev, &tmp);\n\t}\n\ttmp  = 0;\n\tstatus = VL53L1X_ClearInterrupt(dev);\n\tstatus = VL53L1X_StopRanging(dev);\n\tstatus = VL53L1_WrByte(&dev, VL53L1_VHV_CONFIG__TIMEOUT_MACROP_LOOP_BOUND, 0x09); /* two bounds VHV */\n\tstatus = VL53L1_WrByte(&dev, 0x0B, 0); /* start VHV from the previous temperature */\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_ClearInterrupt(VL53L1_Dev_t dev)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrByte(&dev, SYSTEM__INTERRUPT_CLEAR, 0x01);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetInterruptPolarity(VL53L1_Dev_t dev, uint8_t NewPolarity)\n{\n\tuint8_t Temp;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_RdByte(&dev, GPIO_HV_MUX__CTRL, &Temp);\n\tTemp = Temp & 0xEF;\n\tstatus = VL53L1_WrByte(&dev, GPIO_HV_MUX__CTRL, Temp | (!(NewPolarity & 1)) << 4);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetInterruptPolarity(VL53L1_Dev_t dev, uint8_t *pInterruptPolarity)\n{\n\tuint8_t Temp;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_RdByte(&dev, GPIO_HV_MUX__CTRL, &Temp);\n\tTemp = Temp & 0x10;\n\t*pInterruptPolarity = !(Temp>>4);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_StartRanging(VL53L1_Dev_t dev)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrByte(&dev, SYSTEM__MODE_START, 0x40);\t/* Enable VL53L1X */\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_StopRanging(VL53L1_Dev_t dev)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrByte(&dev, SYSTEM__MODE_START, 0x00);\t/* Disable VL53L1X */\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_CheckForDataReady(VL53L1_Dev_t dev, uint8_t *isDataReady)\n{\n\tuint8_t Temp;\n\tuint8_t IntPol;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1X_GetInterruptPolarity(dev, &IntPol);\n\tstatus = VL53L1_RdByte(&dev, GPIO__TIO_HV_STATUS, &Temp);\n\t/* Read in the register to check if a new value is available */\n\tif (status == 0){\n\t\tif ((Temp & 1) == IntPol)\n\t\t\t*isDataReady = 1;\n\t\telse\n\t\t\t*isDataReady = 0;\n\t}\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetTimingBudgetInMs(VL53L1_Dev_t dev, uint16_t TimingBudgetInMs)\n{\n\tuint16_t DM;\n\tVL53L1X_ERROR  status=0;\n\n\tstatus = VL53L1X_GetDistanceMode(dev, &DM);\n\tif (DM == 0)\n\t\treturn 1;\n\telse if (DM == 1) {\t/* Short DistanceMode */\n\t\tswitch (TimingBudgetInMs) {\n\t\tcase 15: /* only available in short distance mode */\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x01D);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x0027);\n\t\t\tbreak;\n\t\tcase 20:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x0051);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x006E);\n\t\t\tbreak;\n\t\tcase 33:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x00D6);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x006E);\n\t\t\tbreak;\n\t\tcase 50:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x1AE);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x01E8);\n\t\t\tbreak;\n\t\tcase 100:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x02E1);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x0388);\n\t\t\tbreak;\n\t\tcase 200:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x03E1);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x0496);\n\t\t\tbreak;\n\t\tcase 500:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x0591);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x05C1);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tstatus = 1;\n\t\t\tbreak;\n\t\t}\n\t} else {\n\t\tswitch (TimingBudgetInMs) {\n\t\tcase 20:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x001E);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x0022);\n\t\t\tbreak;\n\t\tcase 33:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x0060);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x006E);\n\t\t\tbreak;\n\t\tcase 50:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x00AD);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x00C6);\n\t\t\tbreak;\n\t\tcase 100:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x01CC);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x01EA);\n\t\t\tbreak;\n\t\tcase 200:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x02D9);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x02F8);\n\t\t\tbreak;\n\t\tcase 500:\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI,\n\t\t\t\t\t0x048F);\n\t\t\tVL53L1_WrWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_B_HI,\n\t\t\t\t\t0x04A4);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tstatus = 1;\n\t\t\tbreak;\n\t\t}\n\t}\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetTimingBudgetInMs(VL53L1_Dev_t dev, uint16_t *pTimingBudget)\n{\n\tuint16_t Temp;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_RdWord(&dev, RANGE_CONFIG__TIMEOUT_MACROP_A_HI, &Temp);\n\tswitch (Temp) {\n\t\tcase 0x001D :\n\t\t\t*pTimingBudget = 15;\n\t\t\tbreak;\n\t\tcase 0x0051 :\n\t\tcase 0x001E :\n\t\t\t*pTimingBudget = 20;\n\t\t\tbreak;\n\t\tcase 0x00D6 :\n\t\tcase 0x0060 :\n\t\t\t*pTimingBudget = 33;\n\t\t\tbreak;\n\t\tcase 0x1AE :\n\t\tcase 0x00AD :\n\t\t\t*pTimingBudget = 50;\n\t\t\tbreak;\n\t\tcase 0x02E1 :\n\t\tcase 0x01CC :\n\t\t\t*pTimingBudget = 100;\n\t\t\tbreak;\n\t\tcase 0x03E1 :\n\t\tcase 0x02D9 :\n\t\t\t*pTimingBudget = 200;\n\t\t\tbreak;\n\t\tcase 0x0591 :\n\t\tcase 0x048F :\n\t\t\t*pTimingBudget = 500;\n\t\t\tbreak;\n\t\tdefault:\n\t\t\t*pTimingBudget = 0;\n\t\t\tbreak;\n\t}\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetDistanceMode(VL53L1_Dev_t dev, uint16_t DM)\n{\n\tuint16_t TB;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1X_GetTimingBudgetInMs(dev, &TB);\n\tswitch (DM) {\n\tcase 1:\n\t\tstatus = VL53L1_WrByte(&dev, PHASECAL_CONFIG__TIMEOUT_MACROP, 0x14);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VCSEL_PERIOD_A, 0x07);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VCSEL_PERIOD_B, 0x05);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VALID_PHASE_HIGH, 0x38);\n\t\tstatus = VL53L1_WrWord(&dev, SD_CONFIG__WOI_SD0, 0x0705);\n\t\tstatus = VL53L1_WrWord(&dev, SD_CONFIG__INITIAL_PHASE_SD0, 0x0606);\n\t\tbreak;\n\tcase 2:\n\t\tstatus = VL53L1_WrByte(&dev, PHASECAL_CONFIG__TIMEOUT_MACROP, 0x0A);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VCSEL_PERIOD_A, 0x0F);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VCSEL_PERIOD_B, 0x0D);\n\t\tstatus = VL53L1_WrByte(&dev, RANGE_CONFIG__VALID_PHASE_HIGH, 0xB8);\n\t\tstatus = VL53L1_WrWord(&dev, SD_CONFIG__WOI_SD0, 0x0F0D);\n\t\tstatus = VL53L1_WrWord(&dev, SD_CONFIG__INITIAL_PHASE_SD0, 0x0E0E);\n\t\tbreak;\n\tdefault:\n\t\tbreak;\n\t}\n\tstatus = VL53L1X_SetTimingBudgetInMs(dev,TB);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetDistanceMode(VL53L1_Dev_t dev, uint16_t *DM)\n{\n\tuint8_t TempDM, status=0;\n\n\tstatus = VL53L1_RdByte(&dev,PHASECAL_CONFIG__TIMEOUT_MACROP, &TempDM);\n\tif (TempDM == 0x14)\n\t\t*DM=1;\n\tif(TempDM == 0x0A)\n\t\t*DM=2;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetInterMeasurementInMs(VL53L1_Dev_t dev, uint16_t InterMeasMs)\n{\n\tuint16_t ClockPLL;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_RdWord(&dev, VL53L1_RESULT__OSC_CALIBRATE_VAL, &ClockPLL);\n\tClockPLL = ClockPLL&0x3FF;\n\tVL53L1_WrDWord(&dev, VL53L1_SYSTEM__INTERMEASUREMENT_PERIOD,\n\t\t\t(uint32_t)(ClockPLL * InterMeasMs * 1.075));\n\treturn status;\n\n}\n\nVL53L1X_ERROR VL53L1X_GetInterMeasurementInMs(VL53L1_Dev_t dev, uint16_t *pIM)\n{\n\tuint16_t ClockPLL;\n\tVL53L1X_ERROR status = 0;\n\tuint32_t tmp;\n\n\tstatus = VL53L1_RdDWord(&dev,VL53L1_SYSTEM__INTERMEASUREMENT_PERIOD, &tmp);\n\t*pIM = (uint16_t)tmp;\n\tstatus = VL53L1_RdWord(&dev, VL53L1_RESULT__OSC_CALIBRATE_VAL, &ClockPLL);\n\tClockPLL = ClockPLL&0x3FF;\n\t*pIM= (uint16_t)(*pIM/(ClockPLL*1.065));\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_BootState(VL53L1_Dev_t dev, uint8_t *state)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t tmp = 0;\n\n\tstatus = VL53L1_RdByte(&dev,VL53L1_FIRMWARE__SYSTEM_STATUS, &tmp);\n\t*state = tmp;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSensorId(VL53L1_Dev_t dev, uint16_t *sensorId)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp = 0;\n\n\tstatus = VL53L1_RdWord(&dev, VL53L1_IDENTIFICATION__MODEL_ID, &tmp);\n\t*sensorId = tmp;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetDistance(VL53L1_Dev_t dev, uint16_t *distance)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = (VL53L1_RdWord(&dev,\n\t\t\tVL53L1_RESULT__FINAL_CROSSTALK_CORRECTED_RANGE_MM_SD0, &tmp));\n\t*distance = tmp;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSignalPerSpad(VL53L1_Dev_t dev, uint16_t *signalRate)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t SpNb=1, signal;\n\n\tstatus = VL53L1_RdWord(&dev,\n\t\tVL53L1_RESULT__PEAK_SIGNAL_COUNT_RATE_CROSSTALK_CORRECTED_MCPS_SD0, &signal);\n\tstatus = VL53L1_RdWord(&dev,\n\t\tVL53L1_RESULT__DSS_ACTUAL_EFFECTIVE_SPADS_SD0, &SpNb);\n\t*signalRate = (uint16_t) (2000.0*signal/SpNb);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetAmbientPerSpad(VL53L1_Dev_t dev, uint16_t *ambPerSp)\n{\n\tVL53L1X_ERROR status=0;\n\tuint16_t AmbientRate, SpNb=1;\n\n\tstatus = VL53L1_RdWord(&dev, RESULT__AMBIENT_COUNT_RATE_MCPS_SD, &AmbientRate);\n\tstatus = VL53L1_RdWord(&dev, VL53L1_RESULT__DSS_ACTUAL_EFFECTIVE_SPADS_SD0, &SpNb);\n\t*ambPerSp=(uint16_t) (2000.0 * AmbientRate / SpNb);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSignalRate(VL53L1_Dev_t dev, uint16_t *signal)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,\n\t\tVL53L1_RESULT__PEAK_SIGNAL_COUNT_RATE_CROSSTALK_CORRECTED_MCPS_SD0, &tmp);\n\t*signal = tmp*8;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSpadNb(VL53L1_Dev_t dev, uint16_t *spNb)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,\n\t\t\t      VL53L1_RESULT__DSS_ACTUAL_EFFECTIVE_SPADS_SD0, &tmp);\n\t*spNb = tmp >> 8;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetAmbientRate(VL53L1_Dev_t dev, uint16_t *ambRate)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev, RESULT__AMBIENT_COUNT_RATE_MCPS_SD, &tmp);\n\t*ambRate = tmp*8;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetRangeStatus(VL53L1_Dev_t dev, uint8_t *rangeStatus)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t RgSt;\n\n\tstatus = VL53L1_RdByte(&dev, VL53L1_RESULT__RANGE_STATUS, &RgSt);\n\tRgSt = RgSt&0x1F;\n\tswitch (RgSt) {\n\tcase 9:\n\t\tRgSt = 0;\n\t\tbreak;\n\tcase 6:\n\t\tRgSt = 1;\n\t\tbreak;\n\tcase 4:\n\t\tRgSt = 2;\n\t\tbreak;\n\tcase 8:\n\t\tRgSt = 3;\n\t\tbreak;\n\tcase 5:\n\t\tRgSt = 4;\n\t\tbreak;\n\tcase 3:\n\t\tRgSt = 5;\n\t\tbreak;\n\tcase 19:\n\t\tRgSt = 6;\n\t\tbreak;\n\tcase 7:\n\t\tRgSt = 7;\n\t\tbreak;\n\tcase 12:\n\t\tRgSt = 9;\n\t\tbreak;\n\tcase 18:\n\t\tRgSt = 10;\n\t\tbreak;\n\tcase 22:\n\t\tRgSt = 11;\n\t\tbreak;\n\tcase 23:\n\t\tRgSt = 12;\n\t\tbreak;\n\tcase 13:\n\t\tRgSt = 13;\n\t\tbreak;\n\tdefault:\n\t\tRgSt = 255;\n\t\tbreak;\n\t}\n\t*rangeStatus = RgSt;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetOffset(VL53L1_Dev_t dev, int16_t OffsetValue)\n{\n\tVL53L1X_ERROR status = 0;\n\tint16_t Temp;\n\n\tTemp = (OffsetValue*4);\n\tVL53L1_WrWord(&dev, ALGO__PART_TO_PART_RANGE_OFFSET_MM,\n\t\t\t(uint16_t)Temp);\n\tVL53L1_WrWord(&dev, MM_CONFIG__INNER_OFFSET_MM, 0x0);\n\tVL53L1_WrWord(&dev, MM_CONFIG__OUTER_OFFSET_MM, 0x0);\n\treturn status;\n}\n\nVL53L1X_ERROR  VL53L1X_GetOffset(VL53L1_Dev_t dev, int16_t *offset)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t Temp;\n\n\tstatus = VL53L1_RdWord(&dev,ALGO__PART_TO_PART_RANGE_OFFSET_MM, &Temp);\n\tTemp = Temp<<3;\n\tTemp = Temp >>5;\n\t*offset = (int16_t)(Temp);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetXtalk(VL53L1_Dev_t dev, uint16_t XtalkValue)\n{\n/* XTalkValue in count per second to avoid float type */\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrWord(&dev,\n\t\t\tALGO__CROSSTALK_COMPENSATION_X_PLANE_GRADIENT_KCPS,\n\t\t\t0x0000);\n\tstatus = VL53L1_WrWord(&dev, ALGO__CROSSTALK_COMPENSATION_Y_PLANE_GRADIENT_KCPS,\n\t\t\t0x0000);\n\tstatus = VL53L1_WrWord(&dev, ALGO__CROSSTALK_COMPENSATION_PLANE_OFFSET_KCPS,\n\t\t\t(XtalkValue<<9)/1000); /* * << 9 (7.9 format) and /1000 to convert cps to kpcs */\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetXtalk(VL53L1_Dev_t dev, uint16_t *xtalk )\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,ALGO__CROSSTALK_COMPENSATION_PLANE_OFFSET_KCPS, &tmp);\n\t*xtalk = (tmp*1000)>>9; /* * 1000 to convert kcps to cps and >> 9 (7.9 format) */\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetDistanceThreshold(VL53L1_Dev_t dev, uint16_t ThreshLow,\n\t\t\t      uint16_t ThreshHigh, uint8_t Window,\n\t\t\t      uint8_t IntOnNoTarget)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t Temp = 0;\n\n\tstatus = VL53L1_RdByte(&dev, SYSTEM__INTERRUPT_CONFIG_GPIO, &Temp);\n\tTemp = Temp & 0x47;\n\tif (IntOnNoTarget == 0) {\n\t\tstatus = VL53L1_WrByte(&dev, SYSTEM__INTERRUPT_CONFIG_GPIO,\n\t\t\t       (Temp | (Window & 0x07)));\n\t} else {\n\t\tstatus = VL53L1_WrByte(&dev, SYSTEM__INTERRUPT_CONFIG_GPIO,\n\t\t\t       ((Temp | (Window & 0x07)) | 0x40));\n\t}\n\tstatus = VL53L1_WrWord(&dev, SYSTEM__THRESH_HIGH, ThreshHigh);\n\tstatus = VL53L1_WrWord(&dev, SYSTEM__THRESH_LOW, ThreshLow);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdWindow(VL53L1_Dev_t dev, uint16_t *window)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t tmp;\n\tstatus = VL53L1_RdByte(&dev,SYSTEM__INTERRUPT_CONFIG_GPIO, &tmp);\n\t*window = (uint16_t)(tmp & 0x7);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdLow(VL53L1_Dev_t dev, uint16_t *low)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,SYSTEM__THRESH_LOW, &tmp);\n\t*low = tmp;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdHigh(VL53L1_Dev_t dev, uint16_t *high)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,SYSTEM__THRESH_HIGH, &tmp);\n\t*high = tmp;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetROI(VL53L1_Dev_t dev, uint16_t X, uint16_t Y)\n{\n\tuint8_t OpticalCenter;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus =VL53L1_RdByte(&dev, VL53L1_ROI_CONFIG__MODE_ROI_CENTRE_SPAD, &OpticalCenter);\n\tif (X > 16)\n\t\tX = 16;\n\tif (Y > 16)\n\t\tY = 16;\n\tif (X > 10 || Y > 10){\n\t\tOpticalCenter = 199;\n\t}\n\tstatus = VL53L1_WrByte(&dev, ROI_CONFIG__USER_ROI_CENTRE_SPAD, OpticalCenter);\n\tstatus = VL53L1_WrByte(&dev, ROI_CONFIG__USER_ROI_REQUESTED_GLOBAL_XY_SIZE,\n\t\t       (Y - 1) << 4 | (X - 1));\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetROI_XY(VL53L1_Dev_t dev, uint16_t *ROI_X, uint16_t *ROI_Y)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t tmp;\n\n\tstatus = VL53L1_RdByte(&dev,ROI_CONFIG__USER_ROI_REQUESTED_GLOBAL_XY_SIZE, &tmp);\n\t*ROI_X = ((uint16_t)tmp & 0x0F) + 1;\n\t*ROI_Y = (((uint16_t)tmp & 0xF0) >> 4) + 1;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetSignalThreshold(VL53L1_Dev_t dev, uint16_t Signal)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tVL53L1_WrWord(&dev,RANGE_CONFIG__MIN_COUNT_RATE_RTN_LIMIT_MCPS,Signal>>3);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSignalThreshold(VL53L1_Dev_t dev, uint16_t *signal)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,\n\t\t\t\tRANGE_CONFIG__MIN_COUNT_RATE_RTN_LIMIT_MCPS, &tmp);\n\t*signal = tmp <<3;\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_SetSigmaThreshold(VL53L1_Dev_t dev, uint16_t Sigma)\n{\n\tVL53L1X_ERROR status = 0;\n\n\tif(Sigma>(0xFFFF>>2)){\n\t\treturn 1;\n\t}\n\t/* 16 bits register 14.2 format */\n\tstatus = VL53L1_WrWord(&dev,RANGE_CONFIG__SIGMA_THRESH,Sigma<<2);\n\treturn status;\n}\n\nVL53L1X_ERROR VL53L1X_GetSigmaThreshold(VL53L1_Dev_t dev, uint16_t *sigma)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint16_t tmp;\n\n\tstatus = VL53L1_RdWord(&dev,RANGE_CONFIG__SIGMA_THRESH, &tmp);\n\t*sigma = tmp >> 2;\n\treturn status;\n\n}\n\nVL53L1X_ERROR VL53L1X_StartTemperatureUpdate(VL53L1_Dev_t dev)\n{\n\tVL53L1X_ERROR status = 0;\n\tuint8_t tmp=0;\n\n\tstatus = VL53L1_WrByte(&dev,VL53L1_VHV_CONFIG__TIMEOUT_MACROP_LOOP_BOUND,0x81); /* full VHV */\n\tstatus = VL53L1_WrByte(&dev,0x0B,0x92);\n\tstatus = VL53L1X_StartRanging(dev);\n\twhile(tmp==0){\n\t\tstatus = VL53L1X_CheckForDataReady(dev, &tmp);\n\t}\n\ttmp  = 0;\n\tstatus = VL53L1X_ClearInterrupt(dev);\n\tstatus = VL53L1X_StopRanging(dev);\n\tstatus = VL53L1_WrByte(&dev, VL53L1_VHV_CONFIG__TIMEOUT_MACROP_LOOP_BOUND, 0x09); /* two bounds VHV */\n\tstatus = VL53L1_WrByte(&dev, 0x0B, 0); /* start VHV from the previous temperature */\n\treturn status;\n}\n\n\n"
  },
  {
    "path": "Code/main/VL53L1X_api.h",
    "content": "/*\n* Copyright (c) 2017, STMicroelectronics - All Rights Reserved\n*\n* This file : part of VL53L1 Core and : dual licensed,\n* either 'STMicroelectronics\n* Proprietary license'\n* or 'BSD 3-clause \"New\" or \"Revised\" License' , at your option.\n*\n********************************************************************************\n*\n* 'STMicroelectronics Proprietary license'\n*\n********************************************************************************\n*\n* License terms: STMicroelectronics Proprietary in accordance with licensing\n* terms at www.st.com/sla0081\n*\n* STMicroelectronics confidential\n* Reproduction and Communication of this document : strictly prohibited unless\n* specifically authorized in writing by STMicroelectronics.\n*\n*\n********************************************************************************\n*\n* Alternatively, VL53L1 Core may be distributed under the terms of\n* 'BSD 3-clause \"New\" or \"Revised\" License', in which case the following\n* provisions apply instead of the ones mentioned above :\n*\n********************************************************************************\n*\n* License terms: BSD 3-clause \"New\" or \"Revised\" License.\n*\n* Redistribution and use in source and binary forms, with or without\n* modification, are permitted provided that the following conditions are met:\n*\n* 1. Redistributions of source code must retain the above copyright notice, this\n* list of conditions and the following disclaimer.\n*\n* 2. Redistributions in binary form must reproduce the above copyright notice,\n* this list of conditions and the following disclaimer in the documentation\n* and/or other materials provided with the distribution.\n*\n* 3. Neither the name of the copyright holder nor the names of its contributors\n* may be used to endorse or promote products derived from this software\n* without specific prior written permission.\n*\n* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*\n*\n********************************************************************************\n*\n*/\n\n/**\n * @file  vl53l1x_api.h\n * @brief Functions definition\n */\n\n#ifndef _API_H_\n#define _API_H_\n\n#include \"vl53l1_platform.h\"\n\n#define VL53L1X_IMPLEMENTATION_VER_MAJOR       1\n#define VL53L1X_IMPLEMENTATION_VER_MINOR       0\n#define VL53L1X_IMPLEMENTATION_VER_SUB         2\n#define VL53L1X_IMPLEMENTATION_VER_REVISION  0000\n\ntypedef int8_t VL53L1X_ERROR;\n\n#define SOFT_RESET\t\t\t\t\t\t\t\t\t\t\t0x0000\n#define VL53L1_I2C_SLAVE__DEVICE_ADDRESS\t\t\t\t\t0x0001\n#define VL53L1_VHV_CONFIG__TIMEOUT_MACROP_LOOP_BOUND        0x0008\n#define ALGO__CROSSTALK_COMPENSATION_PLANE_OFFSET_KCPS \t\t0x0016\n#define ALGO__CROSSTALK_COMPENSATION_X_PLANE_GRADIENT_KCPS \t0x0018\n#define ALGO__CROSSTALK_COMPENSATION_Y_PLANE_GRADIENT_KCPS \t0x001A\n#define ALGO__PART_TO_PART_RANGE_OFFSET_MM\t\t\t\t\t0x001E\n#define MM_CONFIG__INNER_OFFSET_MM\t\t\t\t\t\t\t0x0020\n#define MM_CONFIG__OUTER_OFFSET_MM \t\t\t\t\t\t\t0x0022\n#define GPIO_HV_MUX__CTRL\t\t\t\t\t\t\t\t\t0x0030\n#define GPIO__TIO_HV_STATUS       \t\t\t\t\t\t\t0x0031\n#define SYSTEM__INTERRUPT_CONFIG_GPIO \t\t\t\t\t\t0x0046\n#define PHASECAL_CONFIG__TIMEOUT_MACROP     \t\t\t\t0x004B\n#define RANGE_CONFIG__TIMEOUT_MACROP_A_HI   \t\t\t\t0x005E\n#define RANGE_CONFIG__VCSEL_PERIOD_A        \t\t\t\t0x0060\n#define RANGE_CONFIG__VCSEL_PERIOD_B\t\t\t\t\t\t0x0063\n#define RANGE_CONFIG__TIMEOUT_MACROP_B_HI  \t\t\t\t\t0x0061\n#define RANGE_CONFIG__TIMEOUT_MACROP_B_LO  \t\t\t\t\t0x0062\n#define RANGE_CONFIG__SIGMA_THRESH \t\t\t\t\t\t\t0x0064\n#define RANGE_CONFIG__MIN_COUNT_RATE_RTN_LIMIT_MCPS\t\t\t0x0066\n#define RANGE_CONFIG__VALID_PHASE_HIGH      \t\t\t\t0x0069\n#define VL53L1_SYSTEM__INTERMEASUREMENT_PERIOD\t\t\t\t0x006C\n#define SYSTEM__THRESH_HIGH \t\t\t\t\t\t\t\t0x0072\n#define SYSTEM__THRESH_LOW \t\t\t\t\t\t\t\t\t0x0074\n#define SD_CONFIG__WOI_SD0                  \t\t\t\t0x0078\n#define SD_CONFIG__INITIAL_PHASE_SD0        \t\t\t\t0x007A\n#define ROI_CONFIG__USER_ROI_CENTRE_SPAD\t\t\t\t\t0x007F\n#define ROI_CONFIG__USER_ROI_REQUESTED_GLOBAL_XY_SIZE\t\t0x0080\n#define SYSTEM__SEQUENCE_CONFIG\t\t\t\t\t\t\t\t0x0081\n#define VL53L1_SYSTEM__GROUPED_PARAMETER_HOLD \t\t\t\t0x0082\n#define SYSTEM__INTERRUPT_CLEAR       \t\t\t\t\t\t0x0086\n#define SYSTEM__MODE_START                 \t\t\t\t\t0x0087\n#define VL53L1_RESULT__RANGE_STATUS\t\t\t\t\t\t\t0x0089\n#define VL53L1_RESULT__DSS_ACTUAL_EFFECTIVE_SPADS_SD0\t\t0x008C\n#define RESULT__AMBIENT_COUNT_RATE_MCPS_SD\t\t\t\t\t0x0090\n#define VL53L1_RESULT__FINAL_CROSSTALK_CORRECTED_RANGE_MM_SD0\t\t\t\t0x0096\n#define VL53L1_RESULT__PEAK_SIGNAL_COUNT_RATE_CROSSTALK_CORRECTED_MCPS_SD0 \t0x0098\n#define VL53L1_RESULT__OSC_CALIBRATE_VAL\t\t\t\t\t0x00DE\n#define VL53L1_FIRMWARE__SYSTEM_STATUS                      0x00E5\n#define VL53L1_IDENTIFICATION__MODEL_ID                     0x010F\n#define VL53L1_ROI_CONFIG__MODE_ROI_CENTRE_SPAD\t\t\t\t0x013E\n\n/****************************************\n * PRIVATE define do not edit\n ****************************************/\n\n/**\n *  @brief defines SW Version\n */\ntypedef struct {\n\tuint8_t      major;    /*!< major number */\n\tuint8_t      minor;    /*!< minor number */\n\tuint8_t      build;    /*!< build number */\n\tuint32_t     revision; /*!< revision number */\n} VL53L1X_Version_t;\n\n/**\n * @brief This function returns the SW driver version\n */\nVL53L1X_ERROR VL53L1X_GetSWVersion(VL53L1X_Version_t *pVersion);\n\n/**\n * @brief This function sets the sensor I2C address used in case multiple devices application, default address 0x52\n */\nVL53L1X_ERROR VL53L1X_SetI2CAddress(VL53L1_Dev_t, uint8_t new_address);\n\n/**\n * @brief This function loads the 135 bytes default values to initialize the sensor.\n * @param dev Device address\n * @return 0:success, != 0:failed\n */\nVL53L1X_ERROR VL53L1X_SensorInit(VL53L1_Dev_t dev);\n\n/**\n * @brief This function clears the interrupt, to be called after a ranging data reading\n * to arm the interrupt for the next data ready event.\n */\nVL53L1X_ERROR VL53L1X_ClearInterrupt(VL53L1_Dev_t dev);\n\n/**\n * @brief This function programs the interrupt polarity\\n\n * 1=active high (default), 0=active low\n */\nVL53L1X_ERROR VL53L1X_SetInterruptPolarity(VL53L1_Dev_t dev, uint8_t IntPol);\n\n/**\n * @brief This function returns the current interrupt polarity\\n\n * 1=active high (default), 0=active low\n */\nVL53L1X_ERROR VL53L1X_GetInterruptPolarity(VL53L1_Dev_t dev, uint8_t *pIntPol);\n\n/**\n * @brief This function starts the ranging distance operation\\n\n * The ranging operation is continuous. The clear interrupt has to be done after each get data to allow the interrupt to raise when the next data is ready\\n\n * 1=active high (default), 0=active low, use SetInterruptPolarity() to change the interrupt polarity if required.\n */\nVL53L1X_ERROR VL53L1X_StartRanging(VL53L1_Dev_t dev);\n\n/**\n * @brief This function stops the ranging.\n */\nVL53L1X_ERROR VL53L1X_StopRanging(VL53L1_Dev_t dev);\n\n/**\n * @brief This function checks if the new ranging data is available by polling the dedicated register.\n * @param : isDataReady==0 -> not ready; isDataReady==1 -> ready\n */\nVL53L1X_ERROR VL53L1X_CheckForDataReady(VL53L1_Dev_t dev, uint8_t *isDataReady);\n\n/**\n * @brief This function programs the timing budget in ms.\n * Predefined values = 15, 20, 33, 50, 100(default), 200, 500.\n */\nVL53L1X_ERROR VL53L1X_SetTimingBudgetInMs(VL53L1_Dev_t dev, uint16_t TimingBudgetInMs);\n\n/**\n * @brief This function returns the current timing budget in ms.\n */\nVL53L1X_ERROR VL53L1X_GetTimingBudgetInMs(VL53L1_Dev_t dev, uint16_t *pTimingBudgetInMs);\n\n/**\n * @brief This function programs the distance mode (1=short, 2=long(default)).\n * Short mode max distance is limited to 1.3 m but better ambient immunity.\\n\n * Long mode can range up to 4 m in the dark with 200 ms timing budget.\n */\nVL53L1X_ERROR VL53L1X_SetDistanceMode(VL53L1_Dev_t dev, uint16_t DistanceMode);\n\n/**\n * @brief This function returns the current distance mode (1=short, 2=long).\n */\nVL53L1X_ERROR VL53L1X_GetDistanceMode(VL53L1_Dev_t dev, uint16_t *pDistanceMode);\n\n/**\n * @brief This function programs the Intermeasurement period in ms\\n\n * Intermeasurement period must be >/= timing budget. This condition is not checked by the API,\n * the customer has the duty to check the condition. Default = 100 ms\n */\nVL53L1X_ERROR VL53L1X_SetInterMeasurementInMs(VL53L1_Dev_t dev,\n\t\t\t\t\t uint16_t InterMeasurementInMs);\n\n/**\n * @brief This function returns the Intermeasurement period in ms.\n */\nVL53L1X_ERROR VL53L1X_GetInterMeasurementInMs(VL53L1_Dev_t dev, uint16_t * pIM);\n\n/**\n * @brief This function returns the boot state of the device (1:booted, 0:not booted)\n */\nVL53L1X_ERROR VL53L1X_BootState(VL53L1_Dev_t dev, uint8_t *state);\n\n/**\n * @brief This function returns the sensor id, sensor Id must be 0xEEAC\n */\nVL53L1X_ERROR VL53L1X_GetSensorId(VL53L1_Dev_t dev, uint16_t *id);\n\n/**\n * @brief This function returns the distance measured by the sensor in mm\n */\nVL53L1X_ERROR VL53L1X_GetDistance(VL53L1_Dev_t dev, uint16_t *distance);\n\n/**\n * @brief This function returns the returned signal per SPAD in kcps/SPAD.\n * With kcps stands for Kilo Count Per Second\n */\nVL53L1X_ERROR VL53L1X_GetSignalPerSpad(VL53L1_Dev_t dev, uint16_t *signalPerSp);\n\n/**\n * @brief This function returns the ambient per SPAD in kcps/SPAD\n */\nVL53L1X_ERROR VL53L1X_GetAmbientPerSpad(VL53L1_Dev_t dev, uint16_t *amb);\n\n/**\n * @brief This function returns the returned signal in kcps.\n */\nVL53L1X_ERROR VL53L1X_GetSignalRate(VL53L1_Dev_t dev, uint16_t *signalRate);\n\n/**\n * @brief This function returns the current number of enabled SPADs\n */\nVL53L1X_ERROR VL53L1X_GetSpadNb(VL53L1_Dev_t dev, uint16_t *spNb);\n\n/**\n * @brief This function returns the ambient rate in kcps\n */\nVL53L1X_ERROR VL53L1X_GetAmbientRate(VL53L1_Dev_t dev, uint16_t *ambRate);\n\n/**\n * @brief This function returns the ranging status error \\n\n * (0:no error, 1:sigma failed, 2:signal failed, ..., 7:wrap-around)\n */\nVL53L1X_ERROR VL53L1X_GetRangeStatus(VL53L1_Dev_t dev, uint8_t *rangeStatus);\n\n/**\n * @brief This function programs the offset correction in mm\n * @param OffsetValue:the offset correction value to program in mm\n */\nVL53L1X_ERROR VL53L1X_SetOffset(VL53L1_Dev_t dev, int16_t OffsetValue);\n\n/**\n * @brief This function returns the programmed offset correction value in mm\n */\nVL53L1X_ERROR VL53L1X_GetOffset(VL53L1_Dev_t dev, int16_t *Offset);\n\n/**\n * @brief This function programs the xtalk correction value in cps (Count Per Second).\\n\n * This is the number of photons reflected back from the cover glass in cps.\n */\nVL53L1X_ERROR VL53L1X_SetXtalk(VL53L1_Dev_t dev, uint16_t XtalkValue);\n\n/**\n * @brief This function returns the current programmed xtalk correction value in cps\n */\nVL53L1X_ERROR VL53L1X_GetXtalk(VL53L1_Dev_t dev, uint16_t *Xtalk);\n\n/**\n * @brief This function programs the threshold detection mode\\n\n * Example:\\n\n * VL53L1X_SetDistanceThreshold(dev,100,300,0,1): Below 100 \\n\n * VL53L1X_SetDistanceThreshold(dev,100,300,1,1): Above 300 \\n\n * VL53L1X_SetDistanceThreshold(dev,100,300,2,1): Out of window \\n\n * VL53L1X_SetDistanceThreshold(dev,100,300,3,1): In window \\n\n * @param   dev : device address\n * @param  \tThreshLow(in mm) : the threshold under which one the device raises an interrupt if Window = 0\n * @param \tThreshHigh(in mm) :  the threshold above which one the device raises an interrupt if Window = 1\n * @param   Window detection mode : 0=below, 1=above, 2=out, 3=in\n * @param   IntOnNoTarget = 1 (No longer used - just use 1)\n */\nVL53L1X_ERROR VL53L1X_SetDistanceThreshold(VL53L1_Dev_t dev, uint16_t ThreshLow,\n\t\t\t      uint16_t ThreshHigh, uint8_t Window,\n\t\t\t      uint8_t IntOnNoTarget);\n\n/**\n * @brief This function returns the window detection mode (0=below; 1=above; 2=out; 3=in)\n */\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdWindow(VL53L1_Dev_t dev, uint16_t *window);\n\n/**\n * @brief This function returns the low threshold in mm\n */\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdLow(VL53L1_Dev_t dev, uint16_t *low);\n\n/**\n * @brief This function returns the high threshold in mm\n */\nVL53L1X_ERROR VL53L1X_GetDistanceThresholdHigh(VL53L1_Dev_t dev, uint16_t *high);\n\n/**\n * @brief This function programs the ROI (Region of Interest)\\n\n * The ROI position is centered, only the ROI size can be reprogrammed.\\n\n * The smallest acceptable ROI size = 4\\n\n * @param X:ROI Width; Y=ROI Height\n */\nVL53L1X_ERROR VL53L1X_SetROI(VL53L1_Dev_t dev, uint16_t X, uint16_t Y);\n\n/**\n *@brief This function returns width X and height Y\n */\nVL53L1X_ERROR VL53L1X_GetROI_XY(VL53L1_Dev_t dev, uint16_t *ROI_X, uint16_t *ROI_Y);\n\n/**\n * @brief This function programs a new signal threshold in kcps (default=1024 kcps\\n\n */\nVL53L1X_ERROR VL53L1X_SetSignalThreshold(VL53L1_Dev_t dev, uint16_t signal);\n\n/**\n * @brief This function returns the current signal threshold in kcps\n */\nVL53L1X_ERROR VL53L1X_GetSignalThreshold(VL53L1_Dev_t dev, uint16_t *signal);\n\n/**\n * @brief This function programs a new sigma threshold in mm (default=15 mm)\n */\nVL53L1X_ERROR VL53L1X_SetSigmaThreshold(VL53L1_Dev_t dev, uint16_t sigma);\n\n/**\n * @brief This function returns the current sigma threshold in mm\n */\nVL53L1X_ERROR VL53L1X_GetSigmaThreshold(VL53L1_Dev_t dev, uint16_t *signal);\n\n/**\n * @brief This function performs the temperature calibration.\n * It is recommended to call this function any time the temperature might have changed by more than 8 deg C\n * without sensor ranging activity for an extended period.\n */\nVL53L1X_ERROR VL53L1X_StartTemperatureUpdate(VL53L1_Dev_t dev);\n\n#endif\n"
  },
  {
    "path": "Code/main/VL53L1X_calibration.c",
    "content": "/*\n* Copyright (c) 2017, STMicroelectronics - All Rights Reserved\n*\n* This file : part of VL53L1 Core and : dual licensed,\n* either 'STMicroelectronics\n* Proprietary license'\n* or 'BSD 3-clause \"New\" or \"Revised\" License' , at your option.\n*\n********************************************************************************\n*\n* 'STMicroelectronics Proprietary license'\n*\n********************************************************************************\n*\n* License terms: STMicroelectronics Proprietary in accordance with licensing\n* terms at www.st.com/sla0081\n*\n* STMicroelectronics confidential\n* Reproduction and Communication of this document : strictly prohibited unless\n* specifically authorized in writing by STMicroelectronics.\n*\n*\n********************************************************************************\n*\n* Alternatively, VL53L1 Core may be distributed under the terms of\n* 'BSD 3-clause \"New\" or \"Revised\" License', in which case the following\n* provisions apply instead of the ones mentioned above :\n*\n********************************************************************************\n*\n* License terms: BSD 3-clause \"New\" or \"Revised\" License.\n*\n* Redistribution and use in source and binary forms, with or without\n* modification, are permitted provided that the following conditions are met:\n*\n* 1. Redistributions of source code must retain the above copyright notice, this\n* list of conditions and the following disclaimer.\n*\n* 2. Redistributions in binary form must reproduce the above copyright notice,\n* this list of conditions and the following disclaimer in the documentation\n* and/or other materials provided with the distribution.\n*\n* 3. Neither the name of the copyright holder nor the names of its contributors\n* may be used to endorse or promote products derived from this software\n* without specific prior written permission.\n*\n* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*\n*\n********************************************************************************\n*\n*/\n/**\n * @file  vl53l1x_calibration.c\n * @brief Calibration functions implementation\n */\n#include \"VL53L1X_api.h\"\n#include \"VL53L1X_calibration.h\"\n\n#define ALGO__PART_TO_PART_RANGE_OFFSET_MM\t0x001E\n#define MM_CONFIG__INNER_OFFSET_MM\t\t\t0x0020\n#define MM_CONFIG__OUTER_OFFSET_MM \t\t\t0x0022\n\nint8_t VL53L1X_CalibrateOffset(VL53L1_Dev_t dev, uint16_t TargetDistInMm, int16_t *offset)\n{\n\tuint8_t i = 0, tmp;\n\tint16_t AverageDistance = 0;\n\tuint16_t distance;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrWord(&dev, ALGO__PART_TO_PART_RANGE_OFFSET_MM, 0x0);\n\tstatus = VL53L1_WrWord(&dev, MM_CONFIG__INNER_OFFSET_MM, 0x0);\n\tstatus = VL53L1_WrWord(&dev, MM_CONFIG__OUTER_OFFSET_MM, 0x0);\n\tstatus = VL53L1X_StartRanging(dev);\t/* Enable VL53L1X sensor */\n\tfor (i = 0; i < 50; i++) {\n\t\twhile (tmp == 0){\n\t\t\tstatus = VL53L1X_CheckForDataReady(dev, &tmp);\n\t\t}\n\t\ttmp = 0;\n\t\tstatus = VL53L1X_GetDistance(dev, &distance);\n\t\tstatus = VL53L1X_ClearInterrupt(dev);\n\t\tAverageDistance = AverageDistance + distance;\n\t}\n\tstatus = VL53L1X_StopRanging(dev);\n\tAverageDistance = AverageDistance / 50;\n\t*offset = TargetDistInMm - AverageDistance;\n\tstatus = VL53L1_WrWord(&dev, ALGO__PART_TO_PART_RANGE_OFFSET_MM, *offset*4);\n\treturn status;\n}\n\nint8_t VL53L1X_CalibrateXtalk(VL53L1_Dev_t dev, uint16_t TargetDistInMm, uint16_t *xtalk)\n{\n\tuint8_t i, tmp= 0;\n\tfloat AverageSignalRate = 0;\n\tfloat AverageDistance = 0;\n\tfloat AverageSpadNb = 0;\n\tuint16_t distance = 0, spadNum;\n\tuint16_t sr;\n\tVL53L1X_ERROR status = 0;\n\n\tstatus = VL53L1_WrWord(&dev, 0x0016,0);\n\tstatus = VL53L1X_StartRanging(dev);\n\tfor (i = 0; i < 50; i++) {\n\t\twhile (tmp == 0){\n\t\t\tstatus = VL53L1X_CheckForDataReady(dev, &tmp);\n\t\t}\n\t\ttmp=0;\n\t\tstatus= VL53L1X_GetSignalRate(dev, &sr);\n\t\tstatus= VL53L1X_GetDistance(dev, &distance);\n\t\tstatus = VL53L1X_ClearInterrupt(dev);\n\t\tAverageDistance = AverageDistance + distance;\n\t\tstatus = VL53L1X_GetSpadNb(dev, &spadNum);\n\t\tAverageSpadNb = AverageSpadNb + spadNum;\n\t\tAverageSignalRate =\n\t\t    AverageSignalRate + sr;\n\t}\n\tstatus = VL53L1X_StopRanging(dev);\n\tAverageDistance = AverageDistance / 50;\n\tAverageSpadNb = AverageSpadNb / 50;\n\tAverageSignalRate = AverageSignalRate / 50;\n\t/* Calculate Xtalk value */\n\t*xtalk = (uint16_t)(512*(AverageSignalRate*(1-(AverageDistance/TargetDistInMm)))/AverageSpadNb);\n\tstatus = VL53L1_WrWord(&dev, 0x0016, *xtalk);\n\treturn status;\n}\n"
  },
  {
    "path": "Code/main/VL53L1X_calibration.h",
    "content": "/*\n* Copyright (c) 2017, STMicroelectronics - All Rights Reserved\n*\n* This file : part of VL53L1 Core and : dual licensed,\n* either 'STMicroelectronics\n* Proprietary license'\n* or 'BSD 3-clause \"New\" or \"Revised\" License' , at your option.\n*\n********************************************************************************\n*\n* 'STMicroelectronics Proprietary license'\n*\n********************************************************************************\n*\n* License terms: STMicroelectronics Proprietary in accordance with licensing\n* terms at www.st.com/sla0081\n*\n* STMicroelectronics confidential\n* Reproduction and Communication of this document : strictly prohibited unless\n* specifically authorized in writing by STMicroelectronics.\n*\n*\n********************************************************************************\n*\n* Alternatively, VL53L1 Core may be distributed under the terms of\n* 'BSD 3-clause \"New\" or \"Revised\" License', in which case the following\n* provisions apply instead of the ones mentioned above :\n*\n********************************************************************************\n*\n* License terms: BSD 3-clause \"New\" or \"Revised\" License.\n*\n* Redistribution and use in source and binary forms, with or without\n* modification, are permitted provided that the following conditions are met:\n*\n* 1. Redistributions of source code must retain the above copyright notice, this\n* list of conditions and the following disclaimer.\n*\n* 2. Redistributions in binary form must reproduce the above copyright notice,\n* this list of conditions and the following disclaimer in the documentation\n* and/or other materials provided with the distribution.\n*\n* 3. Neither the name of the copyright holder nor the names of its contributors\n* may be used to endorse or promote products derived from this software\n* without specific prior written permission.\n*\n* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*\n*\n********************************************************************************\n*\n*/\n/**\n * @file  vl53l1x_calibration.h\n * @brief Calibration Functions definition\n */\n\n#ifndef _CALIBRATION_H_\n#define _CALIBRATION_H_\n\n/**\n * @brief This function performs the offset calibration.\\n\n * The function returns the offset value found and programs the offset compensation into the device.\n * @param TargetDistInMm target distance in mm, ST recommended 100 mm\n * Target reflectance = grey17%\n * @return 0:success, !=0: failed\n * @return offset pointer contains the offset found in mm\n */\nint8_t VL53L1X_CalibrateOffset(VL53L1_Dev_t dev, uint16_t TargetDistInMm, int16_t *offset);\n\n/**\n * @brief This function performs the xtalk calibration.\\n\n * The function returns the xtalk value found and programs the xtalk compensation to the device\n * @param TargetDistInMm target distance in mm\\n\n * The target distance : the distance where the sensor start to \"under range\"\\n\n * due to the influence of the photons reflected back from the cover glass becoming strong\\n\n * It's also called inflection point\\n\n * Target reflectance = grey 17%\n * @return 0: success, !=0: failed\n * @return xtalk pointer contains the xtalk value found in cps (number of photons in count per second)\n */\nint8_t VL53L1X_CalibrateXtalk(VL53L1_Dev_t dev, uint16_t TargetDistInMm, uint16_t *xtalk);\n\n#endif\n"
  },
  {
    "path": "Code/main/bme680.c",
    "content": "/*\n * Copyright (c) 2017 Gunar Schorcht <https://github.com/gschorcht>\n * Copyright (c) 2019 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n *    this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n *    this list of conditions and the following disclaimer in the documentation\n *    and/or other materials provided with the distribution.\n * 3. Neither the name of the copyright holder nor the names of itscontributors\n *    may be used to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/**\n * ESP-IDF driver for BME680 digital environmental sensor\n *\n * Forked from <https://github.com/gschorcht/bme680-esp-idf>\n *\n * Copyright (c) 2017 Gunar Schorcht <https://github.com/gschorcht>\\n\n * Copyright (c) 2019 Ruslan V. Uss <unclerus@gmail.com>\n *\n * BSD Licensed as described in the file LICENSE\n */\n#include <string.h>\n#include <inttypes.h>\n#include <stdlib.h>\n#include <esp_log.h>\n#include <freertos/FreeRTOS.h>\n#include <freertos/task.h>\n#include <esp_idf_lib_helpers.h>\n#include \"bme680.h\"\n\n#define I2C_FREQ_HZ 1000000 // Up to 3.4MHz, but esp-idf only supports 1MHz\n\n// modes: unfortunatly, only SLEEP_MODE and FORCED_MODE are documented\n#define BME680_SLEEP_MODE           0x00    // low power sleeping\n#define BME680_FORCED_MODE          0x01    // perform one TPHG cycle (field data 0 filled)\n#define BME680_PARALLEL_MODE        0x02    // no information what it does :-(\n#define BME680_SQUENTUAL_MODE       0x02    // no information what it does (field data 0+1+2 filled)\n\n// register addresses\n#define BME680_REG_RES_HEAT_VAL     0x00\n#define BME680_REG_RES_HEAT_RANGE   0x02\n#define BME680_REG_RANGE_SW_ERROR   0x06\n\n#define BME680_REG_IDAC_HEAT_BASE   0x50    // 10 regsrs idac_heat_0 ... idac_heat_9\n#define BME680_REG_RES_HEAT_BASE    0x5a    // 10 registers res_heat_0 ... res_heat_9\n#define BME680_REG_GAS_WAIT_BASE    0x64    // 10 registers gas_wait_0 ... gas_wait_9\n#define BME680_REG_CTRL_GAS_0       0x70\n#define BME680_REG_CTRL_GAS_1       0x71\n#define BME680_REG_CTRL_HUM         0x72\n#define BME680_REG_STATUS           0x73\n#define BME680_REG_CTRL_MEAS        0x74\n#define BME680_REG_CONFIG           0x75\n#define BME680_REG_ID               0xd0\n#define BME680_REG_RESET            0xe0\n\n// field data 0 registers\n#define BME680_REG_MEAS_STATUS_0    0x1d\n#define BME680_REG_MEAS_INDEX_0     0x1e\n#define BME680_REG_PRESS_MSB_0      0x1f\n#define BME680_REG_PRESS_LSB_0      0x20\n#define BME680_REG_PRESS_XLSB_0     0x21\n#define BME680_REG_TEMP_MSB_0       0x22\n#define BME680_REG_TEMP_LSB_0       0x23\n#define BME680_REG_TEMP_XLSB_0      0x24\n#define BME680_REG_HUM_MSB_0        0x25\n#define BME680_REG_HUM_LSB_0        0x26\n#define BME680_REG_GAS_R_MSB_0      0x2a\n#define BME680_REG_GAS_R_LSB_0      0x2b\n\n// field data 1 registers (not documented, used in SEQUENTIAL_MODE)\n#define BME680_REG_MEAS_STATUS_1    0x2e\n#define BME680_REG_MEAS_INDEX_1     0x2f\n\n// field data 2 registers (not documented, used in SEQUENTIAL_MODE)\n#define BME680_REG_MEAS_STATUS_2    0x3f\n#define BME680_REG_MEAS_INDEX_2     0x40\n\n// field data addresses\n#define BME680_REG_RAW_DATA_0       BME680_REG_MEAS_STATUS_0    // 0x1d ... 0x2b\n#define BME680_REG_RAW_DATA_1       BME680_REG_MEAS_STATUS_1    // 0x2e ... 0x3c\n#define BME680_REG_RAW_DATA_2       BME680_REG_MEAS_STATUS_2    // 0x40 ... 0x4d\n#define BME680_REG_RAW_DATA_LEN     (BME680_REG_GAS_R_LSB_0 - BME680_REG_MEAS_STATUS_0 + 1)\n\n// calibration data registers\n#define BME680_REG_CD1_ADDR         0x89    // 25 byte calibration data\n#define BME680_REG_CD1_LEN          25\n#define BME680_REG_CD2_ADDR         0xe1    // 16 byte calibration data\n#define BME680_REG_CD2_LEN          16\n#define BME680_REG_CD3_ADDR         0x00    //  8 byte device specific calibration data\n#define BME680_REG_CD3_LEN          8\n\n// register structure definitions\n#define BME680_NEW_DATA_BITS        0x80    // BME680_REG_MEAS_STATUS<7>\n#define BME680_NEW_DATA_SHIFT       7       // BME680_REG_MEAS_STATUS<7>\n#define BME680_GAS_MEASURING_BITS   0x40    // BME680_REG_MEAS_STATUS<6>\n#define BME680_GAS_MEASURING_SHIFT  6       // BME680_REG_MEAS_STATUS<6>\n#define BME680_MEASURING_BITS       0x20    // BME680_REG_MEAS_STATUS<5>\n#define BME680_MEASURING_SHIFT      5       // BME680_REG_MEAS_STATUS<5>\n#define BME680_GAS_MEAS_INDEX_BITS  0x0f    // BME680_REG_MEAS_STATUS<3:0>\n#define BME680_GAS_MEAS_INDEX_SHIFT 0       // BME680_REG_MEAS_STATUS<3:0>\n\n#define BME680_GAS_R_LSB_BITS       0xc0    // BME680_REG_GAS_R_LSB<7:6>\n#define BME680_GAS_R_LSB_SHIFT      6       // BME680_REG_GAS_R_LSB<7:6>\n#define BME680_GAS_VALID_BITS       0x20    // BME680_REG_GAS_R_LSB<5>\n#define BME680_GAS_VALID_SHIFT      5       // BME680_REG_GAS_R_LSB<5>\n#define BME680_HEAT_STAB_R_BITS     0x10    // BME680_REG_GAS_R_LSB<4>\n#define BME680_HEAT_STAB_R_SHIFT    4       // BME680_REG_GAS_R_LSB<4>\n#define BME680_GAS_RANGE_R_BITS     0x0f    // BME680_REG_GAS_R_LSB<3:0>\n#define BME680_GAS_RANGE_R_SHIFT    0       // BME680_REG_GAS_R_LSB<3:0>\n\n#define BME680_HEAT_OFF_BITS        0x04    // BME680_REG_CTRL_GAS_0<3>\n#define BME680_HEAT_OFF_SHIFT       3       // BME680_REG_CTRL_GAS_0<3>\n\n#define BME680_RUN_GAS_BITS         0x10    // BME680_REG_CTRL_GAS_1<4>\n#define BME680_RUN_GAS_SHIFT        4       // BME680_REG_CTRL_GAS_1<4>\n#define BME680_NB_CONV_BITS         0x0f    // BME680_REG_CTRL_GAS_1<3:0>\n#define BME680_NB_CONV_SHIFT        0       // BME680_REG_CTRL_GAS_1<3:0>\n\n#define BME680_SPI_3W_INT_EN_BITS   0x40    // BME680_REG_CTRL_HUM<6>\n#define BME680_SPI_3W_INT_EN_SHIFT  6       // BME680_REG_CTRL_HUM<6>\n#define BME680_OSR_H_BITS           0x07    // BME680_REG_CTRL_HUM<2:0>\n#define BME680_OSR_H_SHIFT          0       // BME680_REG_CTRL_HUM<2:0>\n\n#define BME680_OSR_T_BITS           0xe0    // BME680_REG_CTRL_MEAS<7:5>\n#define BME680_OSR_T_SHIFT          5       // BME680_REG_CTRL_MEAS<7:5>\n#define BME680_OSR_P_BITS           0x1c    // BME680_REG_CTRL_MEAS<4:2>\n#define BME680_OSR_P_SHIFT          2       // BME680_REG_CTRL_MEAS<4:2>\n#define BME680_MODE_BITS            0x03    // BME680_REG_CTRL_MEAS<1:0>\n#define BME680_MODE_SHIFT           0       // BME680_REG_CTRL_MEAS<1:0>\n\n#define BME680_FILTER_BITS          0x1c    // BME680_REG_CONFIG<4:2>\n#define BME680_FILTER_SHIFT         2       // BME680_REG_CONFIG<4:2>\n#define BME680_SPI_3W_EN_BITS       0x01    // BME680_REG_CONFIG<0>\n#define BME680_SPI_3W_EN_SHIFT      0       // BME680_REG_CONFIG<0>\n\n#define BME680_SPI_MEM_PAGE_BITS    0x10    // BME680_REG_STATUS<4>\n#define BME680_SPI_MEM_PAGE_SHIFT   4       // BME680_REG_STATUS<4>\n\n#define BME680_GAS_WAIT_BITS        0x3f    // BME680_REG_GAS_WAIT+x<5:0>\n#define BME680_GAS_WAIT_SHIFT       0       // BME680_REG_GAS_WAIT+x<5:0>\n#define BME680_GAS_WAIT_MULT_BITS   0xc0    // BME680_REG_GAS_WAIT+x<7:6>\n#define BME680_GAS_WAIT_MULT_SHIFT  6       // BME680_REG_GAS_WAIT+x<7:6>\n\n// commands\n#define BME680_RESET_CMD            0xb6    // BME680_REG_RESET<7:0>\n#define BME680_RESET_PERIOD         10      // reset time in ms\n\n#define BME680_RHR_BITS             0x30    // BME680_REG_RES_HEAT_RANGE<5:4>\n#define BME680_RHR_SHIFT            4       // BME680_REG_RES_HEAT_RANGE<5:4>\n#define BME680_RSWE_BITS            0xf0    // BME680_REG_RANGE_SW_ERROR<7:4>\n#define BME680_RSWE_SHIFT           4       // BME680_REG_RANGE_SW_ERROR<7:4>\n\n// calibration data are stored in a calibration data map\n#define BME680_CDM_SIZE (BME680_REG_CD1_LEN + BME680_REG_CD2_LEN + BME680_REG_CD3_LEN)\n#define BME680_CDM_OFF1 0\n#define BME680_CDM_OFF2 BME680_REG_CD1_LEN\n#define BME680_CDM_OFF3 BME680_CDM_OFF2 + BME680_REG_CD2_LEN\n\n// calibration parameter offsets in calibration data map\n// calibration data from 0x89\n#define BME680_CDM_T2   1\n#define BME680_CDM_T3   3\n#define BME680_CDM_P1   5\n#define BME680_CDM_P2   7\n#define BME680_CDM_P3   9\n#define BME680_CDM_P4   11\n#define BME680_CDM_P5   13\n#define BME680_CDM_P7   15\n#define BME680_CDM_P6   16\n#define BME680_CDM_P8   19\n#define BME680_CDM_P9   21\n#define BME680_CDM_P10  23\n// calibration data from 0e1\n#define BME680_CDM_H2   25\n#define BME680_CDM_H1   26\n#define BME680_CDM_H3   28\n#define BME680_CDM_H4   29\n#define BME680_CDM_H5   30\n#define BME680_CDM_H6   31\n#define BME680_CDM_H7   32\n#define BME680_CDM_T1   33\n#define BME680_CDM_GH2  35\n#define BME680_CDM_GH1  37\n#define BME680_CDM_GH3  38\n// device specific calibration data from 0x00\n#define BME680_CDM_RHV  41      // 0x00 - res_heat_val\n#define BME680_CDM_RHR  43      // 0x02 - res_heat_range\n#define BME680_CDM_RSWE 45      // 0x04 - range_sw_error\n\nstatic const char *TAG = \"bme680\";\n\n#define CHECK(x) do { esp_err_t __; if ((__ = x) != ESP_OK) return __; } while (0)\n#define CHECK_ARG(VAL) do { if (!(VAL)) return ESP_ERR_INVALID_ARG; } while (0)\n#define CHECK_LOGE(x, msg, ...) do { \\\n        esp_err_t __; \\\n        if ((__ = x) != ESP_OK) { \\\n            ESP_LOGE(TAG, msg, ## __VA_ARGS__); \\\n            return __; \\\n        } \\\n    } while (0)\n\n/**\n * @brief   Raw data (integer values) read from sensor\n */\ntypedef struct\n{\n\n    bool gas_valid;      // indicate that gas measurement results are valid\n    bool heater_stable;  // indicate that heater temperature was stable\n\n    uint32_t temperature;    // degree celsius x100\n    uint32_t pressure;       // pressure in Pascal\n    uint16_t humidity;       // relative humidity x1000 in %\n    uint16_t gas_resistance; // gas resistance data\n    uint8_t gas_range;      // gas resistance range\n\n    uint8_t gas_index;      // heater profile used (0 ... 9)\n    uint8_t meas_index;\n\n} bme680_raw_data_t;\n\n#define lsb_msb_to_type(t,b,o) (t)(((t)b[o+1] << 8) | b[o])\n#define lsb_to_type(t,b,o)     (t)(b[o])\n#define bme_set_reg_bit(byte, bitname, bit) ( (byte & ~bitname##_BITS) | \\\n                                              ((bit << bitname##_SHIFT) & bitname##_BITS) )\n#define bme_get_reg_bit(byte, bitname)      ( (byte & bitname##_BITS) >> bitname##_SHIFT )\n\nstatic inline esp_err_t read_reg_8_nolock(bme680_t *dev, uint8_t reg, uint8_t *data)\n{\n    return i2c_dev_read_reg(&dev->i2c_dev, reg, data, 1);\n}\n\nstatic inline esp_err_t write_reg_8_nolock(bme680_t *dev, uint8_t reg, uint8_t data)\n{\n    return i2c_dev_write_reg(&dev->i2c_dev, reg, &data, 1);\n}\n\nstatic esp_err_t read_reg_8(bme680_t *dev, uint8_t reg, uint8_t *data)\n{\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, reg, data));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nstatic esp_err_t bme680_set_mode(bme680_t *dev, uint8_t mode)\n{\n    uint8_t reg;\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, BME680_REG_CTRL_MEAS, &reg));\n    reg = bme_set_reg_bit(reg, BME680_MODE, mode);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_CTRL_MEAS, reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\n#define msb_lsb_xlsb_to_20bit(t,b,o) (t)((t) b[o] << 12 | (t) b[o+1] << 4 | b[o+2] >> 4)\n#define msb_lsb_to_type(t,b,o)       (t)(((t)b[o] << 8) | b[o+1])\n\n#define BME680_RAW_P_OFF BME680_REG_PRESS_MSB_0-BME680_REG_MEAS_STATUS_0\n#define BME680_RAW_T_OFF (BME680_RAW_P_OFF + BME680_REG_TEMP_MSB_0 - BME680_REG_PRESS_MSB_0)\n#define BME680_RAW_H_OFF (BME680_RAW_T_OFF + BME680_REG_HUM_MSB_0 - BME680_REG_TEMP_MSB_0)\n#define BME680_RAW_G_OFF (BME680_RAW_H_OFF + BME680_REG_GAS_R_MSB_0 - BME680_REG_HUM_MSB_0)\n\nstatic esp_err_t bme680_get_raw_data(bme680_t *dev, bme680_raw_data_t *raw_data)\n{\n    if (!dev->meas_started)\n    {\n        ESP_LOGE(TAG, \"Measurement was not started\");\n        return ESP_ERR_INVALID_STATE;\n    }\n\n    uint8_t raw[BME680_REG_RAW_DATA_LEN] = { 0 };\n\n    if (!(dev->meas_status & BME680_NEW_DATA_BITS))\n    {\n        // read measurement status from sensor\n        CHECK(read_reg_8(dev, BME680_REG_MEAS_STATUS_0, &dev->meas_status));\n        // test whether there are new data\n        if (!(dev->meas_status & BME680_NEW_DATA_BITS))\n        {\n            if (dev->meas_status & BME680_MEASURING_BITS)\n            {\n                ESP_LOGW(TAG, \"Measurement is still running\");\n                return ESP_ERR_INVALID_STATE;\n            }\n            ESP_LOGW(TAG, \"No new data\");\n            return ESP_ERR_INVALID_RESPONSE;\n        }\n    }\n\n    dev->meas_started = false;\n    raw_data->gas_index = dev->meas_status & BME680_GAS_MEAS_INDEX_BITS;\n\n    // if there are new data, read raw data from sensor\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_read_reg(&dev->i2c_dev, BME680_REG_RAW_DATA_0, raw, BME680_REG_RAW_DATA_LEN));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    raw_data->gas_valid     = bme_get_reg_bit(raw[BME680_RAW_G_OFF + 1], BME680_GAS_VALID);\n    raw_data->heater_stable = bme_get_reg_bit(raw[BME680_RAW_G_OFF + 1], BME680_HEAT_STAB_R);\n\n    raw_data->temperature    = msb_lsb_xlsb_to_20bit(uint32_t, raw, BME680_RAW_T_OFF);\n    raw_data->pressure       = msb_lsb_xlsb_to_20bit(uint32_t, raw, BME680_RAW_P_OFF);\n    raw_data->humidity       = msb_lsb_to_type(uint16_t, raw, BME680_RAW_H_OFF);\n    raw_data->gas_resistance = ((uint16_t) raw[BME680_RAW_G_OFF] << 2) | raw[BME680_RAW_G_OFF + 1] >> 6;\n    raw_data->gas_range      = raw[BME680_RAW_G_OFF + 1] & BME680_GAS_RANGE_R_BITS;\n\n    /*\n     * BME680_REG_MEAS_STATUS_1, BME680_REG_MEAS_STATUS_2\n     * These data are not documented and it is not really clear when they are filled\n     */\n    ESP_LOGD(TAG, \"Raw data: %\" PRIu32 \" %\" PRIu32 \" %d %d %d\", raw_data->temperature, raw_data->pressure,\n            raw_data->humidity, raw_data->gas_resistance, raw_data->gas_range);\n\n    return ESP_OK;\n}\n\n/**\n * @brief   Calculate temperature from raw temperature value\n * @ref     BME280 datasheet, page 50\n */\nstatic int16_t bme680_convert_temperature(bme680_t *dev, uint32_t raw_temperature)\n{\n    bme680_calib_data_t *cd = &dev->calib_data;\n\n    int64_t var1;\n    int64_t var2;\n    int64_t var3;\n    int16_t temperature;\n\n    var1 = ((int32_t)raw_temperature >> 3) - ((int32_t)cd->par_t1 << 1);\n    var2 = (var1 * (int32_t)cd->par_t2) >> 11;\n    var3 = ((var1 >> 1) * (var1 >> 1)) >> 12;\n    var3 = ((var3) * ((int32_t)cd->par_t3 << 4)) >> 14;\n    cd->t_fine = (int32_t)(var2 + var3);\n    temperature = (int16_t)(((cd->t_fine * 5) + 128) >> 8);\n\n    return temperature;\n}\n\n/**\n * @brief       Calculate pressure from raw pressure value\n * @copyright   Copyright (c) 2017 - 2018 Bosch Sensortec GmbH\n *\n * The algorithm was extracted from the original Bosch Sensortec BME680 driver\n * published as open source. Divisions and multiplications by potences of 2\n * were replaced by shift operations for effeciency reasons.\n *\n * @ref         [BME680_diver](https://github.com/BoschSensortec/BME680_driver)\n * @ref         BME280 datasheet, page 50\n */\nstatic uint32_t bme680_convert_pressure(bme680_t *dev, uint32_t raw_pressure)\n{\n    bme680_calib_data_t *cd = &dev->calib_data;\n\n    int32_t var1;\n    int32_t var2;\n    int32_t var3;\n    int32_t pressure_comp;\n\n    var1 = (((int32_t)cd->t_fine) >> 1) - 64000;\n    var2 = ((((var1 >> 2) * (var1 >> 2)) >> 11) *\n            (int32_t)cd->par_p6) >> 2;\n    var2 = var2 + ((var1 * (int32_t)cd->par_p5) << 1);\n    var2 = (var2 >> 2) + ((int32_t)cd->par_p4 << 16);\n    var1 = (((((var1 >> 2) * (var1 >> 2)) >> 13) *\n             ((int32_t)cd->par_p3 << 5)) >> 3) +\n           (((int32_t)cd->par_p2 * var1) >> 1);\n    var1 = var1 >> 18;\n    var1 = ((32768 + var1) * (int32_t)cd->par_p1) >> 15;\n    pressure_comp = 1048576 - raw_pressure;\n    pressure_comp = (int32_t)((pressure_comp - (var2 >> 12)) * ((uint32_t)3125));\n    if (pressure_comp >= BME680_MAX_OVERFLOW_VAL)\n        pressure_comp = ((pressure_comp / var1) << 1);\n    else\n        pressure_comp = ((pressure_comp << 1) / var1);\n    var1 = ((int32_t)cd->par_p9 * (int32_t)(((pressure_comp >> 3) *\n                                            (pressure_comp >> 3)) >> 13)) >> 12;\n    var2 = ((int32_t)(pressure_comp >> 2) *\n            (int32_t)cd->par_p8) >> 13;\n    var3 = ((int32_t)(pressure_comp >> 8) * (int32_t)(pressure_comp >> 8) *\n            (int32_t)(pressure_comp >> 8) *\n            (int32_t)cd->par_p10) >> 17;\n\n    pressure_comp = (int32_t)(pressure_comp) + ((var1 + var2 + var3 +\n                    ((int32_t)cd->par_p7 << 7)) >> 4);\n\n    return (uint32_t)pressure_comp;\n}\n\n/**\n * @brief       Calculate humidty from raw humidity data\n * @copyright   Copyright (c) 2017 - 2018 Bosch Sensortec GmbH\n *\n * The algorithm was extracted from the original Bosch Sensortec BME680 driver\n * published as open source. Divisions and multiplications by potences of 2\n * were replaced by shift operations for effeciency reasons.\n *\n * @ref         [BME680_diver](https://github.com/BoschSensortec/BME680_driver)\n */\nstatic uint32_t bme680_convert_humidity(bme680_t *dev, uint16_t raw_humidity)\n{\n    bme680_calib_data_t *cd = &dev->calib_data;\n\n    int32_t var1;\n    int32_t var2;\n    int32_t var3;\n    int32_t var4;\n    int32_t var5;\n    int32_t var6;\n    int32_t temp_scaled;\n    int32_t humidity;\n\n    temp_scaled = (((int32_t) cd->t_fine * 5) + 128) >> 8;\n    var1 = (int32_t) (raw_humidity - ((int32_t) ((int32_t) cd->par_h1 << 4)))\n            - (((temp_scaled * (int32_t) cd->par_h3) / ((int32_t) 100)) >> 1);\n    var2 = ((int32_t) cd->par_h2\n            * (((temp_scaled * (int32_t) cd->par_h4) / ((int32_t) 100))\n                    + (((temp_scaled * ((temp_scaled * (int32_t) cd->par_h5) / ((int32_t) 100))) >> 6) / ((int32_t) 100))\n                    + (int32_t) (1 << 14))) >> 10;\n    var3 = var1 * var2;\n    var4 = (int32_t) cd->par_h6 << 7;\n    var4 = ((var4) + ((temp_scaled * (int32_t) cd->par_h7) / ((int32_t) 100))) >> 4;\n    var5 = ((var3 >> 14) * (var3 >> 14)) >> 10;\n    var6 = (var4 * var5) >> 1;\n    humidity = (((var3 + var6) >> 10) * ((int32_t) 1000)) >> 12;\n\n    if (humidity > 100000) /* Cap at 100%rH */\n        humidity = 100000;\n    else if (humidity < 0)\n        humidity = 0;\n\n    return (uint32_t) humidity;\n}\n\n/**\n * @brief   Lookup table for gas resitance computation\n * @ref     BME680 datasheet, page 19\n */\nstatic float lookup_table[16][2] = {\n        // const1, const2       // gas_range\n        { 1.0,   8000000.0 },   // 0\n        { 1.0,   4000000.0 },   // 1\n        { 1.0,   2000000.0 },   // 2\n        { 1.0,   1000000.0 },   // 3\n        { 1.0,   499500.4995 }, // 4\n        { 0.99,  248262.1648 }, // 5\n        { 1.0,   125000.0 },    // 6\n        { 0.992, 63004.03226 }, // 7\n        { 1.0,   31281.28128 }, // 8\n        { 1.0,   15625.0 },     // 9\n        { 0.998, 7812.5 },      // 10\n        { 0.995, 3906.25 },     // 11\n        { 1.0,   1953.125 },    // 12\n        { 0.99,  976.5625 },    // 13\n        { 1.0,   488.28125 },   // 14\n        { 1.0,   244.140625 }   // 15\n};\n\n/**\n * @brief   Calculate gas resistance from raw gas resitance value and gas range\n * @ref     BME680 datasheet\n */\nstatic uint32_t bme680_convert_gas(bme680_t *dev, uint16_t gas, uint8_t gas_range)\n{\n    bme680_calib_data_t *cd = &dev->calib_data;\n\n    float var1 = (1340.0 + 5.0 * cd->range_sw_err) * lookup_table[gas_range][0];\n    return var1 * lookup_table[gas_range][1] / (gas - 512.0 + var1);\n}\n\n/**\n * @brief   Calculate internal duration representation\n *\n * Durations are internally representes as one byte\n *\n *  duration = value<5:0> * multiplier<7:6>\n *\n * where the multiplier is 1, 4, 16, or 64. Maximum duration is therefore\n * 64*64 = 4032 ms. The function takes a real world duration value given\n * in milliseconds and computes the internal representation.\n *\n * @ref Datasheet\n */\nstatic uint8_t bme680_heater_duration(uint16_t duration)\n{\n    uint8_t multiplier = 0;\n\n    while (duration > 63)\n    {\n        duration = duration / 4;\n        multiplier++;\n    }\n    return (uint8_t) (duration | (multiplier << 6));\n}\n\n/**\n * @brief  Calculate internal heater resistance value from real temperature.\n *\n * @ref Datasheet of BME680\n */\nstatic uint8_t bme680_heater_resistance(const bme680_t *dev, uint16_t temp)\n{\n    if (!dev)\n        return 0;\n\n    if (temp < BME680_HEATER_TEMP_MIN)\n        temp = BME680_HEATER_TEMP_MIN;\n    else if (temp > BME680_HEATER_TEMP_MAX)\n        temp = BME680_HEATER_TEMP_MAX;\n\n    const bme680_calib_data_t *cd = &dev->calib_data;\n\n    // from datasheet\n    double var1;\n    double var2;\n    double var3;\n    double var4;\n    double var5;\n    uint8_t res_heat_x;\n\n    var1 = ((double) cd->par_gh1 / 16.0) + 49.0;\n    var2 = (((double) cd->par_gh2 / 32768.0) * 0.0005) + 0.00235;\n    var3 = (double) cd->par_gh3 / 1024.0;\n    var4 = var1 * (1.0 + (var2 * (double) temp));\n    var5 = var4 + (var3 * (double) dev->settings.ambient_temperature);\n    res_heat_x = (uint8_t) (3.4\n            * ((var5 * (4.0 / (4.0 + (double) cd->res_heat_range)) * (1.0 / (1.0 + ((double) cd->res_heat_val * 0.002)))) - 25));\n    return res_heat_x;\n\n}\n\n///////////////////////////////////////////////////////////////////////////////\n\nesp_err_t bme680_init_desc(bme680_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio)\n{\n    CHECK_ARG(dev);\n\n    if (addr != BME680_I2C_ADDR_0 &&  addr != BME680_I2C_ADDR_1)\n    {\n        ESP_LOGE(TAG, \"Invalid I2C address\");\n        return ESP_ERR_INVALID_ARG;\n    }\n\n    dev->i2c_dev.port = port;\n    dev->i2c_dev.addr = addr;\n    dev->i2c_dev.cfg.sda_io_num = sda_gpio;\n    dev->i2c_dev.cfg.scl_io_num = scl_gpio;\n#if HELPER_TARGET_IS_ESP32\n    dev->i2c_dev.cfg.master.clk_speed = I2C_FREQ_HZ;\n#endif\n\n    return i2c_dev_create_mutex(&dev->i2c_dev);\n}\n\nesp_err_t bme680_free_desc(bme680_t *dev)\n{\n    CHECK_ARG(dev);\n\n    return i2c_dev_delete_mutex(&dev->i2c_dev);\n}\n\nesp_err_t bme680_init_sensor(bme680_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n\n    dev->meas_started = false;\n    dev->meas_status = 0;\n    dev->settings.ambient_temperature = 0;\n    dev->settings.osr_temperature = BME680_OSR_NONE;\n    dev->settings.osr_pressure = BME680_OSR_NONE;\n    dev->settings.osr_humidity = BME680_OSR_NONE;\n    dev->settings.filter_size = BME680_IIR_SIZE_0;\n    dev->settings.heater_profile = BME680_HEATER_NOT_USED;\n    memset(dev->settings.heater_temperature, 0, sizeof(uint16_t) * 10);\n    memset(dev->settings.heater_duration, 0, sizeof(uint16_t) * 10);\n\n    // reset the sensor\n    I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_RESET, BME680_RESET_CMD));\n    vTaskDelay(pdMS_TO_TICKS(BME680_RESET_PERIOD));\n\n    uint8_t chip_id = 0;\n    I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, BME680_REG_ID, &chip_id));\n    if (chip_id != 0x61)\n    {\n        I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n        ESP_LOGE(TAG, \"Chip id %02x is wrong, should be 0x61\", chip_id);\n        return ESP_ERR_NOT_FOUND;\n    }\n\n    uint8_t buf[BME680_CDM_SIZE];\n\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_read_reg(&dev->i2c_dev, BME680_REG_CD1_ADDR, buf + BME680_CDM_OFF1, BME680_REG_CD1_LEN));\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_read_reg(&dev->i2c_dev, BME680_REG_CD2_ADDR, buf + BME680_CDM_OFF2, BME680_REG_CD2_LEN));\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_read_reg(&dev->i2c_dev, BME680_REG_CD3_ADDR, buf + BME680_CDM_OFF3, BME680_REG_CD3_LEN));\n\n    dev->calib_data.par_t1 = lsb_msb_to_type(uint16_t, buf, BME680_CDM_T1);\n    dev->calib_data.par_t2 = lsb_msb_to_type(int16_t, buf, BME680_CDM_T2);\n    dev->calib_data.par_t3 = lsb_to_type(int8_t, buf, BME680_CDM_T3);\n\n    // pressure compensation parameters\n    dev->calib_data.par_p1 = lsb_msb_to_type(uint16_t, buf, BME680_CDM_P1);\n    dev->calib_data.par_p2 = lsb_msb_to_type(int16_t, buf, BME680_CDM_P2);\n    dev->calib_data.par_p3 = lsb_to_type(int8_t, buf, BME680_CDM_P3);\n    dev->calib_data.par_p4 = lsb_msb_to_type(int16_t, buf, BME680_CDM_P4);\n    dev->calib_data.par_p5 = lsb_msb_to_type(int16_t, buf, BME680_CDM_P5);\n    dev->calib_data.par_p6 = lsb_to_type(int8_t, buf, BME680_CDM_P6);\n    dev->calib_data.par_p7 = lsb_to_type(int8_t, buf, BME680_CDM_P7);\n    dev->calib_data.par_p8 = lsb_msb_to_type(int16_t, buf, BME680_CDM_P8);\n    dev->calib_data.par_p9 = lsb_msb_to_type(int16_t, buf, BME680_CDM_P9);\n    dev->calib_data.par_p10 = lsb_to_type(uint8_t, buf, BME680_CDM_P10);\n\n    // humidity compensation parameters\n    dev->calib_data.par_h1 = (uint16_t) (((uint16_t) buf[BME680_CDM_H1 + 1] << 4) | (buf[BME680_CDM_H1] & 0x0F));\n    dev->calib_data.par_h2 = (uint16_t) (((uint16_t) buf[BME680_CDM_H2] << 4) | (buf[BME680_CDM_H2 + 1] >> 4));\n    dev->calib_data.par_h3 = lsb_to_type(int8_t, buf, BME680_CDM_H3);\n    dev->calib_data.par_h4 = lsb_to_type(int8_t, buf, BME680_CDM_H4);\n    dev->calib_data.par_h5 = lsb_to_type(int8_t, buf, BME680_CDM_H5);\n    dev->calib_data.par_h6 = lsb_to_type(uint8_t, buf, BME680_CDM_H6);\n    dev->calib_data.par_h7 = lsb_to_type(int8_t, buf, BME680_CDM_H7);\n\n    // gas sensor compensation parameters\n    dev->calib_data.par_gh1 = lsb_to_type(int8_t, buf, BME680_CDM_GH1);\n    dev->calib_data.par_gh2 = lsb_msb_to_type(int16_t, buf, BME680_CDM_GH2);\n    dev->calib_data.par_gh3 = lsb_to_type(int8_t, buf, BME680_CDM_GH3);\n\n    dev->calib_data.res_heat_range = (lsb_to_type(uint8_t, buf, BME680_CDM_RHR) & BME680_RHR_BITS) >> BME680_RHR_SHIFT;\n    dev->calib_data.res_heat_val = (lsb_to_type(int8_t, buf, BME680_CDM_RHV));\n    dev->calib_data.range_sw_err = (lsb_to_type(int8_t, buf, BME680_CDM_RSWE) & BME680_RSWE_BITS) >> BME680_RSWE_SHIFT;\n\n    // Set ambient temperature of sensor to default value (25 degree C)\n    dev->settings.ambient_temperature = 25;\n\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    CHECK(bme680_set_oversampling_rates(dev, BME680_OSR_1X, BME680_OSR_1X, BME680_OSR_1X));\n    CHECK(bme680_set_filter_size(dev, BME680_IIR_SIZE_3));\n\n    // Set heater default profile 0 to 320 degree Celcius for 150 ms\n    CHECK(bme680_set_heater_profile(dev, 0, 320, 150));\n    CHECK(bme680_use_heater_profile(dev, 0));\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_force_measurement(bme680_t *dev)\n{\n    CHECK_ARG(dev);\n    if (dev->meas_started)\n    {\n        ESP_LOGE(TAG, \"Measurement is already running\");\n        return ESP_ERR_INVALID_STATE;\n    }\n\n    // Set the power mode to forced mode to trigger one TPHG measurement cycle\n    CHECK_LOGE(bme680_set_mode(dev, BME680_FORCED_MODE),\n            \"Could not set forced mode to start TPHG measurement cycle\");\n    dev->meas_started = true;\n    dev->meas_status = 0;\n\n    ESP_LOGD(TAG, \"Started measurement\");\n\n    return ESP_OK;\n}\n\n/**\n * @brief Estimate the measurement duration in RTOS ticks\n *\n * Timing formulas extracted from BME280 datasheet and test in some\n * experiments. They represent the maximum measurement duration.\n */\nesp_err_t bme680_get_measurement_duration(const bme680_t *dev, uint32_t *duration)\n{\n    CHECK_ARG(dev && duration);\n\n    *duration = 0; /* Calculate in us */\n\n    // wake up duration from sleep into forced mode\n    *duration += 1250;\n\n    // THP cycle duration which consumes 1963 µs for each measurement at maximum\n    if (dev->settings.osr_temperature)\n        *duration += (1 << (dev->settings.osr_temperature - 1)) * 2300;\n    if (dev->settings.osr_pressure)\n        *duration += (1 << (dev->settings.osr_pressure - 1)) * 2300 + 575;\n    if (dev->settings.osr_humidity)\n        *duration += (1 << (dev->settings.osr_humidity - 1)) * 2300 + 575;\n\n    // if gas measurement is used\n    if (dev->settings.heater_profile != BME680_HEATER_NOT_USED && dev->settings.heater_duration[dev->settings.heater_profile]\n            && dev->settings.heater_temperature[dev->settings.heater_profile])\n    {\n        // gas heating time\n        *duration += dev->settings.heater_duration[dev->settings.heater_profile] * 1000;\n        // gas measurement duration;\n        *duration += 2300 + 575;\n    }\n\n    // round up to next ms (1 us ... 1000 us => 1 ms)\n    *duration += 999;\n    *duration /= 1000;\n\n    // some ms tolerance\n    *duration += 5;\n\n    // ceil to next integer value that is divisible by portTICK_PERIOD_MS and\n    // compute RTOS ticks (1 ... portTICK_PERIOD_MS =  1 tick)\n    *duration = (*duration + portTICK_PERIOD_MS - 1) / portTICK_PERIOD_MS;\n\n    // Since first RTOS tick can be shorter than the half of defined tick period,\n    // the delay caused by vTaskDelay(duration) might be 1 or 2 ms shorter than\n    // computed duration in rare cases. Since the duration is computed for maximum\n    // and not for the typical durations and therefore tends to be too long, this\n    // should not be a problem. Therefore, only one additional tick used.\n    *duration += 1;\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_is_measuring(bme680_t *dev, bool *busy)\n{\n    CHECK_ARG(dev && busy);\n\n    // if measurement wasn't started, it is of course not measuring\n    if (!dev->meas_started)\n    {\n        *busy = false;\n        return ESP_OK;\n    }\n\n    CHECK(read_reg_8(dev, BME680_REG_MEAS_STATUS_0, &dev->meas_status));\n    *busy = dev->meas_status & BME680_MEASURING_BITS ? 1 : 0;\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_get_results_fixed(bme680_t *dev, bme680_values_fixed_t *results)\n{\n    CHECK_ARG(dev && results);\n\n    // fill data structure with invalid values\n    results->temperature = INT16_MIN;\n    results->pressure = 0;\n    results->humidity = 0;\n    results->gas_resistance = 0;\n\n    bme680_raw_data_t raw;\n    CHECK(bme680_get_raw_data(dev, &raw));\n\n    // use compensation algorithms to compute sensor values in fixed point format\n    if (dev->settings.osr_temperature)\n        results->temperature = bme680_convert_temperature(dev, raw.temperature);\n    if (dev->settings.osr_pressure)\n        results->pressure = bme680_convert_pressure(dev, raw.pressure);\n    if (dev->settings.osr_humidity)\n        results->humidity = bme680_convert_humidity(dev, raw.humidity);\n\n    if (dev->settings.heater_profile != BME680_HEATER_NOT_USED)\n    {\n        // convert gas only if raw data are valid and heater was stable\n        if (raw.gas_valid && raw.heater_stable)\n            results->gas_resistance = bme680_convert_gas(dev, raw.gas_resistance, raw.gas_range);\n        else if (!raw.gas_valid)\n            ESP_LOGW(TAG, \"Gas data is not valid\");\n        else\n            ESP_LOGW(TAG, \"Heater is not stable\");\n    }\n\n    ESP_LOGD(TAG, \"Fixed point sensor values - %d/100 deg.C, %\" PRIu32 \"/1000 %%, %\" PRIu32 \" Pa, %\" PRIu32 \" Ohm\",\n            results->temperature, results->humidity, results->pressure, results->gas_resistance);\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_get_results_float(bme680_t *dev, bme680_values_float_t *results)\n{\n    CHECK_ARG(dev && results);\n\n    bme680_values_fixed_t fixed;\n    CHECK(bme680_get_results_fixed(dev, &fixed));\n\n    results->temperature = fixed.temperature / 100.0f;\n    results->pressure = fixed.pressure / 100.0f;\n    results->humidity = fixed.humidity / 1000.0f;\n    results->gas_resistance = fixed.gas_resistance;\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_measure_fixed(bme680_t *dev, bme680_values_fixed_t *results)\n{\n    CHECK_ARG(dev && results);\n\n    uint32_t duration;\n    CHECK(bme680_get_measurement_duration(dev, &duration));\n    if (duration == 0)\n    {\n        ESP_LOGE(TAG, \"Failed to get measurement duration\");\n        return ESP_FAIL;\n    }\n\n    CHECK(bme680_force_measurement(dev));\n    vTaskDelay(duration);\n\n    return bme680_get_results_fixed(dev, results);\n}\n\nesp_err_t bme680_measure_float(bme680_t *dev, bme680_values_float_t *results)\n{\n    CHECK_ARG(dev && results);\n\n    uint32_t duration;\n    CHECK(bme680_get_measurement_duration(dev, &duration));\n    if (duration == 0)\n    {\n        ESP_LOGE(TAG, \"Failed to get measurement duration\");\n        return ESP_FAIL;\n    }\n\n    CHECK(bme680_force_measurement(dev));\n    vTaskDelay(duration);\n\n    return bme680_get_results_float(dev, results);\n}\n\nesp_err_t bme680_set_oversampling_rates(bme680_t *dev, bme680_oversampling_rate_t ost,\n        bme680_oversampling_rate_t osp, bme680_oversampling_rate_t osh)\n{\n    CHECK_ARG(dev);\n\n    bool ost_changed = dev->settings.osr_temperature != ost;\n    bool osp_changed = dev->settings.osr_pressure != osp;\n    bool osh_changed = dev->settings.osr_humidity != osh;\n\n    if (!ost_changed && !osp_changed && !osh_changed)\n        return ESP_OK;\n\n    // Set the temperature, pressure and humidity oversampling\n    dev->settings.osr_temperature = ost;\n    dev->settings.osr_pressure = osp;\n    dev->settings.osr_humidity = osh;\n\n    uint8_t reg;\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    if (ost_changed || osp_changed)\n    {\n        // read the current register value\n        I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, BME680_REG_CTRL_MEAS, &reg));\n\n        // set changed bit values\n        if (ost_changed)\n            reg = bme_set_reg_bit(reg, BME680_OSR_T, ost);\n        if (osp_changed)\n            reg = bme_set_reg_bit(reg, BME680_OSR_P, osp);\n\n        // write back the new register value\n        I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_CTRL_MEAS, reg));\n    }\n    if (osh_changed)\n    {\n        // read the current register value\n        I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, BME680_REG_CTRL_HUM, &reg));\n\n        // set changed bit value\n        reg = bme_set_reg_bit(reg, BME680_OSR_H, osh);\n\n        // write back the new register value\n        I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_CTRL_HUM, reg));\n    }\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    ESP_LOGD(TAG, \"Setting oversampling rates done: osrt=%d osp=%d osrh=%d\",\n            dev->settings.osr_temperature, dev->settings.osr_pressure, dev->settings.osr_humidity);\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_set_filter_size(bme680_t *dev, bme680_filter_size_t size)\n{\n    CHECK_ARG(dev);\n\n    if (dev->settings.filter_size == size)\n        return ESP_OK;\n\n    /* Set the temperature, pressure and humidity settings */\n    dev->settings.filter_size = size;\n\n    uint8_t reg;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n\n    // read the current register value\n    I2C_DEV_CHECK(&dev->i2c_dev, read_reg_8_nolock(dev, BME680_REG_CONFIG, &reg));\n    // set changed bit value\n    reg = bme_set_reg_bit(reg, BME680_FILTER, size);\n    // write back the new register value\n    I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_CONFIG, reg));\n\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    ESP_LOGD(TAG, \"Setting filter size done: size=%d\", dev->settings.filter_size);\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_set_heater_profile(bme680_t *dev, uint8_t profile, uint16_t temperature, uint16_t duration)\n{\n    CHECK_ARG(dev && profile < BME680_HEATER_PROFILES);\n\n    bool temperature_changed = dev->settings.heater_temperature[profile] != temperature;\n    bool duration_changed = dev->settings.heater_duration[profile] != duration;\n\n    if (!temperature_changed && !duration_changed)\n        return ESP_OK;\n\n    // set external gas sensor configuration\n    dev->settings.heater_temperature[profile] = temperature; // degree Celsius\n    dev->settings.heater_duration[profile] = duration;       // milliseconds\n\n    // compute internal gas sensor configuration parameters\n    uint8_t heat_dur = bme680_heater_duration(duration);           // internal duration value\n    uint8_t heat_res = bme680_heater_resistance(dev, temperature); // internal temperature value\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    // set internal gas sensor configuration parameters if changed\n    if (temperature_changed)\n        I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_RES_HEAT_BASE + profile, heat_res));\n    if (duration_changed)\n        I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_GAS_WAIT_BASE + profile, heat_dur));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n\n    ESP_LOGD(TAG, \"Setting heater profile %d done: temperature=%d duration=%d\"\n            \" heater_resistance=%02x heater_duration=%02x\", profile, dev->settings.heater_temperature[profile],\n            dev->settings.heater_duration[profile], heat_dur, heat_res);\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_use_heater_profile(bme680_t *dev, int8_t profile)\n{\n    CHECK_ARG(dev);\n    CHECK_ARG(profile >= -1 && profile < BME680_HEATER_PROFILES);\n\n    if (dev->settings.heater_profile == profile)\n        return ESP_OK;\n\n    dev->settings.heater_profile = profile;\n\n    uint8_t reg = 0; // set\n    // set active profile\n    reg = bme_set_reg_bit(reg, BME680_NB_CONV, profile != BME680_HEATER_NOT_USED ? profile : 0);\n\n    // enable or disable gas measurement\n    reg = bme_set_reg_bit(reg, BME680_RUN_GAS,\n            (profile != BME680_HEATER_NOT_USED && dev->settings.heater_temperature[profile] && dev->settings.heater_duration[profile]));\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_reg_8_nolock(dev, BME680_REG_CTRL_GAS_1, reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nesp_err_t bme680_set_ambient_temperature(bme680_t *dev, int16_t ambient)\n{\n    CHECK_ARG(dev);\n\n    if (dev->settings.ambient_temperature == ambient)\n        return ESP_OK;\n\n    // set ambient temperature configuration\n    dev->settings.ambient_temperature = ambient; // degree Celsius\n\n    // update all valid heater profiles\n    uint8_t data[10];\n    for (int i = 0; i < BME680_HEATER_PROFILES; i++)\n        data[i] = dev->settings.heater_temperature[i]\n                ? bme680_heater_resistance(dev, dev->settings.heater_temperature[i])\n                : 0;\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_write_reg(&dev->i2c_dev, BME680_REG_RES_HEAT_BASE, data, 10));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    ESP_LOGD(TAG, \"Setting heater ambient temperature done: ambient=%d\", dev->settings.ambient_temperature);\n\n    return ESP_OK;\n}\n"
  },
  {
    "path": "Code/main/bme680.h",
    "content": "/*\n * Copyright (c) 2017 Gunar Schorcht <https://github.com/gschorcht>\n * Copyright (c) 2019 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n *    this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n *    this list of conditions and the following disclaimer in the documentation\n *    and/or other materials provided with the distribution.\n * 3. Neither the name of the copyright holder nor the names of itscontributors\n *    may be used to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/**\n * @file bme680.h\n * @defgroup bme680 bme680\n * @{\n *\n * ESP-IDF driver for BME680 digital environmental sensor\n *\n * Forked from <https://github.com/gschorcht/bme680-esp-idf>\n *\n * Copyright (c) 2017 Gunar Schorcht <https://github.com/gschorcht>\\n\n * Copyright (c) 2019 Ruslan V. Uss <unclerus@gmail.com>\n *\n * BSD Licensed as described in the file LICENSE\n */\n#ifndef __BME680_H__\n#define __BME680_H__\n\n#include <stdbool.h>\n#include <i2cdev.h>\n#include <esp_err.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#define BME680_I2C_ADDR_0 0x76\n#define BME680_I2C_ADDR_1 0x77\n\n#define BME680_MAX_OVERFLOW_VAL      INT32_C(0x40000000) // overflow value used in pressure calculation (bme680_convert_pressure)\n\n#define BME680_HEATER_TEMP_MIN         200  //!< min. 200 degree Celsius\n#define BME680_HEATER_TEMP_MAX         400  //!< max. 200 degree Celsius\n#define BME680_HEATER_PROFILES         10   //!< max. 10 heater profiles 0 ... 9\n#define BME680_HEATER_NOT_USED         -1   //!< heater not used profile\n\n/**\n * Fixed point sensor values (fixed THPG values)\n */\ntypedef struct\n{\n    int16_t temperature;     //!< temperature in degree C * 100 (Invalid value INT16_MIN)\n    uint32_t pressure;       //!< barometric pressure in Pascal (Invalid value 0)\n    uint32_t humidity;       //!< relative humidity in % * 1000 (Invalid value 0)\n    uint32_t gas_resistance; //!< gas resistance in Ohm         (Invalid value 0)\n} bme680_values_fixed_t;\n\n/**\n * Floating point sensor values (real THPG values)\n */\ntypedef struct\n{\n    float temperature;    //!< temperature in degree C        (Invalid value -327.68)\n    float pressure;       //!< barometric pressure in hPascal (Invalid value 0.0)\n    float humidity;       //!< relative humidity in %         (Invalid value 0.0)\n    float gas_resistance; //!< gas resistance in Ohm          (Invalid value 0.0)\n} bme680_values_float_t;\n\n/**\n * Filter size\n */\ntypedef enum {\n    BME680_IIR_SIZE_0 = 0, //!< Filter is not used\n    BME680_IIR_SIZE_1,\n    BME680_IIR_SIZE_3,\n    BME680_IIR_SIZE_7,\n    BME680_IIR_SIZE_15,\n    BME680_IIR_SIZE_31,\n    BME680_IIR_SIZE_63,\n    BME680_IIR_SIZE_127\n} bme680_filter_size_t;\n\n/**\n * Oversampling rate\n */\ntypedef enum {\n    BME680_OSR_NONE = 0, //!< Measurement is skipped, output values are invalid\n    BME680_OSR_1X,       //!< Default oversampling rates\n    BME680_OSR_2X,\n    BME680_OSR_4X,\n    BME680_OSR_8X,\n    BME680_OSR_16X\n} bme680_oversampling_rate_t;\n\n/**\n * @brief Sensor parameters that configure the TPHG measurement cycle\n *\n *  T - temperature measurement\n *  P - pressure measurement\n *  H - humidity measurement\n *  G - gas measurement\n */\ntypedef struct\n{\n    bme680_oversampling_rate_t osr_temperature; //!< T oversampling rate (default `BME680_OSR_1X`)\n    bme680_oversampling_rate_t osr_pressure;    //!< P oversampling rate (default `BME680_OSR_1X`)\n    bme680_oversampling_rate_t osr_humidity;    //!< H oversampling rate (default `BME680_OSR_1X`)\n    bme680_filter_size_t filter_size;           //!< IIR filter size (default `BME680_IIR_SIZE_3`)\n\n    int8_t heater_profile;                      //!< Heater profile used (default 0)\n    uint16_t heater_temperature[10];            //!< Heater temperature for G (default 320)\n    uint16_t heater_duration[10];               //!< Heater duration for G (default 150)\n\n    int8_t ambient_temperature;                 //!< Ambient temperature for G (default 25)\n} bme680_settings_t;\n\n/**\n * @brief   Data structure for calibration parameters\n *\n * These calibration parameters are used in compensation algorithms to convert\n * raw sensor data to measurement results.\n */\ntypedef struct\n{\n    uint16_t par_t1;         //!< calibration data for temperature compensation\n    int16_t  par_t2;\n    int8_t   par_t3;\n\n    uint16_t par_p1;         //!< calibration data for pressure compensation\n    int16_t  par_p2;\n    int8_t   par_p3;\n    int16_t  par_p4;\n    int16_t  par_p5;\n    int8_t   par_p7;\n    int8_t   par_p6;\n    int16_t  par_p8;\n    int16_t  par_p9;\n    uint8_t  par_p10;\n\n    uint16_t par_h1;         //!< calibration data for humidity compensation\n    uint16_t par_h2;\n    int8_t   par_h3;\n    int8_t   par_h4;\n    int8_t   par_h5;\n    uint8_t  par_h6;\n    int8_t   par_h7;\n\n    int8_t   par_gh1;        //!< calibration data for gas compensation\n    int16_t  par_gh2;\n    int8_t   par_gh3;\n\n    int32_t  t_fine;         //!< temperature correction factor for P and G\n    uint8_t  res_heat_range;\n    int8_t   res_heat_val;\n    int8_t   range_sw_err;\n} bme680_calib_data_t;\n\n/**\n * BME680 sensor device data structure type\n */\ntypedef struct\n{\n    i2c_dev_t i2c_dev;              //!< I2C device descriptor\n\n    bool meas_started;              //!< Indicates whether measurement started\n    uint8_t meas_status;            //!< Last sensor status (for internal use only)\n\n    bme680_settings_t settings;     //!< Sensor settings\n    bme680_calib_data_t calib_data; //!< Calibration data of the sensor\n} bme680_t;\n\n/**\n * @brief Initialize device descriptor\n *\n * @param dev Device descriptor\n * @param addr BME680 address\n * @param port I2C port number\n * @param sda_gpio GPIO pin for SDA\n * @param scl_gpio GPIO pin for SCL\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_init_desc(bme680_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio);\n\n/**\n * @brief Free device descriptor\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_free_desc(bme680_t *dev);\n\n/**\n * @brief   Initialize a BME680 sensor\n *\n * The function initializes the sensor device data structure, probes the\n * sensor, soft resets the sensor, and configures the sensor with the\n * the following default settings:\n *\n * - Oversampling rate for temperature, pressure, humidity is osr_1x\n * - Filter size for pressure and temperature is iir_size 3\n * - Heater profile 0 with 320 degree C and 150 ms duration\n *\n * The sensor must be connected to an I2C bus.\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_init_sensor(bme680_t *dev);\n\n/**\n * @brief   Force one single TPHG measurement\n *\n * The function triggers the sensor to start one THPG measurement cycle.\n * Parameters for the measurement like oversampling rates, IIR filter sizes\n * and heater profile can be configured before.\n *\n * Once the TPHG measurement is started, the user task has to wait for the\n * results. The duration of the TPHG measurement can be determined with\n * function *bme680_get_measurement_duration*.\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_force_measurement(bme680_t *dev);\n\n/**\n * @brief   Get estimated duration of a TPHG measurement\n *\n * The function returns an estimated duration of the TPHG measurement cycle\n * in RTOS ticks for the current configuration of the sensor.\n *\n * This duration is the time required by the sensor for one TPHG measurement\n * until the results are available. It strongly depends on which measurements\n * are performed in the THPG measurement cycle and what configuration\n * parameters were set. It can vary from 1 RTOS (10 ms) tick up to 4500 RTOS\n * ticks (4.5 seconds).\n *\n * If the measurement configuration is not changed, the duration can be\n * considered as constant.\n *\n * @param dev Device descriptor\n * @param[out] duration Duration of TPHG measurement cycle in ticks or 0 on error\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_get_measurement_duration(const bme680_t *dev, uint32_t *duration);\n\n/**\n * @brief   Get the measurement status\n *\n * The function can be used to test whether a measurement that was started\n * before is still running.\n *\n * @param dev Device descriptor\n * @param[out] busy true if measurement is still running or false otherwise\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_is_measuring(bme680_t *dev, bool *busy);\n\n/**\n * @brief   Get results of a measurement in fixed point representation\n *\n * The function returns the results of a TPHG measurement that has been\n * started before. If the measurement is still running, the function fails\n * and returns invalid values (see type declaration).\n *\n * @param dev Device descriptor\n * @param[out] results pointer to a data structure that is filled with results\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_get_results_fixed(bme680_t *dev, bme680_values_fixed_t *results);\n\n/**\n * @brief   Get results of a measurement in floating point representation\n *\n * The function returns the results of a TPHG measurement that has been\n * started before. If the measurement is still running, the function fails\n * and returns invalid values (see type declaration).\n *\n * @param dev Device descriptor\n * @param[out] results pointer to a data structure that is filled with results\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_get_results_float(bme680_t *dev, bme680_values_float_t *results);\n\n/**\n * @brief   Start a measurement, wait and return the results (fixed point)\n *\n * This function is a combination of functions above. For convenience it\n * starts a TPHG measurement using ::bme680_force_measurement(), then it waits\n * the measurement duration for the results using `vTaskDelay()` and finally it\n * returns the results using function ::bme680_get_results_fixed().\n *\n * Note: Since the calling task is delayed using function `vTaskDelay()`, this\n * function must not be used when it is called from a software timer callback\n * function.\n *\n * @param dev Device descriptor\n * @param[out] results pointer to a data structure that is filled with results\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_measure_fixed(bme680_t *dev, bme680_values_fixed_t *results);\n\n/**\n * @brief   Start a measurement, wait and return the results (floating point)\n *\n * This function is a combination of functions above. For convenience it\n * starts a TPHG measurement using ::bme680_force_measurement(), then it waits\n * the measurement duration for the results using `vTaskDelay` and finally it\n * returns the results using function ::bme680_get_results_float().\n *\n * Note: Since the calling task is delayed using function `vTaskDelay()`, this\n * function must not be used when it is called from a software timer callback\n * function.\n *\n * @param dev Device descriptor\n * @param[out] results pointer to a data structure that is filled with results\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_measure_float(bme680_t *dev, bme680_values_float_t *results);\n\n/**\n * @brief   Set the oversampling rates for measurements\n *\n * The BME680 sensor allows to define individual oversampling rates for\n * the measurements of temperature, pressure and humidity. Using an\n * oversampling rate of *osr*, the resolution of raw sensor data can be\n * increased by ld(*osr*) bits.\n *\n * Possible oversampling rates are 1x (default), 2x, 4x, 8x, 16x, see type\n * ::bme680_oversampling_rate_t. The default oversampling rate is 1.\n *\n * Please note: Use ::BME680_OSR_NONE to skip the corresponding measurement.\n *\n * @param dev Device descriptor\n * @param osr_t oversampling rate for temperature measurements\n * @param osr_p oversampling rate for pressure measurements\n * @param osr_h oversampling rate for humidity measurements\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_set_oversampling_rates(bme680_t *dev, bme680_oversampling_rate_t osr_t,\n        bme680_oversampling_rate_t osr_p, bme680_oversampling_rate_t osr_h);\n\n/**\n * @brief   Set the size of the IIR filter\n *\n * The sensor integrates an internal IIR filter (low pass filter) to reduce\n * short-term changes in sensor output values caused by external disturbances.\n * It effectively reduces the bandwidth of the sensor output values.\n *\n * The filter can optionally be used for pressure and temperature data that\n * are subject to many short-term changes. Using the IIR filter, increases the\n * resolution of pressure and temperature data to 20 bit. Humidity and gas\n * inside the sensor does not fluctuate rapidly and does not require such a\n * low pass filtering.\n *\n * The default filter size is 3 (::BME680_IIR_SIZE_3).\n *\n * Please note: If the size of the filter is 0, the filter is not used.\n *\n * @param dev Device descriptor\n * @param size IIR filter size\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_set_filter_size(bme680_t *dev, bme680_filter_size_t size);\n\n/**\n * @brief   Set a heater profile for gas measurements\n *\n * The sensor integrates a heater for the gas measurement. Parameters for this\n * heater are defined by so called heater profiles. The sensor supports up to\n * 10 heater profiles, which are numbered from 0 to 9. Each profile consists of\n * a temperature set-point (the target temperature) and a heating duration.\n *\n * This function sets the parameters for one of the heater profiles 0 ... 9.\n * To activate the gas measurement with this profile, use function\n * ::bme680_use_heater_profile(), see below.\n *\n * Please note: According to the data sheet, a target temperatures of between\n * 200 and 400 degrees Celsius are typical and about 20 to 30 ms are necessary\n * for the heater to reach the desired target temperature.\n *\n * @param dev Device descriptor\n * @param profile heater profile 0 ... 9\n * @param temperature target temperature in degree Celsius\n * @param duration heating duration in milliseconds\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_set_heater_profile(bme680_t *dev, uint8_t profile, uint16_t temperature, uint16_t duration);\n\n/**\n * @brief   Activate gas measurement with a given heater profile\n *\n * The function activates the gas measurement with one of the heater\n * profiles 0 ... 9 or deactivates the gas measurement completely when\n * -1 or ::BME680_HEATER_NOT_USED is used as heater profile.\n *\n * Parameters of the activated heater profile have to be set before with\n * function ::bme680_set_heater_profile() otherwise the function fails.\n *\n * If several heater profiles have been defined with function\n * ::bme680_set_heater_profile(), a sequence of gas measurements with different\n * heater parameters can be realized by a sequence of activations of different\n * heater profiles for successive TPHG measurements using this function.\n *\n * @param dev Device descriptor\n * @param profile 0 ... 9 to activate or -1 to deactivate gas measure\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_use_heater_profile(bme680_t *dev, int8_t profile);\n\n/**\n * @brief   Set ambient temperature\n *\n * The heater resistance calculation algorithm takes into account the ambient\n * temperature of the sensor. This function can be used to set this ambient\n * temperature. Either values determined from the sensor itself or from\n * another temperature sensor can be used. The default ambient temperature\n * is 25 degree Celsius.\n *\n * @param dev Device descriptor\n * @param temperature ambient temperature in degree Celsius\n * @return `ESP_OK` on success\n */\nesp_err_t bme680_set_ambient_temperature(bme680_t *dev, int16_t temperature);\n\n#ifdef __cplusplus\n}\n#endif\n\n/**@}*/\n\n#endif /* __BME680_H__ */\n"
  },
  {
    "path": "Code/main/bmpfile.h",
    "content": "#ifndef __bmpfile_h__\n#define __bmpfile_h__\n\ntypedef struct {\n  uint8_t magic[2];   /* the magic number used to identify the BMP file:\n                         0x42 0x4D (Hex code points for B and M).\n                         The following entries are possible:\n                         BM - Windows 3.1x, 95, NT, ... etc\n                         BA - OS/2 Bitmap Array\n                         CI - OS/2 Color Icon\n                         CP - OS/2 Color Pointer\n                         IC - OS/2 Icon\n                         PT - OS/2 Pointer. */\n  uint32_t filesz;    /* the size of the BMP file in bytes */\n  uint16_t creator1;  /* reserved. */\n  uint16_t creator2;  /* reserved. */\n  uint32_t offset;    /* the offset, i.e. starting address,\n                         of the byte where the bitmap data can be found. */\n} bmp_header_t;\n\ntypedef struct {\n  uint32_t header_sz;     /* the size of this header (40 bytes) */\n  uint32_t width;         /* the bitmap width in pixels */\n  uint32_t height;        /* the bitmap height in pixels */\n  uint16_t nplanes;       /* the number of color planes being used.\n                 Must be set to 1. */\n  uint16_t depth;         /* the number of bits per pixel,\n                 which is the color depth of the image.\n                 Typical values are 1, 4, 8, 16, 24 and 32. */\n  uint32_t compress_type; /* the compression method being used.\n                 See also bmp_compression_method_t. */\n  uint32_t bmp_bytesz;    /* the image size. This is the size of the raw bitmap\n                 data (see below), and should not be confused\n                 with the file size. */\n  uint32_t hres;          /* the horizontal resolution of the image.\n                 (pixel per meter) */\n  uint32_t vres;          /* the vertical resolution of the image.\n                 (pixel per meter) */\n  uint32_t ncolors;       /* the number of colors in the color palette,\n                 or 0 to default to 2<sup><i>n</i></sup>. */\n  uint32_t nimpcolors;    /* the number of important colors used,\n                 or 0 when every color is important;\n                 generally ignored. */\n} bmp_dib_v3_header_t;\n\ntypedef struct {\n  bmp_header_t header;\n  bmp_dib_v3_header_t dib;\n} bmpfile_t;\n\n#endif /* __bmpfile_h__ */\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/3.24.0/CMakeSystem.cmake",
    "content": "set(CMAKE_HOST_SYSTEM \"Windows-10.0.22631\")\nset(CMAKE_HOST_SYSTEM_NAME \"Windows\")\nset(CMAKE_HOST_SYSTEM_VERSION \"10.0.22631\")\nset(CMAKE_HOST_SYSTEM_PROCESSOR \"AMD64\")\n\n\n\nset(CMAKE_SYSTEM \"Windows-10.0.22631\")\nset(CMAKE_SYSTEM_NAME \"Windows\")\nset(CMAKE_SYSTEM_VERSION \"10.0.22631\")\nset(CMAKE_SYSTEM_PROCESSOR \"AMD64\")\n\nset(CMAKE_CROSSCOMPILING \"FALSE\")\n\nset(CMAKE_SYSTEM_LOADED 1)\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c",
    "content": "#ifdef __cplusplus\n# error \"A C++ compiler has been selected for C.\"\n#endif\n\n#if defined(__18CXX)\n# define ID_VOID_MAIN\n#endif\n#if defined(__CLASSIC_C__)\n/* cv-qualifiers did not exist in K&R C */\n# define const\n# define volatile\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_C)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_C >= 0x5100\n   /* __SUNPRO_C = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)\n# endif\n\n#elif defined(__HP_cc)\n# define COMPILER_ID \"HP\"\n  /* __HP_cc = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_cc     % 100)\n\n#elif defined(__DECC)\n# define COMPILER_ID \"Compaq\"\n  /* __DECC_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECC_VER         % 10000)\n\n#elif defined(__IBMC__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMC__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__TINYC__)\n# define COMPILER_ID \"TinyCC\"\n\n#elif defined(__BCC__)\n# define COMPILER_ID \"Bruce\"\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__)\n# define COMPILER_ID \"GNU\"\n# define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)\n# define COMPILER_ID \"SDCC\"\n# if defined(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)\n#  define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)\n#  define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)\n# else\n  /* SDCC = VRP */\n#  define COMPILER_VERSION_MAJOR DEC(SDCC/100)\n#  define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)\n#  define COMPILER_VERSION_PATCH DEC(SDCC    % 10)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if !defined(__STDC__) && !defined(__clang__)\n# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)\n#  define C_VERSION \"90\"\n# else\n#  define C_VERSION\n# endif\n#elif __STDC_VERSION__ > 201710L\n# define C_VERSION \"23\"\n#elif __STDC_VERSION__ >= 201710L\n# define C_VERSION \"17\"\n#elif __STDC_VERSION__ >= 201000L\n# define C_VERSION \"11\"\n#elif __STDC_VERSION__ >= 199901L\n# define C_VERSION \"99\"\n#else\n# define C_VERSION \"90\"\n#endif\nconst char* info_language_standard_default =\n  \"INFO\" \":\" \"standard_default[\" C_VERSION \"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\n#ifdef ID_VOID_MAIN\nvoid main() {}\n#else\n# if defined(__CLASSIC_C__)\nint main(argc, argv) int argc; char *argv[];\n# else\nint main(int argc, char* argv[])\n# endif\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n  require += info_arch[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n#endif\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp",
    "content": "/* This source file must have a .cpp extension so that all C++ compilers\n   recognize the extension without flags.  Borland does not know .cxx for\n   example.  */\n#ifndef __cplusplus\n# error \"A C compiler has been selected for C++.\"\n#endif\n\n#if !defined(__has_include)\n/* If the compiler does not have __has_include, pretend the answer is\n   always no.  */\n#  define __has_include(x) 0\n#endif\n\n\n/* Version number components: V=Version, R=Revision, P=Patch\n   Version date components:   YYYY=Year, MM=Month,   DD=Day  */\n\n#if defined(__COMO__)\n# define COMPILER_ID \"Comeau\"\n  /* __COMO_VERSION__ = VRR */\n# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)\n# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)\n\n#elif defined(__INTEL_COMPILER) || defined(__ICC)\n# define COMPILER_ID \"Intel\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_ID \"GNU\"\n# endif\n  /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,\n     except that a few beta releases use the old format with V=2021.  */\n# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)\n#  if defined(__INTEL_COMPILER_UPDATE)\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)\n#  else\n#   define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)\n#  endif\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)\n#  define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)\n   /* The third version component from --version is an update index,\n      but no macro is provided for it.  */\n#  define COMPILER_VERSION_PATCH DEC(0)\n# endif\n# if defined(__INTEL_COMPILER_BUILD_DATE)\n   /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */\n#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)\n# endif\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# if defined(__GNUC__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n# elif defined(__GNUG__)\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)\n# define COMPILER_ID \"IntelLLVM\"\n#if defined(_MSC_VER)\n# define SIMULATE_ID \"MSVC\"\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_ID \"GNU\"\n#endif\n/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and\n * later.  Look for 6 digit vs. 8 digit version number to decide encoding.\n * VVVV is no smaller than the current year when a version is released.\n */\n#if __INTEL_LLVM_COMPILER < 1000000L\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER    % 10)\n#else\n# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)\n# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER     % 100)\n#endif\n#if defined(_MSC_VER)\n  /* _MSC_VER = VVRR */\n# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n#endif\n#if defined(__GNUC__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#elif defined(__GNUG__)\n# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)\n#endif\n#if defined(__GNUC_MINOR__)\n# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#endif\n#if defined(__GNUC_PATCHLEVEL__)\n# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#endif\n\n#elif defined(__PATHCC__)\n# define COMPILER_ID \"PathScale\"\n# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)\n# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)\n# if defined(__PATHCC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)\n# endif\n\n#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)\n# define COMPILER_ID \"Embarcadero\"\n# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)\n# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)\n# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__     & 0xFFFF)\n\n#elif defined(__BORLANDC__)\n# define COMPILER_ID \"Borland\"\n  /* __BORLANDC__ = 0xVRR */\n# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)\n# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)\n\n#elif defined(__WATCOMC__) && __WATCOMC__ < 1200\n# define COMPILER_ID \"Watcom\"\n   /* __WATCOMC__ = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__WATCOMC__)\n# define COMPILER_ID \"OpenWatcom\"\n   /* __WATCOMC__ = VVRP + 1100 */\n# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)\n# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)\n# if (__WATCOMC__ % 10) > 0\n#  define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)\n# endif\n\n#elif defined(__SUNPRO_CC)\n# define COMPILER_ID \"SunPro\"\n# if __SUNPRO_CC >= 0x5100\n   /* __SUNPRO_CC = 0xVRRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# else\n   /* __SUNPRO_CC = 0xVRP */\n#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)\n#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)\n#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)\n# endif\n\n#elif defined(__HP_aCC)\n# define COMPILER_ID \"HP\"\n  /* __HP_aCC = VVRRPP */\n# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)\n# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)\n# define COMPILER_VERSION_PATCH DEC(__HP_aCC     % 100)\n\n#elif defined(__DECCXX)\n# define COMPILER_ID \"Compaq\"\n  /* __DECCXX_VER = VVRRTPPPP */\n# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)\n# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000  % 100)\n# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER         % 10000)\n\n#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)\n# define COMPILER_ID \"zOS\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__open_xl__) && defined(__clang__)\n# define COMPILER_ID \"IBMClang\"\n# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)\n# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)\n# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)\n\n\n#elif defined(__ibmxl__) && defined(__clang__)\n# define COMPILER_ID \"XLClang\"\n# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)\n# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)\n# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)\n# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)\n\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800\n# define COMPILER_ID \"XL\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800\n# define COMPILER_ID \"VisualAge\"\n  /* __IBMCPP__ = VRP */\n# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)\n# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)\n\n#elif defined(__NVCOMPILER)\n# define COMPILER_ID \"NVHPC\"\n# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)\n# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)\n# if defined(__NVCOMPILER_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)\n# endif\n\n#elif defined(__PGI)\n# define COMPILER_ID \"PGI\"\n# define COMPILER_VERSION_MAJOR DEC(__PGIC__)\n# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)\n# if defined(__PGIC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)\n# endif\n\n#elif defined(_CRAYC)\n# define COMPILER_ID \"Cray\"\n# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)\n# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)\n\n#elif defined(__TI_COMPILER_VERSION__)\n# define COMPILER_ID \"TI\"\n  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */\n# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)\n# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)\n# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)\n\n#elif defined(__CLANG_FUJITSU)\n# define COMPILER_ID \"FujitsuClang\"\n# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# define COMPILER_VERSION_INTERNAL_STR __clang_version__\n\n\n#elif defined(__FUJITSU)\n# define COMPILER_ID \"Fujitsu\"\n# if defined(__FCC_version__)\n#   define COMPILER_VERSION __FCC_version__\n# elif defined(__FCC_major__)\n#   define COMPILER_VERSION_MAJOR DEC(__FCC_major__)\n#   define COMPILER_VERSION_MINOR DEC(__FCC_minor__)\n#   define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)\n# endif\n# if defined(__fcc_version)\n#   define COMPILER_VERSION_INTERNAL DEC(__fcc_version)\n# elif defined(__FCC_VERSION)\n#   define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)\n# endif\n\n\n#elif defined(__ghs__)\n# define COMPILER_ID \"GHS\"\n/* __GHS_VERSION_NUMBER = VVVVRP */\n# ifdef __GHS_VERSION_NUMBER\n# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)\n# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)\n# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER      % 10)\n# endif\n\n#elif defined(__SCO_VERSION__)\n# define COMPILER_ID \"SCO\"\n\n#elif defined(__ARMCC_VERSION) && !defined(__clang__)\n# define COMPILER_ID \"ARMCC\"\n#if __ARMCC_VERSION >= 1000000\n  /* __ARMCC_VERSION = VRRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION     % 10000)\n#else\n  /* __ARMCC_VERSION = VRPPPP */\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION    % 10000)\n#endif\n\n\n#elif defined(__clang__) && defined(__apple_build_version__)\n# define COMPILER_ID \"AppleClang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)\n\n#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)\n# define COMPILER_ID \"ARMClang\"\n  # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)\n  # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)\n  # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION     % 10000)\n# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)\n\n#elif defined(__clang__)\n# define COMPILER_ID \"Clang\"\n# if defined(_MSC_VER)\n#  define SIMULATE_ID \"MSVC\"\n# endif\n# define COMPILER_VERSION_MAJOR DEC(__clang_major__)\n# define COMPILER_VERSION_MINOR DEC(__clang_minor__)\n# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)\n# if defined(_MSC_VER)\n   /* _MSC_VER = VVRR */\n#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)\n#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)\n# endif\n\n#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))\n# define COMPILER_ID \"LCC\"\n# define COMPILER_VERSION_MAJOR DEC(1)\n# if defined(__LCC__)\n#  define COMPILER_VERSION_MINOR DEC(__LCC__- 100)\n# endif\n# if defined(__LCC_MINOR__)\n#  define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)\n# endif\n# if defined(__GNUC__) && defined(__GNUC_MINOR__)\n#  define SIMULATE_ID \"GNU\"\n#  define SIMULATE_VERSION_MAJOR DEC(__GNUC__)\n#  define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)\n#  if defined(__GNUC_PATCHLEVEL__)\n#   define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n#  endif\n# endif\n\n#elif defined(__GNUC__) || defined(__GNUG__)\n# define COMPILER_ID \"GNU\"\n# if defined(__GNUC__)\n#  define COMPILER_VERSION_MAJOR DEC(__GNUC__)\n# else\n#  define COMPILER_VERSION_MAJOR DEC(__GNUG__)\n# endif\n# if defined(__GNUC_MINOR__)\n#  define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)\n# endif\n# if defined(__GNUC_PATCHLEVEL__)\n#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)\n# endif\n\n#elif defined(_MSC_VER)\n# define COMPILER_ID \"MSVC\"\n  /* _MSC_VER = VVRR */\n# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)\n# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)\n# if defined(_MSC_FULL_VER)\n#  if _MSC_VER >= 1400\n    /* _MSC_FULL_VER = VVRRPPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)\n#  else\n    /* _MSC_FULL_VER = VVRRPPPP */\n#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)\n#  endif\n# endif\n# if defined(_MSC_BUILD)\n#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)\n# endif\n\n#elif defined(_ADI_COMPILER)\n# define COMPILER_ID \"ADSP\"\n#if defined(__VERSIONNUM__)\n  /* __VERSIONNUM__ = 0xVVRRPPTT */\n#  define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)\n#  define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)\n#  define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)\n#  define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)\n#endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# define COMPILER_ID \"IAR\"\n# if defined(__VER__) && defined(__ICCARM__)\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)\n#  define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)\n#  define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))\n#  define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)\n#  define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))\n#  define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)\n#  define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)\n# endif\n\n\n/* These compilers are either not known or too old to define an\n  identification macro.  Try to identify the platform and guess that\n  it is the native compiler.  */\n#elif defined(__hpux) || defined(__hpua)\n# define COMPILER_ID \"HP\"\n\n#else /* unknown compiler */\n# define COMPILER_ID \"\"\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_compiler = \"INFO\" \":\" \"compiler[\" COMPILER_ID \"]\";\n#ifdef SIMULATE_ID\nchar const* info_simulate = \"INFO\" \":\" \"simulate[\" SIMULATE_ID \"]\";\n#endif\n\n#ifdef __QNXNTO__\nchar const* qnxnto = \"INFO\" \":\" \"qnxnto[]\";\n#endif\n\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\nchar const *info_cray = \"INFO\" \":\" \"compiler_wrapper[CrayPrgEnv]\";\n#endif\n\n#define STRINGIFY_HELPER(X) #X\n#define STRINGIFY(X) STRINGIFY_HELPER(X)\n\n/* Identify known platforms by name.  */\n#if defined(__linux) || defined(__linux__) || defined(linux)\n# define PLATFORM_ID \"Linux\"\n\n#elif defined(__MSYS__)\n# define PLATFORM_ID \"MSYS\"\n\n#elif defined(__CYGWIN__)\n# define PLATFORM_ID \"Cygwin\"\n\n#elif defined(__MINGW32__)\n# define PLATFORM_ID \"MinGW\"\n\n#elif defined(__APPLE__)\n# define PLATFORM_ID \"Darwin\"\n\n#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)\n# define PLATFORM_ID \"Windows\"\n\n#elif defined(__FreeBSD__) || defined(__FreeBSD)\n# define PLATFORM_ID \"FreeBSD\"\n\n#elif defined(__NetBSD__) || defined(__NetBSD)\n# define PLATFORM_ID \"NetBSD\"\n\n#elif defined(__OpenBSD__) || defined(__OPENBSD)\n# define PLATFORM_ID \"OpenBSD\"\n\n#elif defined(__sun) || defined(sun)\n# define PLATFORM_ID \"SunOS\"\n\n#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)\n# define PLATFORM_ID \"AIX\"\n\n#elif defined(__hpux) || defined(__hpux__)\n# define PLATFORM_ID \"HP-UX\"\n\n#elif defined(__HAIKU__)\n# define PLATFORM_ID \"Haiku\"\n\n#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)\n# define PLATFORM_ID \"BeOS\"\n\n#elif defined(__QNX__) || defined(__QNXNTO__)\n# define PLATFORM_ID \"QNX\"\n\n#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)\n# define PLATFORM_ID \"Tru64\"\n\n#elif defined(__riscos) || defined(__riscos__)\n# define PLATFORM_ID \"RISCos\"\n\n#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)\n# define PLATFORM_ID \"SINIX\"\n\n#elif defined(__UNIX_SV__)\n# define PLATFORM_ID \"UNIX_SV\"\n\n#elif defined(__bsdos__)\n# define PLATFORM_ID \"BSDOS\"\n\n#elif defined(_MPRAS) || defined(MPRAS)\n# define PLATFORM_ID \"MP-RAS\"\n\n#elif defined(__osf) || defined(__osf__)\n# define PLATFORM_ID \"OSF1\"\n\n#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)\n# define PLATFORM_ID \"SCO_SV\"\n\n#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)\n# define PLATFORM_ID \"ULTRIX\"\n\n#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)\n# define PLATFORM_ID \"Xenix\"\n\n#elif defined(__WATCOMC__)\n# if defined(__LINUX__)\n#  define PLATFORM_ID \"Linux\"\n\n# elif defined(__DOS__)\n#  define PLATFORM_ID \"DOS\"\n\n# elif defined(__OS2__)\n#  define PLATFORM_ID \"OS2\"\n\n# elif defined(__WINDOWS__)\n#  define PLATFORM_ID \"Windows3x\"\n\n# elif defined(__VXWORKS__)\n#  define PLATFORM_ID \"VxWorks\"\n\n# else /* unknown platform */\n#  define PLATFORM_ID\n# endif\n\n#elif defined(__INTEGRITY)\n# if defined(INT_178B)\n#  define PLATFORM_ID \"Integrity178\"\n\n# else /* regular Integrity */\n#  define PLATFORM_ID \"Integrity\"\n# endif\n\n# elif defined(_ADI_COMPILER)\n#  define PLATFORM_ID \"ADSP\"\n\n#else /* unknown platform */\n# define PLATFORM_ID\n\n#endif\n\n/* For windows compilers MSVC and Intel we can determine\n   the architecture of the compiler being used.  This is because\n   the compilers do not have flags that can change the architecture,\n   but rather depend on which compiler is being used\n*/\n#if defined(_WIN32) && defined(_MSC_VER)\n# if defined(_M_IA64)\n#  define ARCHITECTURE_ID \"IA64\"\n\n# elif defined(_M_ARM64EC)\n#  define ARCHITECTURE_ID \"ARM64EC\"\n\n# elif defined(_M_X64) || defined(_M_AMD64)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# elif defined(_M_ARM64)\n#  define ARCHITECTURE_ID \"ARM64\"\n\n# elif defined(_M_ARM)\n#  if _M_ARM == 4\n#   define ARCHITECTURE_ID \"ARMV4I\"\n#  elif _M_ARM == 5\n#   define ARCHITECTURE_ID \"ARMV5I\"\n#  else\n#   define ARCHITECTURE_ID \"ARMV\" STRINGIFY(_M_ARM)\n#  endif\n\n# elif defined(_M_MIPS)\n#  define ARCHITECTURE_ID \"MIPS\"\n\n# elif defined(_M_SH)\n#  define ARCHITECTURE_ID \"SHx\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__WATCOMC__)\n# if defined(_M_I86)\n#  define ARCHITECTURE_ID \"I86\"\n\n# elif defined(_M_IX86)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)\n# if defined(__ICCARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__ICCRX__)\n#  define ARCHITECTURE_ID \"RX\"\n\n# elif defined(__ICCRH850__)\n#  define ARCHITECTURE_ID \"RH850\"\n\n# elif defined(__ICCRL78__)\n#  define ARCHITECTURE_ID \"RL78\"\n\n# elif defined(__ICCRISCV__)\n#  define ARCHITECTURE_ID \"RISCV\"\n\n# elif defined(__ICCAVR__)\n#  define ARCHITECTURE_ID \"AVR\"\n\n# elif defined(__ICC430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__ICCV850__)\n#  define ARCHITECTURE_ID \"V850\"\n\n# elif defined(__ICC8051__)\n#  define ARCHITECTURE_ID \"8051\"\n\n# elif defined(__ICCSTM8__)\n#  define ARCHITECTURE_ID \"STM8\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__ghs__)\n# if defined(__PPC64__)\n#  define ARCHITECTURE_ID \"PPC64\"\n\n# elif defined(__ppc__)\n#  define ARCHITECTURE_ID \"PPC\"\n\n# elif defined(__ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__x86_64__)\n#  define ARCHITECTURE_ID \"x64\"\n\n# elif defined(__i386__)\n#  define ARCHITECTURE_ID \"X86\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n#elif defined(__TI_COMPILER_VERSION__)\n# if defined(__TI_ARM__)\n#  define ARCHITECTURE_ID \"ARM\"\n\n# elif defined(__MSP430__)\n#  define ARCHITECTURE_ID \"MSP430\"\n\n# elif defined(__TMS320C28XX__)\n#  define ARCHITECTURE_ID \"TMS320C28x\"\n\n# elif defined(__TMS320C6X__) || defined(_TMS320C6X)\n#  define ARCHITECTURE_ID \"TMS320C6x\"\n\n# else /* unknown architecture */\n#  define ARCHITECTURE_ID \"\"\n# endif\n\n# elif defined(__ADSPSHARC__)\n#  define ARCHITECTURE_ID \"SHARC\"\n\n# elif defined(__ADSPBLACKFIN__)\n#  define ARCHITECTURE_ID \"Blackfin\"\n\n#else\n#  define ARCHITECTURE_ID\n#endif\n\n/* Convert integer to decimal digit literals.  */\n#define DEC(n)                   \\\n  ('0' + (((n) / 10000000)%10)), \\\n  ('0' + (((n) / 1000000)%10)),  \\\n  ('0' + (((n) / 100000)%10)),   \\\n  ('0' + (((n) / 10000)%10)),    \\\n  ('0' + (((n) / 1000)%10)),     \\\n  ('0' + (((n) / 100)%10)),      \\\n  ('0' + (((n) / 10)%10)),       \\\n  ('0' +  ((n) % 10))\n\n/* Convert integer to hex digit literals.  */\n#define HEX(n)             \\\n  ('0' + ((n)>>28 & 0xF)), \\\n  ('0' + ((n)>>24 & 0xF)), \\\n  ('0' + ((n)>>20 & 0xF)), \\\n  ('0' + ((n)>>16 & 0xF)), \\\n  ('0' + ((n)>>12 & 0xF)), \\\n  ('0' + ((n)>>8  & 0xF)), \\\n  ('0' + ((n)>>4  & 0xF)), \\\n  ('0' + ((n)     & 0xF))\n\n/* Construct a string literal encoding the version number. */\n#ifdef COMPILER_VERSION\nchar const* info_version = \"INFO\" \":\" \"compiler_version[\" COMPILER_VERSION \"]\";\n\n/* Construct a string literal encoding the version number components. */\n#elif defined(COMPILER_VERSION_MAJOR)\nchar const info_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',\n  COMPILER_VERSION_MAJOR,\n# ifdef COMPILER_VERSION_MINOR\n  '.', COMPILER_VERSION_MINOR,\n#  ifdef COMPILER_VERSION_PATCH\n   '.', COMPILER_VERSION_PATCH,\n#   ifdef COMPILER_VERSION_TWEAK\n    '.', COMPILER_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct a string literal encoding the internal version number. */\n#ifdef COMPILER_VERSION_INTERNAL\nchar const info_version_internal[] = {\n  'I', 'N', 'F', 'O', ':',\n  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',\n  'i','n','t','e','r','n','a','l','[',\n  COMPILER_VERSION_INTERNAL,']','\\0'};\n#elif defined(COMPILER_VERSION_INTERNAL_STR)\nchar const* info_version_internal = \"INFO\" \":\" \"compiler_version_internal[\" COMPILER_VERSION_INTERNAL_STR \"]\";\n#endif\n\n/* Construct a string literal encoding the version number components. */\n#ifdef SIMULATE_VERSION_MAJOR\nchar const info_simulate_version[] = {\n  'I', 'N', 'F', 'O', ':',\n  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',\n  SIMULATE_VERSION_MAJOR,\n# ifdef SIMULATE_VERSION_MINOR\n  '.', SIMULATE_VERSION_MINOR,\n#  ifdef SIMULATE_VERSION_PATCH\n   '.', SIMULATE_VERSION_PATCH,\n#   ifdef SIMULATE_VERSION_TWEAK\n    '.', SIMULATE_VERSION_TWEAK,\n#   endif\n#  endif\n# endif\n  ']','\\0'};\n#endif\n\n/* Construct the string literal in pieces to prevent the source from\n   getting matched.  Store it in a pointer rather than an array\n   because some compilers will just produce instructions to fill the\n   array rather than assigning a pointer to a static array.  */\nchar const* info_platform = \"INFO\" \":\" \"platform[\" PLATFORM_ID \"]\";\nchar const* info_arch = \"INFO\" \":\" \"arch[\" ARCHITECTURE_ID \"]\";\n\n\n\n#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L\n#  if defined(__INTEL_CXX11_MODE__)\n#    if defined(__cpp_aggregate_nsdmi)\n#      define CXX_STD 201402L\n#    else\n#      define CXX_STD 201103L\n#    endif\n#  else\n#    define CXX_STD 199711L\n#  endif\n#elif defined(_MSC_VER) && defined(_MSVC_LANG)\n#  define CXX_STD _MSVC_LANG\n#else\n#  define CXX_STD __cplusplus\n#endif\n\nconst char* info_language_standard_default = \"INFO\" \":\" \"standard_default[\"\n#if CXX_STD > 202002L\n  \"23\"\n#elif CXX_STD > 201703L\n  \"20\"\n#elif CXX_STD >= 201703L\n  \"17\"\n#elif CXX_STD >= 201402L\n  \"14\"\n#elif CXX_STD >= 201103L\n  \"11\"\n#else\n  \"98\"\n#endif\n\"]\";\n\nconst char* info_language_extensions_default = \"INFO\" \":\" \"extensions_default[\"\n#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) ||           \\\n     defined(__TI_COMPILER_VERSION__)) &&                                     \\\n  !defined(__STRICT_ANSI__)\n  \"ON\"\n#else\n  \"OFF\"\n#endif\n\"]\";\n\n/*--------------------------------------------------------------------------*/\n\nint main(int argc, char* argv[])\n{\n  int require = 0;\n  require += info_compiler[argc];\n  require += info_platform[argc];\n#ifdef COMPILER_VERSION_MAJOR\n  require += info_version[argc];\n#endif\n#ifdef COMPILER_VERSION_INTERNAL\n  require += info_version_internal[argc];\n#endif\n#ifdef SIMULATE_ID\n  require += info_simulate[argc];\n#endif\n#ifdef SIMULATE_VERSION_MAJOR\n  require += info_simulate_version[argc];\n#endif\n#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)\n  require += info_cray[argc];\n#endif\n  require += info_language_standard_default[argc];\n  require += info_language_extensions_default[argc];\n  (void)argv;\n  return require;\n}\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/CMakeError.log",
    "content": "Compiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags:  \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -Aa \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -D__CLASSIC_C__ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: --target=arm-arm-none-eabi;-mcpu=cortex-m3 \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c;-I__does_not_exist__ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags:  \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -Aa \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -D__CLASSIC_C__ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: --target=arm-arm-none-eabi;-mcpu=cortex-m3 \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the C compiler identification source file \"CMakeCCompilerId.c\" failed.\nCompiler: CMAKE_C_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c;-I__does_not_exist__ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags:  \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --c++ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --ec++ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --target=arm-arm-none-eabi;-mcpu=cortex-m3 \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c;-I__does_not_exist__ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags:  \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --c++ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --ec++ \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: --target=arm-arm-none-eabi;-mcpu=cortex-m3 \n\nThe output was:\nThe system cannot find the file specified\n\n\nCompiling the CXX compiler identification source file \"CMakeCXXCompilerId.cpp\" failed.\nCompiler: CMAKE_CXX_COMPILER-NOTFOUND \nBuild flags: \nId flags: -c;-I__does_not_exist__ \n\nThe output was:\nThe system cannot find the file specified\n\n\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/CMakeOutput.log",
    "content": "The system is: Windows - 10.0.22631 - AMD64\n"
  },
  {
    "path": "Code/main/build/CMakeFiles/cmake.check_cache",
    "content": "# This file is generated by cmake for dependency checking of the CMakeCache.txt file\n"
  },
  {
    "path": "Code/main/component.mk",
    "content": "#\n# \"main\" pseudo-component makefile.\n#\n# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)\n"
  },
  {
    "path": "Code/main/decode_png.c",
    "content": "#include <stdio.h>\n#include <inttypes.h>\n#include \"decode_png.h\"\n#include \"pngle.h\"\n#include \"esp_log.h\"\n\nvoid png_init(pngle_t *pngle, uint32_t w, uint32_t h)\n{\n\tESP_LOGD(__FUNCTION__, \"png_init w=%\"PRIu32\" h=%\"PRIu32, w, h);\n\tESP_LOGD(__FUNCTION__, \"screenWidth=%d screenHeight=%d\", pngle->screenWidth, pngle->screenHeight);\n\tpngle->imageWidth = w;\n\tpngle->imageHeight = h;\n\tpngle->reduction = false;\n\tpngle->scale_factor = 1.0;\n\n\t// Calculate Reduction\n\tif (pngle->screenWidth < pngle->imageWidth || pngle->screenHeight < pngle->imageHeight) {\n\t\tpngle->reduction = true;\n\t\tdouble factorWidth = (double)pngle->screenWidth / (double)pngle->imageWidth;\n\t\tdouble factorHeight = (double)pngle->screenHeight / (double)pngle->imageHeight;\n\t\tpngle->scale_factor = factorWidth;\n\t\tif (factorHeight < factorWidth) pngle->scale_factor = factorHeight;\n\t\tpngle->imageWidth = pngle->imageWidth * pngle->scale_factor;\n\t\tpngle->imageHeight = pngle->imageHeight * pngle->scale_factor;\n\t}\n\tESP_LOGD(__FUNCTION__, \"reduction=%d scale_factor=%f\", pngle->reduction, pngle->scale_factor);\n\tESP_LOGD(__FUNCTION__, \"imageWidth=%d imageHeight=%d\", pngle->imageWidth, pngle->imageHeight);\n\t\t\n}\n\n#define rgb565(r, g, b) (((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3))\n\nvoid png_draw(pngle_t *pngle, uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint8_t rgba[4])\n{\n\tESP_LOGD(__FUNCTION__, \"png_draw x=%\"PRIu32\" y=%\"PRIu32\" w=%\"PRIu32\" h=%\"PRIu32, x,y,w,h);\n#if 0\n\tuint8_t r = rgba[0];\n\tuint8_t g = rgba[1];\n\tuint8_t b = rgba[2];\n#endif\n\n\t// image reduction\n\tuint32_t _x = x;\n\tuint32_t _y = y;\n\tif (pngle->reduction) {\n\t\t_x = x * pngle->scale_factor;\n\t\t_y = y * pngle->scale_factor;\n\t}\n\tif (_y < pngle->screenHeight && _x < pngle->screenWidth) {\n#if 0\n\t\tpngle->pixels[_y][_x].red = rgba[0];\n\t\tpngle->pixels[_y][_x].green = rgba[1];\n\t\tpngle->pixels[_y][_x].blue = rgba[2];\n#endif\n\t\tpngle->pixels[_y][_x] = rgb565(rgba[0], rgba[1], rgba[2]);\n\t}\n\n}\n\nvoid png_finish(pngle_t *pngle) {\n\tESP_LOGD(__FUNCTION__, \"png_finish\");\n}\n"
  },
  {
    "path": "Code/main/decode_png.h",
    "content": "#pragma once\n#include <stdint.h>\n#include <stdbool.h>\n#include \"pngle.h\"\n\nvoid png_init(pngle_t *pngle, uint32_t w, uint32_t h);\nvoid png_draw(pngle_t *pngle, uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint8_t rgba[4]);\nvoid png_finish(pngle_t *pngle);\n\n"
  },
  {
    "path": "Code/main/ds3231.c",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2015 Richard A Burton <richardaburton@gmail.com>\n * Copyright (c) 2016 Bhuvanchandra DV <bhuvanchandra.dv@gmail.com>\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n/**\n * @file ds3231.c\n *\n * ESP-IDF driver for DS337 RTC and DS3231 high precision RTC module\n *\n * Ported from esp-open-rtos\n *\n * Copyright (c) 2015 Richard A Burton <richardaburton@gmail.com>\\n\n * Copyright (c) 2016 Bhuvanchandra DV <bhuvanchandra.dv@gmail.com>\\n\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * MIT Licensed as described in the file LICENSE\n */\n#include <stdio.h>\n#include <esp_err.h>\n#include <esp_idf_lib_helpers.h>\n#include \"ds3231.h\"\n\n#define I2C_FREQ_HZ 400000\n\n#define DS3231_STAT_OSCILLATOR 0x80\n#define DS3231_STAT_32KHZ      0x08\n#define DS3231_STAT_ALARM_2    0x02\n#define DS3231_STAT_ALARM_1    0x01\n\n#define DS3231_CTRL_OSCILLATOR    0x80\n#define DS3231_CTRL_TEMPCONV      0x20\n#define DS3231_CTRL_ALARM_INTS    0x04\n#define DS3231_CTRL_ALARM2_INT    0x02\n#define DS3231_CTRL_ALARM1_INT    0x01\n\n#define DS3231_ALARM_WDAY   0x40\n#define DS3231_ALARM_NOTSET 0x80\n\n#define DS3231_ADDR_TIME    0x00\n#define DS3231_ADDR_ALARM1  0x07\n#define DS3231_ADDR_ALARM2  0x0b\n#define DS3231_ADDR_CONTROL 0x0e\n#define DS3231_ADDR_STATUS  0x0f\n#define DS3231_ADDR_AGING   0x10\n#define DS3231_ADDR_TEMP    0x11\n\n#define DS3231_12HOUR_FLAG  0x40\n#define DS3231_12HOUR_MASK  0x1f\n#define DS3231_PM_FLAG      0x20\n#define DS3231_MONTH_MASK   0x1f\n\n#define CHECK_ARG(ARG) do { if (!(ARG)) return ESP_ERR_INVALID_ARG; } while (0)\n\nenum {\n    DS3231_SET = 0,\n    DS3231_CLEAR,\n    DS3231_REPLACE\n};\n\nstatic const int days_per_month[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };\nstatic const int days_per_month_leap_year[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };\n\nstatic uint8_t bcd2dec(uint8_t val)\n{\n    return (val >> 4) * 10 + (val & 0x0f);\n}\n\nstatic uint8_t dec2bcd(uint8_t val)\n{\n    return ((val / 10) << 4) + (val % 10);\n}\n\n// Function to convert year, month, and day to days since January 1st\nstatic inline int days_since_january_1st(int year, int month, int day)\n{\n    int days = day - 1;\n    const int *ptr = days_per_month;\n\n    // Handle leap year\n    if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))\n        ptr = days_per_month_leap_year;\n\n    // Add days from previous months\n    for (int i = 0; i < month; i++)\n    {\n        days += ptr[i];\n    }\n\n    return days;\n}\n\nesp_err_t ds3231_init_desc(i2c_dev_t *dev, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio)\n{\n    CHECK_ARG(dev);\n\n    dev->port = port;\n    dev->addr = DS3231_ADDR;\n    dev->cfg.sda_io_num = sda_gpio;\n    dev->cfg.scl_io_num = scl_gpio;\n#if HELPER_TARGET_IS_ESP32\n    dev->cfg.master.clk_speed = I2C_FREQ_HZ;\n#endif\n    return i2c_dev_create_mutex(dev);\n}\n\nesp_err_t ds3231_free_desc(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    return i2c_dev_delete_mutex(dev);\n}\n\nesp_err_t ds3231_set_time(i2c_dev_t *dev, struct tm *time)\n{\n    CHECK_ARG(dev && time);\n\n    uint8_t data[7];\n\n    /* time/date data */\n    data[0] = dec2bcd(time->tm_sec);\n    data[1] = dec2bcd(time->tm_min);\n    data[2] = dec2bcd(time->tm_hour);\n    /* The week data must be in the range 1 to 7, and to keep the start on the\n     * same day as for tm_wday have it start at 1 on Sunday. */\n    data[3] = dec2bcd(time->tm_wday + 1);\n    data[4] = dec2bcd(time->tm_mday);\n    data[5] = dec2bcd(time->tm_mon + 1);\n    data[6] = dec2bcd(time->tm_year - 100);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_write_reg(dev, DS3231_ADDR_TIME, data, 7));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_set_alarm(i2c_dev_t *dev, ds3231_alarm_t alarms, struct tm *time1,\n        ds3231_alarm1_rate_t option1, struct tm *time2, ds3231_alarm2_rate_t option2)\n{\n    CHECK_ARG(dev);\n\n    int i = 0;\n    uint8_t data[7];\n\n    /* alarm 1 data */\n    if (alarms != DS3231_ALARM_2)\n    {\n        CHECK_ARG(time1);\n        data[i++] = (option1 >= DS3231_ALARM1_MATCH_SEC ? dec2bcd(time1->tm_sec) : DS3231_ALARM_NOTSET);\n        data[i++] = (option1 >= DS3231_ALARM1_MATCH_SECMIN ? dec2bcd(time1->tm_min) : DS3231_ALARM_NOTSET);\n        data[i++] = (option1 >= DS3231_ALARM1_MATCH_SECMINHOUR ? dec2bcd(time1->tm_hour) : DS3231_ALARM_NOTSET);\n        data[i++] = (option1 == DS3231_ALARM1_MATCH_SECMINHOURDAY ? (dec2bcd(time1->tm_wday + 1) & DS3231_ALARM_WDAY) :\n            (option1 == DS3231_ALARM1_MATCH_SECMINHOURDATE ? dec2bcd(time1->tm_mday) : DS3231_ALARM_NOTSET));\n    }\n\n    /* alarm 2 data */\n    if (alarms != DS3231_ALARM_1)\n    {\n        CHECK_ARG(time2);\n        data[i++] = (option2 >= DS3231_ALARM2_MATCH_MIN ? dec2bcd(time2->tm_min) : DS3231_ALARM_NOTSET);\n        data[i++] = (option2 >= DS3231_ALARM2_MATCH_MINHOUR ? dec2bcd(time2->tm_hour) : DS3231_ALARM_NOTSET);\n        data[i++] = (option2 == DS3231_ALARM2_MATCH_MINHOURDAY ? (dec2bcd(time2->tm_wday + 1) & DS3231_ALARM_WDAY) :\n            (option2 == DS3231_ALARM2_MATCH_MINHOURDATE ? dec2bcd(time2->tm_mday) : DS3231_ALARM_NOTSET));\n    }\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_write_reg(dev, (alarms == DS3231_ALARM_2 ? DS3231_ADDR_ALARM2 : DS3231_ADDR_ALARM1), data, i));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\n/* Get a byte containing just the requested bits\n * pass the register address to read, a mask to apply to the register and\n * an uint* for the output\n * you can test this value directly as true/false for specific bit mask\n * of use a mask of 0xff to just return the whole register byte\n * returns true to indicate success\n */\nstatic esp_err_t ds3231_get_flag(i2c_dev_t *dev, uint8_t addr, uint8_t mask, uint8_t *flag)\n{\n    uint8_t data;\n\n    /* get register */\n    esp_err_t res = i2c_dev_read_reg(dev, addr, &data, 1);\n    if (res != ESP_OK)\n        return res;\n\n    /* return only requested flag */\n    *flag = (data & mask);\n    return ESP_OK;\n}\n\n/* Set/clear bits in a byte register, or replace the byte altogether\n * pass the register address to modify, a byte to replace the existing\n * value with or containing the bits to set/clear and one of\n * DS3231_SET/DS3231_CLEAR/DS3231_REPLACE\n * returns true to indicate success\n */\nstatic esp_err_t ds3231_set_flag(i2c_dev_t *dev, uint8_t addr, uint8_t bits, uint8_t mode)\n{\n    uint8_t data;\n\n    /* get status register */\n    esp_err_t res = i2c_dev_read_reg(dev, addr, &data, 1);\n    if (res != ESP_OK)\n        return res;\n    /* clear the flag */\n    if (mode == DS3231_REPLACE)\n        data = bits;\n    else if (mode == DS3231_SET)\n        data |= bits;\n    else\n        data &= ~bits;\n\n    return i2c_dev_write_reg(dev, addr, &data, 1);\n}\n\nesp_err_t ds3231_get_oscillator_stop_flag(i2c_dev_t *dev, bool *flag)\n{\n    CHECK_ARG(dev && flag);\n\n    uint8_t f;\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_get_flag(dev, DS3231_ADDR_STATUS, DS3231_STAT_OSCILLATOR, &f));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    *flag = (f ? true : false);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_clear_oscillator_stop_flag(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_STATUS, DS3231_STAT_OSCILLATOR, DS3231_CLEAR));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_get_alarm_flags(i2c_dev_t *dev, ds3231_alarm_t *alarms)\n{\n    CHECK_ARG(dev && alarms);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_get_flag(dev, DS3231_ADDR_STATUS, DS3231_ALARM_BOTH, (uint8_t *)alarms));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_clear_alarm_flags(i2c_dev_t *dev, ds3231_alarm_t alarms)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_STATUS, alarms, DS3231_CLEAR));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_enable_alarm_ints(i2c_dev_t *dev, ds3231_alarm_t alarms)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, DS3231_CTRL_ALARM_INTS | alarms, DS3231_SET));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_disable_alarm_ints(i2c_dev_t *dev, ds3231_alarm_t alarms)\n{\n    CHECK_ARG(dev);\n\n    /* Just disable specific alarm(s) requested\n     * does not disable alarm interrupts generally (which would enable the squarewave)\n     */\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, alarms, DS3231_CLEAR));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_enable_32khz(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_STATUS, DS3231_STAT_32KHZ, DS3231_SET));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_disable_32khz(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_STATUS, DS3231_STAT_32KHZ, DS3231_CLEAR));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_enable_squarewave(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, DS3231_CTRL_ALARM_INTS, DS3231_CLEAR));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_disable_squarewave(i2c_dev_t *dev)\n{\n    CHECK_ARG(dev);\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, DS3231_CTRL_ALARM_INTS, DS3231_SET));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_set_squarewave_freq(i2c_dev_t *dev, ds3231_sqwave_freq_t freq)\n{\n    CHECK_ARG(dev);\n\n    uint8_t flag = 0;\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_get_flag(dev, DS3231_ADDR_CONTROL, 0xff, &flag));\n    flag &= ~DS3231_SQWAVE_8192HZ;\n    flag |= freq;\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, flag, DS3231_REPLACE));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\n\nesp_err_t ds3231_get_squarewave_freq(i2c_dev_t *dev, ds3231_sqwave_freq_t* freq)\n{\n    CHECK_ARG(dev);\n\n    uint8_t flag = 0;\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, ds3231_get_flag(dev, DS3231_ADDR_CONTROL, 0xff, &flag));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    flag &= DS3231_SQWAVE_8192HZ;\n    *freq = (ds3231_sqwave_freq_t) flag;\n\n    return ESP_OK;\n}\n\n\nesp_err_t ds3231_get_raw_temp(i2c_dev_t *dev, int16_t *temp)\n{\n    CHECK_ARG(dev && temp);\n\n    uint8_t data[2];\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_read_reg(dev, DS3231_ADDR_TEMP, data, sizeof(data)));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    *temp = (int16_t)(int8_t)data[0] << 2 | data[1] >> 6;\n\n    return ESP_OK;\n}\n\nesp_err_t ds3231_get_temp_integer(i2c_dev_t *dev, int8_t *temp)\n{\n    CHECK_ARG(temp);\n\n    int16_t t_int;\n\n    esp_err_t res = ds3231_get_raw_temp(dev, &t_int);\n    if (res == ESP_OK)\n        *temp = t_int >> 2;\n\n    return res;\n}\n\nesp_err_t ds3231_get_temp_float(i2c_dev_t *dev, float *temp)\n{\n    CHECK_ARG(temp);\n\n    int16_t t_int;\n\n    esp_err_t res = ds3231_get_raw_temp(dev, &t_int);\n    if (res == ESP_OK)\n        *temp = t_int * 0.25;\n\n    return res;\n}\n\nesp_err_t ds3231_get_time(i2c_dev_t *dev, struct tm *time)\n{\n    CHECK_ARG(dev && time);\n\n    uint8_t data[7];\n\n    /* read time */\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_read_reg(dev, DS3231_ADDR_TIME, data, 7));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    /* convert to unix time structure */\n    time->tm_sec = bcd2dec(data[0]);\n    time->tm_min = bcd2dec(data[1]);\n    if (data[2] & DS3231_12HOUR_FLAG)\n    {\n        /* 12H */\n        time->tm_hour = bcd2dec(data[2] & DS3231_12HOUR_MASK) - 1;\n        /* AM/PM? */\n        if (data[2] & DS3231_PM_FLAG) time->tm_hour += 12;\n    }\n    else time->tm_hour = bcd2dec(data[2]); /* 24H */\n    time->tm_wday = bcd2dec(data[3]) - 1;\n    time->tm_mday = bcd2dec(data[4]);\n    time->tm_mon  = bcd2dec(data[5] & DS3231_MONTH_MASK) - 1;\n    time->tm_year = bcd2dec(data[6]) + 100;\n    time->tm_isdst = 0;\n    time->tm_yday = days_since_january_1st(time->tm_year, time->tm_mon, time->tm_mday);\n\n    // apply a time zone (if you are not using localtime on the rtc or you want to check/apply DST)\n    //applyTZ(time);\n\n    return ESP_OK;\n}\n\n\nesp_err_t ds3231_set_aging_offset(i2c_dev_t *dev, int8_t age)\n{\n    CHECK_ARG(dev);\n\n    uint8_t age_u8 = (uint8_t) age;\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_write_reg(dev, DS3231_ADDR_AGING, &age_u8, sizeof(uint8_t)));\n\n    /**\n     * To see the effects of the aging register on the 32kHz output\n     * frequency immediately, a manual conversion should be started\n     * after each aging register change.\n     */\n    I2C_DEV_CHECK(dev, ds3231_set_flag(dev, DS3231_ADDR_CONTROL, DS3231_CTRL_TEMPCONV, DS3231_SET));\n\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    return ESP_OK;\n}\n\n\nesp_err_t ds3231_get_aging_offset(i2c_dev_t *dev, int8_t *age)\n{\n    CHECK_ARG(dev && age);\n\n    uint8_t age_u8;\n\n    I2C_DEV_TAKE_MUTEX(dev);\n    I2C_DEV_CHECK(dev, i2c_dev_read_reg(dev, DS3231_ADDR_AGING, &age_u8, sizeof(uint8_t)));\n    I2C_DEV_GIVE_MUTEX(dev);\n\n    *age = (int8_t) age_u8;\n\n    return ESP_OK;\n}\n"
  },
  {
    "path": "Code/main/ds3231.h",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2015 Richard A Burton <richardaburton@gmail.com>\n * Copyright (c) 2016 Bhuvanchandra DV <bhuvanchandra.dv@gmail.com>\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n/**\n * @file ds3231.h\n * @defgroup ds3231 ds3231\n * @{\n *\n * ESP-IDF driver for DS337 RTC and DS3231 high precision RTC module\n *\n * Ported from esp-open-rtos\n *\n * Copyright (c) 2015 Richard A Burton <richardaburton@gmail.com>\\n\n * Copyright (c) 2016 Bhuvanchandra DV <bhuvanchandra.dv@gmail.com>\\n\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * MIT Licensed as described in the file LICENSE\n */\n#ifndef __DS3231_H__\n#define __DS3231_H__\n\n#include <time.h>\n#include <stdbool.h>\n#include <i2cdev.h>\n#include <esp_err.h>\n\n#ifdef\t__cplusplus\nextern \"C\" {\n#endif\n\n#define DS3231_ADDR 0x68 //!< I2C address\n\n/**\n * Alarms\n */\ntypedef enum {\n    DS3231_ALARM_NONE = 0,//!< No alarms\n    DS3231_ALARM_1,       //!< First alarm\n    DS3231_ALARM_2,       //!< Second alarm\n    DS3231_ALARM_BOTH     //!< Both alarms\n} ds3231_alarm_t;\n\n/**\n * First alarm rate\n */\ntypedef enum {\n    DS3231_ALARM1_EVERY_SECOND = 0,\n    DS3231_ALARM1_MATCH_SEC,\n    DS3231_ALARM1_MATCH_SECMIN,\n    DS3231_ALARM1_MATCH_SECMINHOUR,\n    DS3231_ALARM1_MATCH_SECMINHOURDAY,\n    DS3231_ALARM1_MATCH_SECMINHOURDATE\n} ds3231_alarm1_rate_t;\n\n/**\n * Second alarm rate\n */\ntypedef enum {\n    DS3231_ALARM2_EVERY_MIN = 0,\n    DS3231_ALARM2_MATCH_MIN,\n    DS3231_ALARM2_MATCH_MINHOUR,\n    DS3231_ALARM2_MATCH_MINHOURDAY,\n    DS3231_ALARM2_MATCH_MINHOURDATE\n} ds3231_alarm2_rate_t;\n\n/**\n * Squarewave frequency\n */\ntypedef enum {\n    DS3231_SQWAVE_1HZ    = 0x00,\n    DS3231_SQWAVE_1024HZ = 0x08,\n    DS3231_SQWAVE_4096HZ = 0x10,\n    DS3231_SQWAVE_8192HZ = 0x18\n} ds3231_sqwave_freq_t;\n\n/**\n * @brief Initialize device descriptor\n *\n * @param dev I2C device descriptor\n * @param port I2C port\n * @param sda_gpio SDA GPIO\n * @param scl_gpio SCL GPIO\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_init_desc(i2c_dev_t *dev, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio);\n\n/**\n * @brief Free device descriptor\n *\n * @param dev I2C device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_free_desc(i2c_dev_t *dev);\n\n/**\n * @brief Set the time on the RTC\n *\n * Timezone agnostic, pass whatever you like.\n * I suggest using GMT and applying timezone and DST when read back.\n *\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_set_time(i2c_dev_t *dev, struct tm *time);\n\n/**\n * @brief Get the time from the RTC, populates a supplied tm struct\n *\n * @param dev Device descriptor\n * @param[out] time RTC time\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_time(i2c_dev_t *dev, struct tm *time);\n\n/**\n * @brief Set alarms\n *\n * `alarm1` works with seconds, minutes, hours and day of week/month, or fires every second.\n * `alarm2` works with minutes, hours and day of week/month, or fires every minute.\n *\n * Not all combinations are supported, see `DS3231_ALARM1_*` and `DS3231_ALARM2_*` defines\n * for valid options you only need to populate the fields you are using in the `tm` struct,\n * and you can set both alarms at the same time (pass `DS3231_ALARM_1`/`DS3231_ALARM_2`/`DS3231_ALARM_BOTH`).\n *\n * If only setting one alarm just pass 0 for `tm` struct and `option` field for the other alarm.\n * If using ::DS3231_ALARM1_EVERY_SECOND/::DS3231_ALARM2_EVERY_MIN you can pass 0 for `tm` struct.\n *\n * If you want to enable interrupts for the alarms you need to do that separately.\n *\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_set_alarm(i2c_dev_t *dev, ds3231_alarm_t alarms, struct tm *time1,\n        ds3231_alarm1_rate_t option1, struct tm *time2, ds3231_alarm2_rate_t option2);\n\n/**\n * @brief Check if oscillator has previously stopped\n *\n * E.g. no power/battery or disabled\n * sets flag to true if there has been a stop\n *\n * @param dev Device descriptor\n * @param[out] flag Stop flag\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_oscillator_stop_flag(i2c_dev_t *dev, bool *flag);\n\n/**\n * @brief Clear the oscillator stopped flag\n *\n * @param dev Device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_clear_oscillator_stop_flag(i2c_dev_t *dev);\n\n/**\n * @brief Check which alarm(s) have past\n *\n * Sets alarms to `DS3231_ALARM_NONE`/`DS3231_ALARM_1`/`DS3231_ALARM_2`/`DS3231_ALARM_BOTH`\n *\n * @param dev Device descriptor\n * @param[out] alarms Alarms\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_alarm_flags(i2c_dev_t *dev, ds3231_alarm_t *alarms);\n\n/**\n * @brief Clear alarm past flag(s)\n *\n * Pass `DS3231_ALARM_1`/`DS3231_ALARM_2`/`DS3231_ALARM_BOTH`\n *\n * @param dev Device descriptor\n * @param alarms Alarms\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_clear_alarm_flags(i2c_dev_t *dev, ds3231_alarm_t alarms);\n\n/**\n * @brief enable alarm interrupts (and disables squarewave)\n *\n * Pass `DS3231_ALARM_1`/`DS3231_ALARM_2`/`DS3231_ALARM_BOTH`.\n *\n * If you set only one alarm the status of the other is not changed\n * you must also clear any alarm past flag(s) for alarms with\n * interrupt enabled, else it will trigger immediately.\n *\n * @param dev Device descriptor\n * @param alarms Alarms\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_enable_alarm_ints(i2c_dev_t *dev, ds3231_alarm_t alarms);\n\n/**\n * @brief Disable alarm interrupts\n *\n * Does not (re-)enable squarewave\n *\n * @param dev Device descriptor\n * @param alarms Alarm\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_disable_alarm_ints(i2c_dev_t *dev, ds3231_alarm_t alarms);\n\n/**\n * @brief Enable the output of 32khz signal\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_enable_32khz(i2c_dev_t *dev);\n\n/**\n * @brief Disable the output of 32khz signal\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_disable_32khz(i2c_dev_t *dev);\n\n/**\n * @brief Enable the squarewave output\n *\n * Disables alarm interrupt functionality.\n *\n * @param dev Device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_enable_squarewave(i2c_dev_t *dev);\n\n/**\n * @brief Disable the squarewave output\n *\n * Which re-enables alarm interrupts, but individual alarm interrupts also\n * need to be enabled, if not already, before they will trigger.\n *\n * @param dev Device descriptor\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_disable_squarewave(i2c_dev_t *dev);\n\n/**\n * @brief Set the frequency of the squarewave output\n *\n * Does not enable squarewave output.\n *\n * @param dev Device descriptor\n * @param freq Squarewave frequency\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_set_squarewave_freq(i2c_dev_t *dev, ds3231_sqwave_freq_t freq);\n\n/**\n * @brief Get the frequency of the squarewave output\n *\n * Does not enable squarewave output.\n *\n * @param dev Device descriptor\n * @param freq Squarewave frequency to store the output\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_squarewave_freq(i2c_dev_t *dev, ds3231_sqwave_freq_t* freq);\n\n/**\n * @brief Get the raw temperature value\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @param[out] temp Raw temperature value\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_raw_temp(i2c_dev_t *dev, int16_t *temp);\n\n/**\n * @brief Get the temperature as an integer\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @param[out] temp Temperature, degrees Celsius\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_temp_integer(i2c_dev_t *dev, int8_t *temp);\n\n/**\n * @brief Get the temperature as a float\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @param[out] temp Temperature, degrees Celsius\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_temp_float(i2c_dev_t *dev, float *temp);\n\n\n/**\n * @brief Set the aging offset register to a new value.\n *\n * Positive aging values add capacitance to the array,\n * slowing the oscillator frequency. Negative values remove\n * capacitance from the array, increasing the oscillator\n * frequency.\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @param age Aging offset (in range [-128, 127]) to be set\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_set_aging_offset(i2c_dev_t *dev, int8_t age);\n\n\n/**\n * @brief Get the aging offset register.\n *\n * **Supported only by DS3231**\n *\n * @param dev Device descriptor\n * @param[out] age Aging offset in range [-128, 127]\n * @return ESP_OK to indicate success\n */\nesp_err_t ds3231_get_aging_offset(i2c_dev_t *dev, int8_t *age);\n\n\n#ifdef\t__cplusplus\n}\n#endif\n\n/**@}*/\n\n#endif  /* __DS3231_H__ */\n"
  },
  {
    "path": "Code/main/esp_idf_lib_helpers.h",
    "content": "/*\n * Copyright (c) 2019 Tomoyuki Sakurai <y@trombik.org>\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n */\n\n#if !defined(__ESP_IDF_LIB_HELPERS__H__)\n#define __ESP_IDF_LIB_HELPERS__H__\n\n/* XXX this header file does not need to include freertos/FreeRTOS.h.\n * but without it, ESP8266 RTOS SDK does not include `sdkconfig.h` in correct\n * order. as this header depends on sdkconfig.h, sdkconfig.h must be included\n * first. however, the SDK includes this header first, then includes\n * `sdkconfig.h` when freertos/FreeRTOS.h is not explicitly included. an\n * evidence can be found in `build/${COMPONENT}/${COMPONENT}.d` in a failed\n * build.\n */\n#include <freertos/FreeRTOS.h>\n#include <esp_idf_version.h>\n\n#if !defined(ESP_IDF_VERSION) || !defined(ESP_IDF_VERSION_VAL)\n#error Unknown ESP-IDF/ESP8266 RTOS SDK version\n#endif\n\n/* Minimal supported version for ESP32, ESP32S2 */\n#define HELPER_ESP32_MIN_VER    ESP_IDF_VERSION_VAL(3, 3, 5)\n/* Minimal supported version for ESP8266 */\n#define HELPER_ESP8266_MIN_VER  ESP_IDF_VERSION_VAL(3, 3, 0)\n\n/* HELPER_TARGET_IS_ESP32\n * 1 when the target is esp32\n */\n#if defined(CONFIG_IDF_TARGET_ESP32) \\\n        || defined(CONFIG_IDF_TARGET_ESP32S2) \\\n        || defined(CONFIG_IDF_TARGET_ESP32S3) \\\n        || defined(CONFIG_IDF_TARGET_ESP32C2) \\\n        || defined(CONFIG_IDF_TARGET_ESP32C3) \\\n        || defined(CONFIG_IDF_TARGET_ESP32C6) \\\n        || defined(CONFIG_IDF_TARGET_ESP32H2)\n#define HELPER_TARGET_IS_ESP32     (1)\n#define HELPER_TARGET_IS_ESP8266   (0)\n\n/* HELPER_TARGET_IS_ESP8266\n * 1 when the target is esp8266\n */\n#elif defined(CONFIG_IDF_TARGET_ESP8266)\n#define HELPER_TARGET_IS_ESP32     (0)\n#define HELPER_TARGET_IS_ESP8266   (1)\n#else\n#error BUG: cannot determine the target\n#endif\n\n#if HELPER_TARGET_IS_ESP32 && ESP_IDF_VERSION < HELPER_ESP32_MIN_VER\n#error Unsupported ESP-IDF version. Please update!\n#endif\n\n#if HELPER_TARGET_IS_ESP8266 && ESP_IDF_VERSION < HELPER_ESP8266_MIN_VER\n#error Unsupported ESP8266 RTOS SDK version. Please update!\n#endif\n\n/* show the actual values for debugging */\n#if DEBUG\n#define VALUE_TO_STRING(x) #x\n#define VALUE(x) VALUE_TO_STRING(x)\n#define VAR_NAME_VALUE(var) #var \"=\"  VALUE(var)\n#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32C3))\n#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32H2))\n#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32S2))\n#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32))\n#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP8266))\n#pragma message(VAR_NAME_VALUE(ESP_IDF_VERSION_MAJOR))\n#endif\n\n#endif\n"
  },
  {
    "path": "Code/main/ets_sys.h",
    "content": "#if CONFIG_IDF_TARGET_ESP32\n#include <esp32/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32C2\n#include <esp32c2/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32C3\n#include <esp32c3/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32C6\n#include <esp32c6/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32H2\n#include <esp32h2/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32H4\n#include <esp32h4/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32S2\n#include <esp32s2/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP32S3\n#include <esp32s3/rom/ets_sys.h>\n#elif CONFIG_IDF_TARGET_ESP8266\n#include <rom/ets_sys.h>\n#else\n#error \"ets_sys: Unknown target\"\n#endif\n"
  },
  {
    "path": "Code/main/i2cdev.c",
    "content": "\n/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n/**\n * @file i2cdev.c\n *\n * ESP-IDF I2C master thread-safe functions for communication with I2C slave\n *\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * MIT Licensed as described in the file LICENSE\n */\n#include <string.h>\n#include <inttypes.h>\n#include <freertos/FreeRTOS.h>\n#include <freertos/task.h>\n#include <esp_log.h>\n#include \"i2cdev.h\"\n\nstatic const char *TAG = \"i2cdev\";\n\ntypedef struct {\n    SemaphoreHandle_t lock;\n    i2c_config_t config;\n    bool installed;\n} i2c_port_state_t;\n\nstatic i2c_port_state_t states[I2C_NUM_MAX];\n\n#if CONFIG_I2CDEV_NOLOCK\n#define SEMAPHORE_TAKE(port)\n#else\n#define SEMAPHORE_TAKE(port) do { \\\n        if (!xSemaphoreTake(states[port].lock, pdMS_TO_TICKS(1000))) \\\n        { \\\n            ESP_LOGE(TAG, \"Could not take port mutex %d\", port); \\\n            return ESP_ERR_TIMEOUT; \\\n        } \\\n        } while (0)\n#endif\n\n#if CONFIG_I2CDEV_NOLOCK\n#define SEMAPHORE_GIVE(port)\n#else\n#define SEMAPHORE_GIVE(port) do { \\\n        if (!xSemaphoreGive(states[port].lock)) \\\n        { \\\n            ESP_LOGE(TAG, \"Could not give port mutex %d\", port); \\\n            return ESP_FAIL; \\\n        } \\\n        } while (0)\n#endif\n\nesp_err_t i2cdev_init()\n{\n    memset(states, 0, sizeof(states));\n\n#if !CONFIG_I2CDEV_NOLOCK\n    for (int i = 0; i < I2C_NUM_MAX; i++)\n    {\n        states[i].lock = xSemaphoreCreateMutex();\n        if (!states[i].lock)\n        {\n            ESP_LOGE(TAG, \"Could not create port mutex %d\", i);\n            return ESP_FAIL;\n        }\n    }\n#endif\n\n    return ESP_OK;\n}\n\nesp_err_t i2cdev_done()\n{\n    for (int i = 0; i < I2C_NUM_MAX; i++)\n    {\n        if (!states[i].lock) continue;\n\n        if (states[i].installed)\n        {\n            SEMAPHORE_TAKE(i);\n            i2c_driver_delete(i);\n            states[i].installed = false;\n            SEMAPHORE_GIVE(i);\n        }\n#if !CONFIG_I2CDEV_NOLOCK\n        vSemaphoreDelete(states[i].lock);\n#endif\n        states[i].lock = NULL;\n    }\n    return ESP_OK;\n}\n\nesp_err_t i2c_dev_create_mutex(i2c_dev_t *dev)\n{\n#if !CONFIG_I2CDEV_NOLOCK\n    if (!dev) return ESP_ERR_INVALID_ARG;\n\n    ESP_LOGV(TAG, \"[0x%02x at %d] creating mutex\", dev->addr, dev->port);\n\n    dev->mutex = xSemaphoreCreateMutex();\n    if (!dev->mutex)\n    {\n        ESP_LOGE(TAG, \"[0x%02x at %d] Could not create device mutex\", dev->addr, dev->port);\n        return ESP_FAIL;\n    }\n#endif\n\n    return ESP_OK;\n}\n\nesp_err_t i2c_dev_delete_mutex(i2c_dev_t *dev)\n{\n#if !CONFIG_I2CDEV_NOLOCK\n    if (!dev) return ESP_ERR_INVALID_ARG;\n\n    ESP_LOGV(TAG, \"[0x%02x at %d] deleting mutex\", dev->addr, dev->port);\n\n    vSemaphoreDelete(dev->mutex);\n#endif\n    return ESP_OK;\n}\n\nesp_err_t i2c_dev_take_mutex(i2c_dev_t *dev)\n{\n#if !CONFIG_I2CDEV_NOLOCK\n    if (!dev) return ESP_ERR_INVALID_ARG;\n\n    ESP_LOGV(TAG, \"[0x%02x at %d] taking mutex\", dev->addr, dev->port);\n\n    if (!xSemaphoreTake(dev->mutex, pdMS_TO_TICKS(1000)))\n    {\n        ESP_LOGE(TAG, \"[0x%02x at %d] Could not take device mutex\", dev->addr, dev->port);\n        return ESP_ERR_TIMEOUT;\n    }\n#endif\n    return ESP_OK;\n}\n\nesp_err_t i2c_dev_give_mutex(i2c_dev_t *dev)\n{\n#if !CONFIG_I2CDEV_NOLOCK\n    if (!dev) return ESP_ERR_INVALID_ARG;\n\n    ESP_LOGV(TAG, \"[0x%02x at %d] giving mutex\", dev->addr, dev->port);\n\n    if (!xSemaphoreGive(dev->mutex))\n    {\n        ESP_LOGE(TAG, \"[0x%02x at %d] Could not give device mutex\", dev->addr, dev->port);\n        return ESP_FAIL;\n    }\n#endif\n    return ESP_OK;\n}\n\ninline static bool cfg_equal(const i2c_config_t *a, const i2c_config_t *b)\n{\n    return a->scl_io_num == b->scl_io_num\n        && a->sda_io_num == b->sda_io_num\n#if HELPER_TARGET_IS_ESP32\n        && a->master.clk_speed == b->master.clk_speed\n#elif HELPER_TARGET_IS_ESP8266\n        && ((a->clk_stretch_tick && a->clk_stretch_tick == b->clk_stretch_tick)\n            || (!a->clk_stretch_tick && b->clk_stretch_tick == I2CDEV_MAX_STRETCH_TIME)\n        ) // see line 232\n#endif\n        && a->scl_pullup_en == b->scl_pullup_en\n        && a->sda_pullup_en == b->sda_pullup_en;\n}\n\nstatic esp_err_t i2c_setup_port(const i2c_dev_t *dev)\n{\n    if (dev->port >= I2C_NUM_MAX) return ESP_ERR_INVALID_ARG;\n\n    esp_err_t res;\n    if (!cfg_equal(&dev->cfg, &states[dev->port].config) || !states[dev->port].installed)\n    {\n        ESP_LOGD(TAG, \"Reconfiguring I2C driver on port %d\", dev->port);\n        i2c_config_t temp;\n        memcpy(&temp, &dev->cfg, sizeof(i2c_config_t));\n        temp.mode = I2C_MODE_MASTER;\n\n        // Driver reinstallation\n        if (states[dev->port].installed)\n        {\n            i2c_driver_delete(dev->port);\n            states[dev->port].installed = false;\n        }\n#if HELPER_TARGET_IS_ESP32\n#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 1, 0)\n        // See https://github.com/espressif/esp-idf/issues/10163\n        if ((res = i2c_driver_install(dev->port, temp.mode, 0, 0, 0)) != ESP_OK)\n            return res;\n        if ((res = i2c_param_config(dev->port, &temp)) != ESP_OK)\n            return res;\n#else\n        if ((res = i2c_param_config(dev->port, &temp)) != ESP_OK)\n            return res;\n        if ((res = i2c_driver_install(dev->port, temp.mode, 0, 0, 0)) != ESP_OK)\n            return res;\n#endif\n#endif\n#if HELPER_TARGET_IS_ESP8266\n        // Clock Stretch time, depending on CPU frequency\n        temp.clk_stretch_tick = dev->timeout_ticks ? dev->timeout_ticks : I2CDEV_MAX_STRETCH_TIME;\n        if ((res = i2c_driver_install(dev->port, temp.mode)) != ESP_OK)\n            return res;\n        if ((res = i2c_param_config(dev->port, &temp)) != ESP_OK)\n            return res;\n#endif\n        states[dev->port].installed = true;\n\n        memcpy(&states[dev->port].config, &temp, sizeof(i2c_config_t));\n        ESP_LOGD(TAG, \"I2C driver successfully reconfigured on port %d\", dev->port);\n    }\n#if HELPER_TARGET_IS_ESP32\n    int t;\n    if ((res = i2c_get_timeout(dev->port, &t)) != ESP_OK)\n        return res;\n    // Timeout cannot be 0\n    uint32_t ticks = dev->timeout_ticks ? dev->timeout_ticks : I2CDEV_MAX_STRETCH_TIME;\n    if ((ticks != t) && (res = i2c_set_timeout(dev->port, ticks)) != ESP_OK)\n        return res;\n    ESP_LOGD(TAG, \"Timeout: ticks = %\" PRIu32 \" (%\" PRIu32 \" usec) on port %d\", dev->timeout_ticks, dev->timeout_ticks / 80, dev->port);\n#endif\n\n    return ESP_OK;\n}\n\nesp_err_t i2c_dev_probe(const i2c_dev_t *dev, i2c_dev_type_t operation_type)\n{\n    if (!dev) return ESP_ERR_INVALID_ARG;\n\n    SEMAPHORE_TAKE(dev->port);\n\n    esp_err_t res = i2c_setup_port(dev);\n    if (res == ESP_OK)\n    {\n        i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n        i2c_master_start(cmd);\n        i2c_master_write_byte(cmd, dev->addr << 1 | (operation_type == I2C_DEV_READ ? 1 : 0), true);\n        i2c_master_stop(cmd);\n\n        res = i2c_master_cmd_begin(dev->port, cmd, pdMS_TO_TICKS(1000));\n\n        i2c_cmd_link_delete(cmd);\n    }\n\n    SEMAPHORE_GIVE(dev->port);\n\n    return res;\n}\n\nesp_err_t i2c_dev_read(const i2c_dev_t *dev, const void *out_data, size_t out_size, void *in_data, size_t in_size)\n{\n    if (!dev || !in_data || !in_size) return ESP_ERR_INVALID_ARG;\n\n    SEMAPHORE_TAKE(dev->port);\n\n    esp_err_t res = i2c_setup_port(dev);\n    if (res == ESP_OK)\n    {\n        i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n        if (out_data && out_size)\n        {\n            i2c_master_start(cmd);\n            i2c_master_write_byte(cmd, dev->addr << 1, true);\n            i2c_master_write(cmd, (void *)out_data, out_size, true);\n        }\n        i2c_master_start(cmd);\n        i2c_master_write_byte(cmd, (dev->addr << 1) | 1, true);\n        i2c_master_read(cmd, in_data, in_size, I2C_MASTER_LAST_NACK);\n        i2c_master_stop(cmd);\n\n        res = i2c_master_cmd_begin(dev->port, cmd, pdMS_TO_TICKS(1000));\n        if (res != ESP_OK)\n            ESP_LOGE(TAG, \"Could not read from device [0x%02x at %d]: %d (%s)\", dev->addr, dev->port, res, esp_err_to_name(res));\n\n        i2c_cmd_link_delete(cmd);\n    }\n\n    SEMAPHORE_GIVE(dev->port);\n    return res;\n}\n\nesp_err_t i2c_dev_write(const i2c_dev_t *dev, const void *out_reg, size_t out_reg_size, const void *out_data, size_t out_size)\n{\n    if (!dev || !out_data || !out_size) return ESP_ERR_INVALID_ARG;\n\n    SEMAPHORE_TAKE(dev->port);\n\n    esp_err_t res = i2c_setup_port(dev);\n    if (res == ESP_OK)\n    {\n        i2c_cmd_handle_t cmd = i2c_cmd_link_create();\n        i2c_master_start(cmd);\n        i2c_master_write_byte(cmd, dev->addr << 1, true);\n        if (out_reg && out_reg_size)\n            i2c_master_write(cmd, (void *)out_reg, out_reg_size, true);\n        i2c_master_write(cmd, (void *)out_data, out_size, true);\n        i2c_master_stop(cmd);\n        res = i2c_master_cmd_begin(dev->port, cmd, pdMS_TO_TICKS(1000));\n        if (res != ESP_OK)\n            ESP_LOGE(TAG, \"Could not write to device [0x%02x at %d]: %d (%s)\", dev->addr, dev->port, res, esp_err_to_name(res));\n        i2c_cmd_link_delete(cmd);\n    }\n\n    SEMAPHORE_GIVE(dev->port);\n    return res;\n}\n\nesp_err_t i2c_dev_read_reg(const i2c_dev_t *dev, uint8_t reg, void *in_data, size_t in_size)\n{\n    return i2c_dev_read(dev, &reg, 1, in_data, in_size);\n}\n\nesp_err_t i2c_dev_write_reg(const i2c_dev_t *dev, uint8_t reg, const void *out_data, size_t out_size)\n{\n    return i2c_dev_write(dev, &reg, 1, out_data, out_size);\n}\n"
  },
  {
    "path": "Code/main/i2cdev.h",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n/**\n * @file i2cdev.h\n * @defgroup i2cdev i2cdev\n * @{\n *\n * ESP-IDF I2C master thread-safe functions for communication with I2C slave\n *\n * Copyright (c) 2018 Ruslan V. Uss <unclerus@gmail.com>\n *\n * MIT Licensed as described in the file LICENSE\n */\n#ifndef __I2CDEV_H__\n#define __I2CDEV_H__\n\n#include <driver/i2c.h>\n#include <freertos/FreeRTOS.h>\n#include <freertos/semphr.h>\n#include <esp_err.h>\n#include <esp_idf_lib_helpers.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#if HELPER_TARGET_IS_ESP8266\n\n#define I2CDEV_MAX_STRETCH_TIME 0xffffffff\n\n#else\n\n#include <soc/i2c_reg.h>\n#if defined(I2C_TIME_OUT_VALUE_V)\n#define I2CDEV_MAX_STRETCH_TIME I2C_TIME_OUT_VALUE_V\n#elif defined(I2C_TIME_OUT_REG_V)\n#define I2CDEV_MAX_STRETCH_TIME I2C_TIME_OUT_REG_V\n#else\n#define I2CDEV_MAX_STRETCH_TIME 0x00ffffff\n#endif\n\n#endif /* HELPER_TARGET_IS_ESP8266 */\n\n/**\n * I2C device descriptor\n */\ntypedef struct\n{\n    i2c_port_t port;         //!< I2C port number\n    i2c_config_t cfg;        //!< I2C driver configuration\n    uint8_t addr;            //!< Unshifted address\n    SemaphoreHandle_t mutex; //!< Device mutex\n    uint32_t timeout_ticks;  /*!< HW I2C bus timeout (stretch time), in ticks. 80MHz APB clock\n                                  ticks for ESP-IDF, CPU ticks for ESP8266.\n                                  When this value is 0, I2CDEV_MAX_STRETCH_TIME will be used */\n} i2c_dev_t;\n\n/**\n * I2C transaction type\n */\ntypedef enum {\n    I2C_DEV_WRITE = 0, /**< Write operation */\n    I2C_DEV_READ       /**< Read operation */\n} i2c_dev_type_t;\n\n/**\n * @brief Init library\n *\n * The function must be called before any other\n * functions of this library.\n *\n * @return ESP_OK on success\n */\nesp_err_t i2cdev_init();\n\n/**\n * @brief Finish work with library\n *\n * Uninstall i2c drivers.\n *\n * @return ESP_OK on success\n */\nesp_err_t i2cdev_done();\n\n/**\n * @brief Create mutex for device descriptor\n *\n * This function does nothing if option CONFIG_I2CDEV_NOLOCK is enabled.\n *\n * @param dev Device descriptor\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_create_mutex(i2c_dev_t *dev);\n\n/**\n * @brief Delete mutex for device descriptor\n *\n * This function does nothing if option CONFIG_I2CDEV_NOLOCK is enabled.\n *\n * @param dev Device descriptor\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_delete_mutex(i2c_dev_t *dev);\n\n/**\n * @brief Take device mutex\n *\n * This function does nothing if option CONFIG_I2CDEV_NOLOCK is enabled.\n *\n * @param dev Device descriptor\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_take_mutex(i2c_dev_t *dev);\n\n/**\n * @brief Give device mutex\n *\n * This function does nothing if option CONFIG_I2CDEV_NOLOCK is enabled.\n *\n * @param dev Device descriptor\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_give_mutex(i2c_dev_t *dev);\n\n/**\n * @brief Check the availability of the device\n *\n * Issue an operation of \\p operation_type to the I2C device then stops.\n *\n * @param dev Device descriptor\n * @param operation_type Operation type\n * @return ESP_OK if device is available\n */\nesp_err_t i2c_dev_probe(const i2c_dev_t *dev, i2c_dev_type_t operation_type);\n\n/**\n * @brief Read from slave device\n *\n * Issue a send operation of \\p out_data register address, followed by reading \\p in_size bytes\n * from slave into \\p in_data .\n * Function is thread-safe.\n *\n * @param dev Device descriptor\n * @param out_data Pointer to data to send if non-null\n * @param out_size Size of data to send\n * @param[out] in_data Pointer to input data buffer\n * @param in_size Number of byte to read\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_read(const i2c_dev_t *dev, const void *out_data,\n        size_t out_size, void *in_data, size_t in_size);\n\n/**\n * @brief Write to slave device\n *\n * Write \\p out_size bytes from \\p out_data to slave into \\p out_reg register address.\n * Function is thread-safe.\n *\n * @param dev Device descriptor\n * @param out_reg Pointer to register address to send if non-null\n * @param out_reg_size Size of register address\n * @param out_data Pointer to data to send\n * @param out_size Size of data to send\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_write(const i2c_dev_t *dev, const void *out_reg,\n        size_t out_reg_size, const void *out_data, size_t out_size);\n\n/**\n * @brief Read from register with an 8-bit address\n *\n * Shortcut to ::i2c_dev_read().\n *\n * @param dev Device descriptor\n * @param reg Register address\n * @param[out] in_data Pointer to input data buffer\n * @param in_size Number of byte to read\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_read_reg(const i2c_dev_t *dev, uint8_t reg,\n        void *in_data, size_t in_size);\n\n/**\n * @brief Write to register with an 8-bit address\n *\n * Shortcut to ::i2c_dev_write().\n *\n * @param dev Device descriptor\n * @param reg Register address\n * @param out_data Pointer to data to send\n * @param out_size Size of data to send\n * @return ESP_OK on success\n */\nesp_err_t i2c_dev_write_reg(const i2c_dev_t *dev, uint8_t reg,\n        const void *out_data, size_t out_size);\n\n#define I2C_DEV_TAKE_MUTEX(dev) do { \\\n        esp_err_t __ = i2c_dev_take_mutex(dev); \\\n        if (__ != ESP_OK) return __;\\\n    } while (0)\n\n#define I2C_DEV_GIVE_MUTEX(dev) do { \\\n        esp_err_t __ = i2c_dev_give_mutex(dev); \\\n        if (__ != ESP_OK) return __;\\\n    } while (0)\n\n#define I2C_DEV_CHECK(dev, X) do { \\\n        esp_err_t ___ = X; \\\n        if (___ != ESP_OK) { \\\n            I2C_DEV_GIVE_MUTEX(dev); \\\n            return ___; \\\n        } \\\n    } while (0)\n\n#define I2C_DEV_CHECK_LOGE(dev, X, msg, ...) do { \\\n        esp_err_t ___ = X; \\\n        if (___ != ESP_OK) { \\\n            I2C_DEV_GIVE_MUTEX(dev); \\\n            ESP_LOGE(TAG, msg, ## __VA_ARGS__); \\\n            return ___; \\\n        } \\\n    } while (0)\n\n#ifdef __cplusplus\n}\n#endif\n\n/**@}*/\n\n#endif /* __I2CDEV_H__ */\n"
  },
  {
    "path": "Code/main/icm42670.c",
    "content": "/*\n * SPDX-License-Identifier: ISC\n *\n * Copyright (c) 2022 Jan Veeh <jan.veeh@motius.de>\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n */\n\n/**\n * @file icm42670.c\n *\n * ESP-IDF driver for TDK ICM-42670-P IMU (found on ESP-RS board)\n *\n * Copyright (c) 2022 Jan Veeh (jan.veeh@motius.de)\n *\n * ISC Licensed as described in the file LICENSE\n *\n * Open TODOs:\n * - FIFO reading and handling\n * - APEX functions like pedometer, tilt-detection, low-g detection, freefall detection, ...\n *\n *\n */\n\n#include <freertos/FreeRTOS.h>\n#include <freertos/task.h>\n#include <esp_log.h>\n#include <esp_idf_lib_helpers.h>\n#include <ets_sys.h>\n#include \"icm42670.h\"\n\n#define I2C_FREQ_HZ 1000000 // 1MHz\n\nstatic const char *TAG = \"icm42670\";\n\n// register structure definitions\n#define ICM42670_MCLK_RDY_BITS  0x08 // ICM42670_REG_MCLK_RDY<3>\n#define ICM42670_MCLK_RDY_SHIFT 3    // ICM42670_REG_MCLK_RDY<3>\n\n#define ICM42670_SPI_AP_4WIRE_BITS  0x04 // ICM42670_REG_DEVICE_CONFIG<2>\n#define ICM42670_SPI_AP_4WIRE_SHIFT 2    // ICM42670_REG_DEVICE_CONFIG<2>\n#define ICM42670_SPI_MODE_BITS      0x01 // ICM42670_REG_DEVICE_CONFIG<0>\n#define ICM42670_SPI_MODE_SHIFT     0    // ICM42670_REG_DEVICE_CONFIG<0>\n\n#define ICM42670_SOFT_RESET_DEVICE_CONFIG_BITS  0x10 // ICM42670_REG_SIGNAL_PATH_RESET<4>\n#define ICM42670_SOFT_RESET_DEVICE_CONFIG_SHIFT 4    // ICM42670_REG_SIGNAL_PATH_RESET<4>\n#define ICM42670_FIFO_FLUSH_BITS                0x04 // ICM42670_REG_SIGNAL_PATH_RESET<2>\n#define ICM42670_FIFO_FLUSH_SHIFT               2    // ICM42670_REG_SIGNAL_PATH_RESET<2>\n\n#define ICM42670_I3C_DDR_SLEW_RATE_BITS  0x38 // ICM42670_REG_DRIVE_CONFIG1<5:3>\n#define ICM42670_I3C_DDR_SLEW_RATE_SHIFT 3    // ICM42670_REG_DRIVE_CONFIG1<5:3>\n#define ICM42670_I3C_SDR_SLEW_RATE_BITS  0x07 // ICM42670_REG_DRIVE_CONFIG1<2:0>\n#define ICM42670_I3C_SDR_SLEW_RATE_SHIFT 0    // ICM42670_REG_DRIVE_CONFIG1<2:0>\n\n#define ICM42670_I2C_DDR_SLEW_RATE_BITS  0x38 // ICM42670_REG_DRIVE_CONFIG2<5:3>\n#define ICM42670_I2C_DDR_SLEW_RATE_SHIFT 3    // ICM42670_REG_DRIVE_CONFIG2<5:3>\n#define ICM42670_I2C_SDR_SLEW_RATE_BITS  0x07 // ICM42670_REG_DRIVE_CONFIG2<2:0>\n#define ICM42670_I2C_SDR_SLEW_RATE_SHIFT 0    // ICM42670_REG_DRIVE_CONFIG2<2:0>\n\n#define ICM42670_SPI_SLEW_RATE_BITS  0x07 // ICM42670_REG_DRIVE_CONFIG3<2:0>\n#define ICM42670_SPI_SLEW_RATE_SHIFT 0    // ICM42670_REG_DRIVE_CONFIG3<2:0>\n\n#define ICM42670_INT2_MODE_BITS           0x20 // ICM42670_REG_INT_CONFIG<5>\n#define ICM42670_INT2_MODE_SHIFT          5    // ICM42670_REG_INT_CONFIG<5>\n#define ICM42670_INT2_DRIVE_CIRCUIT_BITS  0x10 // ICM42670_REG_INT_CONFIG<4>\n#define ICM42670_INT2_DRIVE_CIRCUIT_SHIFT 4    // ICM42670_REG_INT_CONFIG<4>\n#define ICM42670_INT2_POLARITY_BITS       0x08 // ICM42670_REG_INT_CONFIG<3>\n#define ICM42670_INT2_POLARITY_SHIFT      3    // ICM42670_REG_INT_CONFIG<3>\n#define ICM42670_INT1_MODE_BITS           0x04 // ICM42670_REG_INT_CONFIG<2>\n#define ICM42670_INT1_MODE_SHIFT          2    // ICM42670_REG_INT_CONFIG<2>\n#define ICM42670_INT1_DRIVE_CIRCUIT_BITS  0x02 // ICM42670_REG_INT_CONFIG<1>\n#define ICM42670_INT1_DRIVE_CIRCUIT_SHIFT 1    // ICM42670_REG_INT_CONFIG<1>\n#define ICM42670_INT1_POLARITY_BITS       0x01 // ICM42670_REG_INT_CONFIG<0>\n#define ICM42670_INT1_POLARITY_SHIFT      0    // ICM42670_REG_INT_CONFIG<0>\n\n#define ICM42670_ACCEL_LP_CLK_SEL_BITS  0x80 // ICM42670_REG_PWR_MGMT0<7>\n#define ICM42670_ACCEL_LP_CLK_SEL_SHIFT 7    // ICM42670_REG_PWR_MGMT0<7>\n#define ICM42670_IDLE_BITS              0x10 // ICM42670_REG_PWR_MGMT0<4>\n#define ICM42670_IDLE_SHIFT             4    // ICM42670_REG_PWR_MGMT0<4>\n#define ICM42670_GYRO_MODE_BITS         0x0C // ICM42670_REG_PWR_MGMT0<3:2>\n#define ICM42670_GYRO_MODE_SHIFT        2    // ICM42670_REG_PWR_MGMT0<3:2>\n#define ICM42670_ACCEL_MODE_BITS        0x03 // ICM42670_REG_PWR_MGMT0<1:0>\n#define ICM42670_ACCEL_MODE_SHIFT       0    // ICM42670_REG_PWR_MGMT0<1:0>\n\n#define ICM42670_GYRO_UI_FS_SEL_BITS  0x60 // ICM42670_REG_GYRO_CONFIG0<6:5>\n#define ICM42670_GYRO_UI_FS_SEL_SHIFT 5    // ICM42670_REG_GYRO_CONFIG0<6:5>\n#define ICM42670_GYRO_ODR_BITS        0x0F // ICM42670_REG_GYRO_CONFIG0<3:0>\n#define ICM42670_GYRO_ODR_SHIFT       0    // ICM42670_REG_GYRO_CONFIG0<3:0>\n\n#define ICM42670_ACCEL_UI_FS_SEL_BITS  0x60 // ICM42670_REG_ACCEL_CONFIG0<6:5>\n#define ICM42670_ACCEL_UI_FS_SEL_SHIFT 5    // ICM42670_REG_ACCEL_CONFIG0<6:5>\n#define ICM42670_ACCEL_ODR_BITS        0x0F // ICM42670_REG_ACCEL_CONFIG0<3:0>\n#define ICM42670_ACCEL_ODR_SHIFT       0    // ICM42670_REG_ACCEL_CONFIG0<3:0>\n\n#define ICM42670_TEMP_FILT_BW_BITS  0x70 // ICM42670_REG_TEMP_CONFIG0<6:4>\n#define ICM42670_TEMP_FILT_BW_SHIFT 4    // ICM42670_REG_TEMP_CONFIG0<6:4>\n\n#define ICM42670_GYRO_UI_FILT_BW_BITS  0x07 // ICM42670_REG_GYRO_CONFIG1<2:0>\n#define ICM42670_GYRO_UI_FILT_BW_SHIFT 0    // ICM42670_REG_GYRO_CONFIG1<2:0>\n\n#define ICM42670_ACCEL_UI_AVG_BITS      0x70 // ICM42670_REG_ACCEL_CONFIG1<6:4>\n#define ICM42670_ACCEL_UI_AVG_SHIFT     4    // ICM42670_REG_ACCEL_CONFIG1<6:4>\n#define ICM42670_ACCEL_UI_FILT_BW_BITS  0x07 // ICM42670_REG_ACCEL_CONFIG1<2:0>\n#define ICM42670_ACCEL_UI_FILT_BW_SHIFT 0    // ICM42670_REG_ACCEL_CONFIG1<2:0>\n\n#define ICM42670_DMP_POWER_SAVE_EN_BITS  0x08 // ICM42670_REG_APEX_CONFIG0<3>\n#define ICM42670_DMP_POWER_SAVE_EN_SHIFT 3    // ICM42670_REG_APEX_CONFIG0<3>\n#define ICM42670_DMP_INIT_EN_BITS        0x04 // ICM42670_REG_APEX_CONFIG0<2>\n#define ICM42670_DMP_INIT_EN_SHIFT       2    // ICM42670_REG_APEX_CONFIG0<2>\n#define ICM42670_DMP_MEM_RESET_EN_BITS   0x01 // ICM42670_REG_APEX_CONFIG0<0>\n#define ICM42670_DMP_MEM_RESET_EN_SHIFT  0    // ICM42670_REG_APEX_CONFIG0<0>\n\n#define ICM42670_SMD_ENABLE_BITS   0x40 // ICM42670_REG_APEX_CONFIG1<6>\n#define ICM42670_SMD_ENABLE_SHIFT  6    // ICM42670_REG_APEX_CONFIG1<6>\n#define ICM42670_FF_ENABLE_BITS    0x20 // ICM42670_REG_APEX_CONFIG1<5>\n#define ICM42670_FF_ENABLE_SHIFT   5    // ICM42670_REG_APEX_CONFIG1<5>\n#define ICM42670_TILT_ENABLE_BITS  0x10 // ICM42670_REG_APEX_CONFIG1<4>\n#define ICM42670_TILT_ENABLE_SHIFT 4    // ICM42670_REG_APEX_CONFIG1<4>\n#define ICM42670_PED_ENABLE_BITS   0x08 // ICM42670_REG_APEX_CONFIG1<3>\n#define ICM42670_PED_ENABLE_SHIFT  3    // ICM42670_REG_APEX_CONFIG1<3>\n#define ICM42670_DMP_ODR_BITS      0x03 // ICM42670_REG_APEX_CONFIG1<1:0>\n#define ICM42670_DMP_ODR_SHIFT     0    // ICM42670_REG_APEX_CONFIG1<1:0>\n\n#define ICM42670_WOM_INT_DUR_BITS   0x18 // ICM42670_REG_WOM_CONFIG<4:3>\n#define ICM42670_WOM_INT_DUR_SHIFT  3    // ICM42670_REG_WOM_CONFIG<4:3>\n#define ICM42670_WOM_INT_MODE_BITS  0x04 // ICM42670_REG_WOM_CONFIG<2>\n#define ICM42670_WOM_INT_MODE_SHIFT 2    // ICM42670_REG_WOM_CONFIG<2>\n#define ICM42670_WOM_MODE_BITS      0x02 // ICM42670_REG_WOM_CONFIG<1>\n#define ICM42670_WOM_MODE_SHIFT     1    // ICM42670_REG_WOM_CONFIG<1>\n#define ICM42670_WOM_EN_BITS        0x01 // ICM42670_REG_WOM_CONFIG<0>\n#define ICM42670_WOM_EN_SHIFT       0    // ICM42670_REG_WOM_CONFIG<0>\n\n#define ICM42670_FIFO_MODE_BITS    0x02 // ICM42670_REG_FIFO_CONFIG1<1>\n#define ICM42670_FIFO_MODE_SHIFT   1    // ICM42670_REG_FIFO_CONFIG1<1>\n#define ICM42670_FIFO_BYPASS_BITS  0x01 // ICM42670_REG_FIFO_CONFIG1<0>\n#define ICM42670_FIFO_BYPASS_SHIFT 0    // ICM42670_REG_FIFO_CONFIG1<0>\n\n#define ICM42670_ST_INT1_EN_BITS          0x80 // ICM42670_REG_INT_SOURCE0<7>\n#define ICM42670_ST_INT1_EN_SHIFT         7    // ICM42670_REG_INT_SOURCE0<7>\n#define ICM42670_FSYNC_INT1_EN_BITS       0x40 // ICM42670_REG_INT_SOURCE0<6>\n#define ICM42670_FSYNC_INT1_EN_SHIFT      6    // ICM42670_REG_INT_SOURCE0<6>\n#define ICM42670_PLL_RDY_INT1_EN_BITS     0x20 // ICM42670_REG_INT_SOURCE0<5>\n#define ICM42670_PLL_RDY_INT1_EN_SHIFT    5    // ICM42670_REG_INT_SOURCE0<5>\n#define ICM42670_RESET_DONE_INT1_EN_BITS  0x10 // ICM42670_REG_INT_SOURCE0<4>\n#define ICM42670_RESET_DONE_INT1_EN_SHIFT 4    // ICM42670_REG_INT_SOURCE0<4>\n#define ICM42670_DRDY_INT1_EN_BITS        0x08 // ICM42670_REG_INT_SOURCE0<3>\n#define ICM42670_DRDY_INT1_EN_SHIFT       3    // ICM42670_REG_INT_SOURCE0<3>\n#define ICM42670_FIFO_THS_INT1_EN_BITS    0x04 // ICM42670_REG_INT_SOURCE0<2>\n#define ICM42670_FIFO_THS_INT1_EN_SHIFT   2    // ICM42670_REG_INT_SOURCE0<2>\n#define ICM42670_FIFO_FULL_INT1_EN_BITS   0x02 // ICM42670_REG_INT_SOURCE0<1>\n#define ICM42670_FIFO_FULL_INT1_EN_SHIFT  1    // ICM42670_REG_INT_SOURCE0<1>\n#define ICM42670_AGC_RDY_INT1_EN_BITS     0x01 // ICM42670_REG_INT_SOURCE0<0>\n#define ICM42670_AGC_RDY_INT1_EN_SHIFT    0    // ICM42670_REG_INT_SOURCE0<0>\n\n#define ICM42670_I3C_PROTOCOL_ERROR_INT1_EN_BITS  0x40 // ICM42670_REG_INT_SOURCE1<6>\n#define ICM42670_I3C_PROTOCOL_ERROR_INT1_EN_SHIFT 6    // ICM42670_REG_INT_SOURCE1<6>\n#define ICM42670_SMD_INT1_EN_BITS                 0x08 // ICM42670_REG_INT_SOURCE1<3>\n#define ICM42670_SMD_INT1_EN_SHIFT                3    // ICM42670_REG_INT_SOURCE1<3>\n#define ICM42670_WOM_Z_INT1_EN_BITS               0x04 // ICM42670_REG_INT_SOURCE1<2>\n#define ICM42670_WOM_Z_INT1_EN_SHIFT              2    // ICM42670_REG_INT_SOURCE1<2>\n#define ICM42670_WOM_Y_INT1_EN_BITS               0x02 // ICM42670_REG_INT_SOURCE1<1>\n#define ICM42670_WOM_Y_INT1_EN_SHIFT              1    // ICM42670_REG_INT_SOURCE1<1>\n#define ICM42670_WOM_X_INT1_EN_BITS               0x01 // ICM42670_REG_INT_SOURCE1<0>\n#define ICM42670_WOM_X_INT1_EN_SHIFT              0    // ICM42670_REG_INT_SOURCE1<0>\n\n// ICM42670_REG_INT_SOURCE3 and ICM42670_REG_INT_SOURCE4 same as 0 and 1\n\n#define ICM42670_DMP_IDLE_BITS        0x04 // ICM42670_REG_APEX_DATA3<2>\n#define ICM42670_DMP_IDLE_SHIFT       2    // ICM42670_REG_APEX_DATA3<2>\n#define ICM42670_ACTIVITY_CLASS_BITS  0x03 // ICM42670_REG_APEX_DATA3<1:0>\n#define ICM42670_ACTIVITY_CLASS_SHIFT 0    // ICM42670_REG_APEX_DATA3<1:0>\n\n#define ICM42670_FIFO_COUNT_FORMAT_BITS   0x40 // ICM42670_REG_INTF_CONFIG0<6>\n#define ICM42670_FIFO_COUNT_FORMAT_SHIFT  6    // ICM42670_REG_INTF_CONFIG0<6>\n#define ICM42670_FIFO_COUNT_ENDIAN_BITS   0x20 // ICM42670_REG_INTF_CONFIG0<5>\n#define ICM42670_FIFO_COUNT_ENDIAN_SHIFT  5    // ICM42670_REG_INTF_CONFIG0<5>\n#define ICM42670_SENSOR_DATA_ENDIAN_BITS  0x10 // ICM42670_REG_INTF_CONFIG0<4>\n#define ICM42670_SENSOR_DATA_ENDIAN_SHIFT 4    // ICM42670_REG_INTF_CONFIG0<4>\n\n#define ICM42670_I3C_SDR_EN_BITS  0x08 // ICM42670_REG_INTF_CONFIG1<3>\n#define ICM42670_I3C_SDR_EN_SHIFT 3    // ICM42670_REG_INTF_CONFIG1<3>\n#define ICM42670_I3C_DDR_EN_BITS  0x04 // ICM42670_REG_INTF_CONFIG1<2>\n#define ICM42670_I3C_DDR_EN_SHIFT 2    // ICM42670_REG_INTF_CONFIG1<2>\n#define ICM42670_CLKSEL_BITS      0x03 // ICM42670_REG_INTF_CONFIG1<1:0>\n#define ICM42670_CLKSEL_SHIFT     0    // ICM42670_REG_INTF_CONFIG1<1:0>\n\n#define ICM42670_DATA_RDY_INT_BITS  0x01 // ICM42670_REG_INT_STATUS_DRDY<0>\n#define ICM42670_DATA_RDY_INT_SHIFT 0    // ICM42670_REG_INT_STATUS_DRDY<0>\n\n#define ICM42670_ST_INT_BITS          0x80 // ICM42670_REG_INT_STATUS<7>\n#define ICM42670_ST_INT_SHIFT         7    // ICM42670_REG_INT_STATUS<7>\n#define ICM42670_FSYNC_INT_BITS       0x40 // ICM42670_REG_INT_STATUS<6>\n#define ICM42670_FSYNC_INT_SHIFT      6    // ICM42670_REG_INT_STATUS<6>\n#define ICM42670_PLL_RDY_INT_BITS     0x20 // ICM42670_REG_INT_STATUS<5>\n#define ICM42670_PLL_RDY_INT_SHIFT    5    // ICM42670_REG_INT_STATUS<5>\n#define ICM42670_RESET_DONE_INT_BITS  0x10 // ICM42670_REG_INT_STATUS<4>\n#define ICM42670_RESET_DONE_INT_SHIFT 4    // ICM42670_REG_INT_STATUS<4>\n#define ICM42670_FIFO_THS_INT_BITS    0x04 // ICM42670_REG_INT_STATUS<2>\n#define ICM42670_FIFO_THS_INT_SHIFT   2    // ICM42670_REG_INT_STATUS<2>\n#define ICM42670_FIFO_FULL_INT_BITS   0x02 // ICM42670_REG_INT_STATUS<1>\n#define ICM42670_FIFO_FULL_INT_SHIFT  1    // ICM42670_REG_INT_STATUS<1>\n#define ICM42670_AGC_RDY_INT_BITS     0x01 // ICM42670_REG_INT_STATUS<0>\n#define ICM42670_AGC_RDY_INT_SHIFT    0    // ICM42670_REG_INT_STATUS<0>\n\n#define ICM42670_SMD_INT_BITS    0x08 // ICM42670_REG_INT_STATUS2<3>\n#define ICM42670_SMD_INT_SHIFT   3    // ICM42670_REG_INT_STATUS2<3>\n#define ICM42670_WOM_X_INT_BITS  0x04 // ICM42670_REG_INT_STATUS2<2>\n#define ICM42670_WOM_X_INT_SHIFT 2    // ICM42670_REG_INT_STATUS2<2>\n#define ICM42670_WOM_Y_INT_BITS  0x02 // ICM42670_REG_INT_STATUS2<1>\n#define ICM42670_WOM_Y_INT_SHIFT 1    // ICM42670_REG_INT_STATUS2<1>\n#define ICM42670_WOM_Z_INT_BITS  0x01 // ICM42670_REG_INT_STATUS2<0>\n#define ICM42670_WOM_Z_INT_SHIFT 0    // ICM42670_REG_INT_STATUS2<0>\n\n#define ICM42670_STEP_DET_INT_BITS      0x20 // ICM42670_REG_INT_STATUS3<5>\n#define ICM42670_STEP_DET_INT_SHIFT     5    // ICM42670_REG_INT_STATUS3<5>\n#define ICM42670_STEP_CNT_OVF_INT_BITS  0x10 // ICM42670_REG_INT_STATUS3<4>\n#define ICM42670_STEP_CNT_OVF_INT_SHIFT 4    // ICM42670_REG_INT_STATUS3<4>\n#define ICM42670_TILT_DET_INT_BITS      0x08 // ICM42670_REG_INT_STATUS3<3>\n#define ICM42670_TILT_DET_INT_SHIFT     3    // ICM42670_REG_INT_STATUS3<3>\n#define ICM42670_FF_DET_INT_BITS        0x04 // ICM42670_REG_INT_STATUS3<2>\n#define ICM42670_FF_DET_INT_SHIFT       2    // ICM42670_REG_INT_STATUS3<2>\n#define ICM42670_LOWG_DET_INT_BITS      0x02 // ICM42670_REG_INT_STATUS3<1>\n#define ICM42670_LOWG_DET_INT_SHIFT     1    // ICM42670_REG_INT_STATUS3<1>\n\n#define CHECK(x)                                                                                                       \\\n    do                                                                                                                 \\\n    {                                                                                                                  \\\n        esp_err_t __;                                                                                                  \\\n        if ((__ = x) != ESP_OK)                                                                                        \\\n            return __;                                                                                                 \\\n    }                                                                                                                  \\\n    while (0)\n#define CHECK_ARG(VAL)                                                                                                 \\\n    do                                                                                                                 \\\n    {                                                                                                                  \\\n        if (!(VAL))                                                                                                    \\\n            return ESP_ERR_INVALID_ARG;                                                                                \\\n    }                                                                                                                  \\\n    while (0)\n\nstatic inline esp_err_t write_register(icm42670_t *dev, uint8_t reg, uint8_t value)\n{\n    CHECK_ARG(dev);\n\n    return i2c_dev_write_reg(&dev->i2c_dev, reg, &value, 1);\n}\n\nstatic inline esp_err_t read_register(icm42670_t *dev, uint8_t reg, uint8_t *value)\n{\n    CHECK_ARG(dev && value);\n\n    return i2c_dev_read_reg(&dev->i2c_dev, reg, value, 1);\n}\n\nstatic inline esp_err_t read_register_16(icm42670_t *dev, uint8_t upper_byte_reg, int16_t *value)\n{\n    CHECK_ARG(dev && value);\n\n    esp_err_t err;\n    uint8_t reg_0, reg_1;\n    err = read_register(dev, upper_byte_reg, &reg_1);\n    err = read_register(dev, upper_byte_reg + 1, &reg_0);\n    *value = reg_0 | (reg_1 << 8);\n\n    return err;\n}\n\nstatic inline esp_err_t manipulate_register(icm42670_t *dev, uint8_t reg_addr, uint8_t mask, uint8_t shift,\n    uint8_t value)\n{\n    CHECK_ARG(dev);\n\n    uint8_t reg;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, reg_addr, &reg));\n    reg = (reg & ~mask) | (value << shift);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, reg_addr, reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nstatic inline esp_err_t read_mreg_register(icm42670_t *dev, icm42670_mreg_number_t mreg_num, uint8_t reg,\n    uint8_t *value)\n{\n    CHECK_ARG(dev && value);\n\n    bool mclk_rdy;\n    CHECK(icm42670_get_mclk_rdy(dev, &mclk_rdy));\n    if (!mclk_rdy)\n    {\n        ESP_LOGE(TAG, \"MCLK not running, required to access MREG\");\n        return ESP_ERR_INVALID_RESPONSE;\n    }\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_BLK_SEL_R, mreg_num));\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_MADDR_R, reg));\n    ets_delay_us(10); // Wait for 10us until MREG write is complete\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, ICM42670_REG_M_R, value));\n    ets_delay_us(10);\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nstatic inline esp_err_t write_mreg_register(icm42670_t *dev, icm42670_mreg_number_t mreg_num, uint8_t reg,\n    uint8_t value)\n{\n    CHECK_ARG(dev);\n\n    bool mclk_rdy;\n    CHECK(icm42670_get_mclk_rdy(dev, &mclk_rdy));\n    if (!mclk_rdy)\n    {\n        ESP_LOGE(TAG, \"MCLK not running, required to access MREG\");\n        return ESP_ERR_INVALID_RESPONSE;\n    }\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_BLK_SEL_W, mreg_num));\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_MADDR_W, reg));\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_M_W, value));\n    ets_delay_us(10); // Wait for 10us until MREG write is complete\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nstatic inline esp_err_t manipulate_mreg_register(icm42670_t *dev, icm42670_mreg_number_t mreg_num, uint8_t reg_addr,\n    uint8_t mask, uint8_t shift, uint8_t value)\n{\n    CHECK_ARG(dev);\n\n    uint8_t reg;\n    CHECK(read_mreg_register(dev, mreg_num, reg_addr, &reg));\n    reg = (reg & ~mask) | (value << shift);\n    CHECK(write_mreg_register(dev, mreg_num, reg_addr, reg));\n\n    return ESP_OK;\n}\n///////////////////////////////////////////////////////////////////////////////\n\nesp_err_t icm42670_init_desc(icm42670_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio)\n{\n    CHECK_ARG(dev);\n\n    if (addr != ICM42670_I2C_ADDR_GND && addr != ICM42670_I2C_ADDR_VCC)\n    {\n        ESP_LOGE(TAG, \"Invalid I2C address `0x%x`: must be one of 0x%x, 0x%x\", addr, ICM42670_I2C_ADDR_GND,\n            ICM42670_I2C_ADDR_VCC);\n        return ESP_ERR_INVALID_ARG;\n    }\n\n    dev->i2c_dev.port = port;\n    dev->i2c_dev.addr = addr;\n    dev->i2c_dev.cfg.sda_io_num = sda_gpio;\n    dev->i2c_dev.cfg.scl_io_num = scl_gpio;\n    dev->i2c_dev.timeout_ticks = 0; // set to default\n#if HELPER_TARGET_IS_ESP32\n    dev->i2c_dev.cfg.master.clk_speed = I2C_FREQ_HZ;\n#endif\n\n    return i2c_dev_create_mutex(&dev->i2c_dev);\n}\n\nesp_err_t icm42670_free_desc(icm42670_t *dev)\n{\n    CHECK_ARG(dev);\n\n    return i2c_dev_delete_mutex(&dev->i2c_dev);\n}\n\nesp_err_t icm42670_init(icm42670_t *dev)\n{\n    CHECK_ARG(dev);\n    uint8_t reg;\n\n    // check who_am_i register\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, ICM42670_REG_WHO_AM_I, &reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    if (reg != 0x67)\n    {\n        ESP_LOGE(TAG, \"Error initializing ICM42670, who_am_i register did not return 0x67\");\n        return ESP_ERR_INVALID_RESPONSE;\n    }\n    ESP_LOGD(TAG, \"Init: Chip ICM42670 detected\");\n\n    // flush FIFO\n    CHECK(icm42670_flush_fifo(dev));\n    // perform signal path reset\n    CHECK(icm42670_reset(dev));\n    ESP_LOGD(TAG, \"Init: Soft-Reset performed\");\n\n    // wait 10ms\n    vTaskDelay(pdMS_TO_TICKS(10));\n\n    // set device in IDLE power state\n    CHECK(icm42670_set_idle_pwr_mode(dev, true));\n\n    // wait 10ms\n    vTaskDelay(pdMS_TO_TICKS(10));\n\n    // check if internal clock is running\n    bool mclk_rdy = false;\n    CHECK(icm42670_get_mclk_rdy(dev, &mclk_rdy));\n    if (!mclk_rdy)\n    {\n        ESP_LOGE(TAG, \"Error initializing icm42670, Internal clock not running\");\n        return ESP_ERR_INVALID_RESPONSE;\n    }\n    ESP_LOGD(TAG, \"Init: Internal clock running\");\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_set_idle_pwr_mode(icm42670_t *dev, bool enable_idle)\n{\n    CHECK_ARG(dev);\n\n    CHECK(manipulate_register(dev, ICM42670_REG_PWR_MGMT0, ICM42670_IDLE_BITS, ICM42670_IDLE_SHIFT,\n        (uint8_t)enable_idle));\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_set_gyro_pwr_mode(icm42670_t *dev, icm42670_gyro_pwr_mode_t pwr_mode)\n{\n    CHECK_ARG(dev);\n\n    CHECK(manipulate_register(dev, ICM42670_REG_PWR_MGMT0, ICM42670_GYRO_MODE_BITS, ICM42670_GYRO_MODE_SHIFT, pwr_mode));\n    // no register writes should be performed within the next 200us\n    ets_delay_us(300);\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_set_accel_pwr_mode(icm42670_t *dev, icm42670_accel_pwr_mode_t pwr_mode)\n{\n    CHECK_ARG(dev);\n\n    // certain odr and avg settings are not allowed in LP or LN mode\n    icm42670_accel_odr_t odr;\n    icm42670_accel_avg_t avg;\n    CHECK(icm42670_get_accel_odr(dev, &odr));\n    CHECK(icm42670_get_accel_avg(dev, &avg));\n\n    if ((pwr_mode == ICM42670_ACCEL_ENABLE_LP_MODE)\n        && ((odr == ICM42670_ACCEL_ODR_800HZ) || (odr == ICM42670_ACCEL_ODR_1_6KHZ)\n            || ((odr == ICM42670_ACCEL_ODR_200HZ) && (avg == ICM42670_ACCEL_AVG_64X))))\n    {\n        ESP_LOGE(TAG, \"Accel ODR and AVG settings invalid for Low-power mode\");\n        return ESP_ERR_INVALID_ARG;\n    }\n\n    if ((pwr_mode == ICM42670_ACCEL_ENABLE_LN_MODE)\n        && ((odr == ICM42670_ACCEL_ODR_6_25HZ) || (odr == ICM42670_ACCEL_ODR_3_125HZ)\n            || (odr == ICM42670_ACCEL_ODR_1_5625HZ)))\n    {\n        ESP_LOGE(TAG, \"Accel ODR settings invalid for Low-noise mode\");\n        return ESP_ERR_INVALID_ARG;\n    }\n\n    CHECK(manipulate_register(dev, ICM42670_REG_PWR_MGMT0, ICM42670_ACCEL_MODE_BITS, ICM42670_ACCEL_MODE_SHIFT,\n        pwr_mode));\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_set_low_power_clock(icm42670_t *dev, icm42670_lp_clock_source_t clock_source)\n{\n    CHECK_ARG(dev);\n\n    CHECK(manipulate_register(dev, ICM42670_REG_PWR_MGMT0, ICM42670_ACCEL_LP_CLK_SEL_BITS,\n        ICM42670_ACCEL_LP_CLK_SEL_SHIFT, clock_source));\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_read_raw_data(icm42670_t *dev, uint8_t data_register, int16_t *data)\n{\n    CHECK_ARG(dev && data);\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register_16(dev, data_register, data));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_read_temperature(icm42670_t *dev, float *temperature)\n{\n    CHECK_ARG(dev && temperature);\n\n    int16_t reg;\n    CHECK(icm42670_read_raw_data(dev, ICM42670_REG_TEMP_DATA1, &reg));\n    *temperature = (reg / 128.0) + 25;\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_reset(icm42670_t *dev)\n{\n    CHECK_ARG(dev);\n\n    uint8_t reg = 1 << ICM42670_SOFT_RESET_DEVICE_CONFIG_SHIFT;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_SIGNAL_PATH_RESET, reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_flush_fifo(icm42670_t *dev)\n{\n    CHECK_ARG(dev);\n\n    uint8_t reg = 1 << ICM42670_FIFO_FLUSH_SHIFT;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_SIGNAL_PATH_RESET, reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    ets_delay_us(2); // flush is done within 1.5us\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_set_gyro_fsr(icm42670_t *dev, icm42670_gyro_fsr_t range)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_GYRO_CONFIG0, ICM42670_GYRO_UI_FS_SEL_BITS,\n        ICM42670_GYRO_UI_FS_SEL_SHIFT, range);\n}\n\nesp_err_t icm42670_set_gyro_odr(icm42670_t *dev, icm42670_gyro_odr_t odr)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_GYRO_CONFIG0, ICM42670_GYRO_ODR_BITS, ICM42670_GYRO_ODR_SHIFT, odr);\n}\n\nesp_err_t icm42670_set_accel_fsr(icm42670_t *dev, icm42670_accel_fsr_t range)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_ACCEL_CONFIG0, ICM42670_ACCEL_UI_FS_SEL_BITS,\n        ICM42670_ACCEL_UI_FS_SEL_SHIFT, range);\n}\n\nesp_err_t icm42670_set_accel_odr(icm42670_t *dev, icm42670_accel_odr_t odr)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_ACCEL_CONFIG0, ICM42670_ACCEL_ODR_BITS, ICM42670_ACCEL_ODR_SHIFT, odr);\n}\n\nesp_err_t icm42670_set_temp_lpf(icm42670_t *dev, icm42670_temp_lfp_t lpf_bw)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_TEMP_CONFIG0, ICM42670_TEMP_FILT_BW_BITS, ICM42670_TEMP_FILT_BW_SHIFT,\n        lpf_bw);\n}\n\nesp_err_t icm42670_set_gyro_lpf(icm42670_t *dev, icm42670_gyro_lfp_t lpf_bw)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_GYRO_CONFIG1, ICM42670_GYRO_UI_FILT_BW_BITS,\n        ICM42670_GYRO_UI_FILT_BW_SHIFT, lpf_bw);\n}\n\nesp_err_t icm42670_set_accel_lpf(icm42670_t *dev, icm42670_accel_lfp_t lpf_bw)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_ACCEL_CONFIG1, ICM42670_ACCEL_UI_FILT_BW_BITS,\n        ICM42670_ACCEL_UI_FILT_BW_SHIFT, lpf_bw);\n}\n\nesp_err_t icm42670_set_accel_avg(icm42670_t *dev, icm42670_accel_avg_t avg)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_ACCEL_CONFIG1, ICM42670_ACCEL_UI_AVG_BITS, ICM42670_ACCEL_UI_AVG_SHIFT,\n        avg);\n}\n\nesp_err_t icm42670_config_int_pin(icm42670_t *dev, uint8_t int_pin, icm42670_int_config_t config)\n{\n    CHECK_ARG(dev && int_pin < 3 && int_pin > 0);\n\n    uint8_t reg = config.mode << 2 | config.drive << 1 | config.polarity;\n    if (int_pin == 2)\n    {\n        return manipulate_register(dev, ICM42670_REG_INT_CONFIG, 0b00111000, ICM42670_INT2_POLARITY_SHIFT, reg);\n    }\n    else\n    {\n        return manipulate_register(dev, ICM42670_REG_INT_CONFIG, 0b00000111, ICM42670_INT1_POLARITY_SHIFT, reg);\n    }\n}\n\nesp_err_t icm42670_set_int_sources(icm42670_t *dev, uint8_t int_pin, icm42670_int_source_t sources)\n{\n    CHECK_ARG(dev && int_pin < 3 && int_pin > 0);\n\n    uint8_t reg1 = 0, reg2 = 0;\n    if (sources.self_test_done)\n        reg1 = reg1 | (1 << ICM42670_ST_INT1_EN_SHIFT);\n    if (sources.fsync)\n        reg1 = reg1 | (1 << ICM42670_FSYNC_INT1_EN_SHIFT);\n    if (sources.pll_ready)\n        reg1 = reg1 | (1 << ICM42670_PLL_RDY_INT1_EN_SHIFT);\n    if (sources.reset_done)\n        reg1 = reg1 | (1 << ICM42670_RESET_DONE_INT1_EN_SHIFT);\n    if (sources.data_ready)\n        reg1 = reg1 | (1 << ICM42670_DRDY_INT1_EN_SHIFT);\n    if (sources.fifo_threshold)\n        reg1 = reg1 | (1 << ICM42670_FIFO_THS_INT1_EN_SHIFT);\n    if (sources.fifo_full)\n        reg1 = reg1 | (1 << ICM42670_FIFO_FULL_INT1_EN_SHIFT);\n    if (sources.agc_ready)\n        reg1 = reg1 | (1 << ICM42670_AGC_RDY_INT1_EN_SHIFT);\n    if (sources.i3c_error)\n        reg2 = reg2 | (1 << ICM42670_I3C_PROTOCOL_ERROR_INT1_EN_SHIFT);\n    if (sources.smd)\n        reg2 = reg2 | (1 << ICM42670_SMD_INT1_EN_SHIFT);\n    if (sources.wom_z)\n        reg2 = reg2 | (1 << ICM42670_WOM_Z_INT1_EN_SHIFT);\n    if (sources.wom_y)\n        reg2 = reg2 | (1 << ICM42670_WOM_Y_INT1_EN_SHIFT);\n    if (sources.wom_x)\n        reg2 = reg2 | (1 << ICM42670_WOM_X_INT1_EN_SHIFT);\n\n    if (int_pin == 1)\n    {\n        I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n        I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_INT_SOURCE0, reg1));\n        I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_INT_SOURCE1, reg2));\n        I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    }\n    else\n    {\n        I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n        I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_INT_SOURCE3, reg1));\n        I2C_DEV_CHECK(&dev->i2c_dev, write_register(dev, ICM42670_REG_INT_SOURCE4, reg2));\n        I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    }\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_config_wom(icm42670_t *dev, icm42670_wom_config_t config)\n{\n    CHECK_ARG(dev);\n\n    CHECK(manipulate_register(dev, ICM42670_REG_WOM_CONFIG, ICM42670_WOM_INT_DUR_BITS, ICM42670_WOM_INT_DUR_SHIFT,\n        config.trigger));\n    CHECK(manipulate_register(dev, ICM42670_REG_WOM_CONFIG, ICM42670_WOM_INT_MODE_BITS, ICM42670_WOM_INT_MODE_SHIFT,\n        config.logical_mode));\n    CHECK(manipulate_register(dev, ICM42670_REG_WOM_CONFIG, ICM42670_WOM_MODE_BITS, ICM42670_WOM_MODE_SHIFT,\n        config.reference));\n\n    // WoM threshold values\n    CHECK(write_mreg_register(dev, ICM42670_MREG1_RW, ICM42670_REG_ACCEL_WOM_X_THR, config.wom_x_threshold));\n    CHECK(write_mreg_register(dev, ICM42670_MREG1_RW, ICM42670_REG_ACCEL_WOM_Y_THR, config.wom_y_threshold));\n    CHECK(write_mreg_register(dev, ICM42670_MREG1_RW, ICM42670_REG_ACCEL_WOM_Z_THR, config.wom_z_threshold));\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_enable_wom(icm42670_t *dev, bool enable)\n{\n    CHECK_ARG(dev);\n    return manipulate_register(dev, ICM42670_REG_WOM_CONFIG, ICM42670_WOM_EN_BITS, ICM42670_WOM_EN_SHIFT, enable);\n}\n\nesp_err_t icm42670_get_mclk_rdy(icm42670_t *dev, bool *mclk_rdy)\n{\n    CHECK_ARG(dev && mclk_rdy);\n\n    uint8_t reg;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, ICM42670_REG_MCLK_RDY, &reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    if ((reg & ICM42670_MCLK_RDY_BITS) >> ICM42670_MCLK_RDY_SHIFT)\n        *mclk_rdy = true;\n    else\n        *mclk_rdy = false;\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_get_accel_odr(icm42670_t *dev, icm42670_accel_odr_t *odr)\n{\n    CHECK_ARG(dev && odr);\n\n    uint8_t reg;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, ICM42670_REG_ACCEL_CONFIG0, &reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    *odr = (reg & ICM42670_ACCEL_ODR_BITS) >> ICM42670_ACCEL_ODR_SHIFT;\n\n    return ESP_OK;\n}\n\nesp_err_t icm42670_get_accel_avg(icm42670_t *dev, icm42670_accel_avg_t *avg)\n{\n    CHECK_ARG(dev && avg);\n\n    uint8_t reg;\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, read_register(dev, ICM42670_REG_ACCEL_CONFIG1, &reg));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n    *avg = (reg & ICM42670_ACCEL_UI_AVG_BITS) >> ICM42670_ACCEL_UI_AVG_SHIFT;\n\n    return ESP_OK;\n}\n"
  },
  {
    "path": "Code/main/icm42670.h",
    "content": "/*\n * SPDX-License-Identifier: ISC\n *\n * Copyright (c) 2022 Jan Veeh <jan.veeh@motius.de>\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n */\n\n/**\n * @file icm42670.h\n * @defgroup icm42670 icm42670\n * @{\n *\n * ESP-IDF driver for TDK ICM-42670-P IMU (found on ESP-RS board)\n *\n * Copyright (c) 2022 Jan Veeh (jan.veeh@motius.de)\n *\n * ISC Licensed as described in the file LICENSE\n */\n\n#ifndef __ICM42670_H__\n#define __ICM42670_H__\n\n#include <i2cdev.h>\n#include <esp_err.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#define ICM42670_I2C_ADDR_GND 0x68\n#define ICM42670_I2C_ADDR_VCC 0x69\n\n// Registers USER BANK 0\n#define ICM42670_REG_MCLK_RDY          0x00\n#define ICM42670_REG_DEVICE_CONFIG     0x01\n#define ICM42670_REG_SIGNAL_PATH_RESET 0x02\n#define ICM42670_REG_DRIVE_CONFIG1     0x03\n#define ICM42670_REG_DRIVE_CONFIG2     0x04\n#define ICM42670_REG_DRIVE_CONFIG3     0x05\n#define ICM42670_REG_INT_CONFIG        0x06\n#define ICM42670_REG_TEMP_DATA1        0x09\n#define ICM42670_REG_TEMP_DATA0        0x0A\n#define ICM42670_REG_ACCEL_DATA_X1     0x0B\n#define ICM42670_REG_ACCEL_DATA_X0     0x0C\n#define ICM42670_REG_ACCEL_DATA_Y1     0x0D\n#define ICM42670_REG_ACCEL_DATA_Y0     0x0E\n#define ICM42670_REG_ACCEL_DATA_Z1     0x0F\n#define ICM42670_REG_ACCEL_DATA_Z0     0x10\n#define ICM42670_REG_GYRO_DATA_X1      0x11\n#define ICM42670_REG_GYRO_DATA_X0      0x12\n#define ICM42670_REG_GYRO_DATA_Y1      0x13\n#define ICM42670_REG_GYRO_DATA_Y0      0x14\n#define ICM42670_REG_GYRO_DATA_Z1      0x15\n#define ICM42670_REG_GYRO_DATA_Z0      0x16\n#define ICM42670_REG_TMST_FSYNCH       0x17\n#define ICM42670_REG_TMST_FSYNCL       0x18\n#define ICM42670_REG_APEX_DATA4        0x1D\n#define ICM42670_REG_APEX_DATA5        0x1E\n#define ICM42670_REG_PWR_MGMT0         0x1F\n#define ICM42670_REG_GYRO_CONFIG0      0x20\n#define ICM42670_REG_ACCEL_CONFIG0     0x21\n#define ICM42670_REG_TEMP_CONFIG0      0x22\n#define ICM42670_REG_GYRO_CONFIG1      0x23\n#define ICM42670_REG_ACCEL_CONFIG1     0x24\n#define ICM42670_REG_APEX_CONFIG0      0x25\n#define ICM42670_REG_APEX_CONFIG1      0x26\n#define ICM42670_REG_WOM_CONFIG        0x27\n#define ICM42670_REG_FIFO_CONFIG1      0x28\n#define ICM42670_REG_FIFO_CONFIG2      0x29\n#define ICM42670_REG_FIFO_CONFIG3      0x2A\n#define ICM42670_REG_INT_SOURCE0       0x2B\n#define ICM42670_REG_INT_SOURCE1       0x2C\n#define ICM42670_REG_INT_SOURCE3       0x2D\n#define ICM42670_REG_INT_SOURCE4       0x2E\n#define ICM42670_REG_FIFO_LOST_PKT0    0x2F\n#define ICM42670_REG_FIFO_LOST_PKT1    0x30\n#define ICM42670_REG_APEX_DATA0        0x31\n#define ICM42670_REG_APEX_DATA1        0x32\n#define ICM42670_REG_APEX_DATA2        0x33\n#define ICM42670_REG_APEX_DATA3        0x34\n#define ICM42670_REG_INTF_CONFIG0      0x35\n#define ICM42670_REG_INTF_CONFIG1      0x36\n#define ICM42670_REG_INT_STATUS_DRDY   0x39\n#define ICM42670_REG_INT_STATUS        0x3A\n#define ICM42670_REG_INT_STATUS2       0x3B\n#define ICM42670_REG_INT_STATUS3       0x3C\n#define ICM42670_REG_FIFO_COUNTH       0x3D\n#define ICM42670_REG_FIFO_COUNTL       0x3E\n#define ICM42670_REG_FIFO_DATA         0x3F\n#define ICM42670_REG_WHO_AM_I          0x75\n#define ICM42670_REG_BLK_SEL_W         0x79\n#define ICM42670_REG_MADDR_W           0x7A\n#define ICM42670_REG_M_W               0x7B\n#define ICM42670_REG_BLK_SEL_R         0x7C\n#define ICM42670_REG_MADDR_R           0x7D\n#define ICM42670_REG_M_R               0x7E\n\n// MREG1 registers\n#define ICM42670_REG_TMST_CONFIG1    0x00\n#define ICM42670_REG_FIFO_CONFIG5    0x01\n#define ICM42670_REG_FIFO_CONFIG6    0x02\n#define ICM42670_REG_FSYNC_CONFIG    0x03\n#define ICM42670_REG_INT_CONFIG0     0x04\n#define ICM42670_REG_INT_CONFIG1     0x05\n#define ICM42670_REG_SENSOR_CONFIG3  0x06\n#define ICM42670_REG_ST_CONFIG       0x13\n#define ICM42670_REG_SELFTEST        0x14\n#define ICM42670_REG_INTF_CONFIG6    0x23\n#define ICM42670_REG_INTF_CONFIG10   0x25\n#define ICM42670_REG_INTF_CONFIG7    0x28\n#define ICM42670_REG_OTP_CONFIG      0x2B\n#define ICM42670_REG_INT_SOURCE6     0x2F\n#define ICM42670_REG_INT_SOURCE7     0x30\n#define ICM42670_REG_INT_SOURCE8     0x31\n#define ICM42670_REG_INT_SOURCE9     0x32\n#define ICM42670_REG_INT_SOURCE10    0x33\n#define ICM42670_REG_APEX_CONFIG2    0x44\n#define ICM42670_REG_APEX_CONFIG3    0x45\n#define ICM42670_REG_APEX_CONFIG4    0x46\n#define ICM42670_REG_APEX_CONFIG5    0x47\n#define ICM42670_REG_APEX_CONFIG9    0x48\n#define ICM42670_REG_APEX_CONFIG10   0x49\n#define ICM42670_REG_APEX_CONFIG11   0x4A\n#define ICM42670_REG_ACCEL_WOM_X_THR 0x4B\n#define ICM42670_REG_ACCEL_WOM_Y_THR 0x4C\n#define ICM42670_REG_ACCEL_WOM_Z_THR 0x4D\n#define ICM42670_REG_OFFSET_USER0    0x4E\n#define ICM42670_REG_OFFSET_USER1    0x4F\n#define ICM42670_REG_OFFSET_USER2    0x50\n#define ICM42670_REG_OFFSET_USER3    0x51\n#define ICM42670_REG_OFFSET_USER4    0x52\n#define ICM42670_REG_OFFSET_USER5    0x53\n#define ICM42670_REG_OFFSET_USER6    0x54\n#define ICM42670_REG_OFFSET_USER7    0x55\n#define ICM42670_REG_OFFSET_USER8    0x56\n#define ICM42670_REG_ST_STATUS1      0x63\n#define ICM42670_REG_ST_STATUS2      0x64\n#define ICM42670_REG_FDR_CONFIG      0x66\n#define ICM42670_REG_APEX_CONFIG12   0x67\n\n// MREG2 registers\n#define ICM42670_REG_OTP_CTRL7 0x06\n\n// MREG3 registers\n#define ICM42670_REG_XA_ST_DATA 0x00\n#define ICM42670_REG_YA_ST_DATA 0x01\n#define ICM42670_REG_ZA_ST_DATA 0x02\n#define ICM42670_REG_XG_ST_DATA 0x03\n#define ICM42670_REG_YG_ST_DATA 0x04\n#define ICM42670_REG_ZG_ST_DATA 0x05\n\n/* Gyro power mode */\ntypedef enum {\n    ICM42670_GYRO_DISABLE = 0b00,\n    ICM42670_GYRO_STANDBY = 0b01,\n    ICM42670_GYRO_ENABLE_LN_MODE = 0b11\n} icm42670_gyro_pwr_mode_t;\n\n/* Accelerometer power mode */\ntypedef enum {\n    ICM42670_ACCEL_DISABLE = 0b00,\n    ICM42670_ACCEL_ENABLE_LP_MODE = 0b10,\n    ICM42670_ACCEL_ENABLE_LN_MODE = 0b11\n} icm42670_accel_pwr_mode_t;\n\n/* Accelerometer low power mode clock source */\ntypedef enum {\n    ICM42670_LP_CLK_WUO = 0,\n    ICM42670_LP_CLK_RCO = 1\n} icm42670_lp_clock_source_t;\n\n/* Gyro FSR (full scale range) */\ntypedef enum {\n    ICM42670_GYRO_RANGE_2000DPS = 0b00,\n    ICM42670_GYRO_RANGE_1000DPS = 0b01,\n    ICM42670_GYRO_RANGE_500DPS = 0b10,\n    ICM42670_GYRO_RANGE_250DPS = 0b11\n} icm42670_gyro_fsr_t;\n\n/* Gyro ODR (output data rate) */\ntypedef enum {\n    ICM42670_GYRO_ODR_12_5HZ = 0b1100,\n    ICM42670_GYRO_ODR_25HZ = 0b1011,\n    ICM42670_GYRO_ODR_50HZ = 0b1010,\n    ICM42670_GYRO_ODR_100HZ = 0b1001,\n    ICM42670_GYRO_ODR_200HZ = 0b1000,\n    ICM42670_GYRO_ODR_400HZ = 0b0111,\n    ICM42670_GYRO_ODR_800HZ = 0b0110,\n    ICM42670_GYRO_ODR_1_6KHZ = 0b0101\n} icm42670_gyro_odr_t;\n\n/* Accelerometer FSR (full scale range) */\ntypedef enum {\n    ICM42670_ACCEL_RANGE_16G = 0b00,\n    ICM42670_ACCEL_RANGE_8G = 0b01,\n    ICM42670_ACCEL_RANGE_4G = 0b10,\n    ICM42670_ACCEL_RANGE_2G = 0b11\n} icm42670_accel_fsr_t;\n\n/* Accelerometer ODR (output data rate) */\ntypedef enum {\n    ICM42670_ACCEL_ODR_1_5625HZ = 0b1111,\n    ICM42670_ACCEL_ODR_3_125HZ = 0b1110,\n    ICM42670_ACCEL_ODR_6_25HZ = 0b1101,\n    ICM42670_ACCEL_ODR_12_5HZ = 0b1100,\n    ICM42670_ACCEL_ODR_25HZ = 0b1011,\n    ICM42670_ACCEL_ODR_50HZ = 0b1010,\n    ICM42670_ACCEL_ODR_100HZ = 0b1001,\n    ICM42670_ACCEL_ODR_200HZ = 0b1000,\n    ICM42670_ACCEL_ODR_400HZ = 0b0111,\n    ICM42670_ACCEL_ODR_800HZ = 0b0110,\n    ICM42670_ACCEL_ODR_1_6KHZ = 0b0101\n} icm42670_accel_odr_t;\n\n/* Temperature LPF (low pass filter) */\ntypedef enum {\n    ICM42670_TEMP_LFP_BYPASSED = 0b000,\n    ICM42670_TEMP_LFP_180HZ = 0b001,\n    ICM42670_TEMP_LFP_72HZ = 0b010,\n    ICM42670_TEMP_LFP_34HZ = 0b011,\n    ICM42670_TEMP_LFP_16HZ = 0b100,\n    ICM42670_TEMP_LFP_8HZ = 0b101,\n    ICM42670_TEMP_LFP_4HZ = 0b110\n} icm42670_temp_lfp_t;\n\n/* Gyro LPF (low pass filter) */\ntypedef enum {\n    ICM42670_GYRO_LFP_BYPASSED = 0b000,\n    ICM42670_GYRO_LFP_180HZ = 0b001,\n    ICM42670_GYRO_LFP_121HZ = 0b010,\n    ICM42670_GYRO_LFP_73HZ = 0b011,\n    ICM42670_GYRO_LFP_53HZ = 0b100,\n    ICM42670_GYRO_LFP_34HZ = 0b101,\n    ICM42670_GYRO_LFP_25HZ = 0b110,\n    ICM42670_GYRO_LFP_16HZ = 0b111\n} icm42670_gyro_lfp_t;\n\n/* Accelerometer LPF (low pass filter) */\ntypedef enum {\n    ICM42670_ACCEL_LFP_BYPASSED = 0b000,\n    ICM42670_ACCEL_LFP_180HZ = 0b001,\n    ICM42670_ACCEL_LFP_121HZ = 0b010,\n    ICM42670_ACCEL_LFP_73HZ = 0b011,\n    ICM42670_ACCEL_LFP_53HZ = 0b100,\n    ICM42670_ACCEL_LFP_34HZ = 0b101,\n    ICM42670_ACCEL_LFP_25HZ = 0b110,\n    ICM42670_ACCEL_LFP_16HZ = 0b111\n} icm42670_accel_lfp_t;\n\n/* Accelerometer averaging (for low power mode) */\ntypedef enum {\n    ICM42670_ACCEL_AVG_2X = 0b000,\n    ICM42670_ACCEL_AVG_4X = 0b001,\n    ICM42670_ACCEL_AVG_8X = 0b010,\n    ICM42670_ACCEL_AVG_16X = 0b011,\n    ICM42670_ACCEL_AVG_32X = 0b100,\n    ICM42670_ACCEL_AVG_64X = 0b101\n} icm42670_accel_avg_t;\n\n/* Interrupt pin signal mode */\ntypedef enum {\n    ICM42670_INT_MODE_PULSED = 0,\n    ICM42670_INT_MODE_LATCHED = 1\n} icm42670_int_mode_t;\n\n/* Interrupt pin signal type */\ntypedef enum {\n    ICM42670_INT_DRIVE_OPEN_DRAIN = 0,\n    ICM42670_INT_DRIVE_PUSH_PULL = 1\n} icm42670_int_drive_t;\n\n/* Interrupt pin signal polarity */\ntypedef enum {\n    ICM42670_INT_POLARITY_ACTIVE_LOW = 0,\n    ICM42670_INT_POLARITY_ACTIVE_HIGH = 1\n} icm42670_int_polarity_t;\n\n/* Interrupt pin configuration */\ntypedef struct\n{\n    icm42670_int_mode_t mode;\n    icm42670_int_drive_t drive;\n    icm42670_int_polarity_t polarity;\n} icm42670_int_config_t;\n\n/* Interrupt source */\ntypedef struct\n{\n    bool self_test_done;\n    bool fsync;\n    bool pll_ready;\n    bool reset_done;\n    bool data_ready;\n    bool fifo_threshold;\n    bool fifo_full;\n    bool agc_ready;\n    bool i3c_error;\n    bool smd;\n    bool wom_z;\n    bool wom_y;\n    bool wom_x;\n} icm42670_int_source_t;\n\n/* Wake on Motion interrupt assertion */\ntypedef enum {\n    ICM42670_WOM_INT_DUR_FIRST = 0b00,\n    ICM42670_WOM_INT_DUR_SECOND = 0b01,\n    ICM42670_WOM_INT_DUR_THIRD = 0b10,\n    ICM42670_WOM_INT_DUR_FOURTH = 0b11\n} icm42670_wom_int_dur_t;\n\n/* Wake on Motion interrupt logical trigger */\ntypedef enum {\n    ICM42670_WOM_INT_MODE_ALL_OR = 0,\n    ICM42670_WOM_INT_MODE_ALL_AND = 1\n} icm42670_wom_int_mode_t;\n\n/* Wake on Motion reference sample */\ntypedef enum {\n    ICM42670_WOM_MODE_REF_INITIAL = 0,\n    ICM42670_WOM_MODE_REF_LAST = 1\n} icm42670_wom_mode_t;\n\n/* Wake on Motion configuration */\ntypedef struct\n{\n    icm42670_wom_int_dur_t trigger;\n    icm42670_wom_int_mode_t logical_mode;\n    icm42670_wom_mode_t reference;\n    uint8_t wom_x_threshold; // 8-bit value between 0 and 1g (Resolution 1g/256=~3.9 mg)\n    uint8_t wom_y_threshold; // 8-bit value between 0 and 1g (Resolution 1g/256=~3.9 mg)\n    uint8_t wom_z_threshold; // 8-bit value between 0 and 1g (Resolution 1g/256=~3.9 mg)\n} icm42670_wom_config_t;\n\n/* MREG 1-3 access */\ntypedef enum {\n    ICM42670_MREG1_RW = 0x00,\n    ICM42670_MREG2_RW = 0x28,\n    ICM42670_MREG3_RW = 0x50\n} icm42670_mreg_number_t;\n\n/**\n * Device descriptor\n */\ntypedef struct\n{\n    i2c_dev_t i2c_dev;\n    // TODO: add more vars for configuration\n} icm42670_t;\n\n/**\n * @brief Initialize device descriptor\n *\n * @param dev Device descriptor\n * @param addr I2C device address, `ICM42670_I2C_ADDR_...` const\n * @param port I2C port\n * @param sda_gpio SDA GPIO pin\n * @param scl_gpio SCL GPIO pin\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_init_desc(icm42670_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio);\n\n/**\n * @brief Free device descriptor\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_free_desc(icm42670_t *dev);\n\n/**\n * @brief Initialize device\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_init(icm42670_t *dev);\n\n/**\n * @brief Set device power mode\n *\n * @param dev Device descriptor\n * @param enable_idle bool to enable idle mode\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_idle_pwr_mode(icm42670_t *dev, bool enable_idle);\n\n/**\n * @brief Set gyro power mode\n *\n * @param dev Device descriptor\n * @param pwr_mode struct of type icm42670_gyro_pwr_mode_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_gyro_pwr_mode(icm42670_t *dev, icm42670_gyro_pwr_mode_t pwr_mode);\n\n/**\n * @brief Set accel power mode\n *\n * @param dev Device descriptor\n * @param pwr_mode struct of type icm42670_accel_pwr_mode_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_accel_pwr_mode(icm42670_t *dev, icm42670_accel_pwr_mode_t pwr_mode);\n\n/**\n * @brief Set clock source in LP mode\n *\n * @param dev Device descriptor\n * @param clock_source struct of type icm42670_lp_clock_source_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_low_power_clock(icm42670_t *dev, icm42670_lp_clock_source_t clock_source);\n\n/**\n * @brief Read temperature from device\n *\n * @param dev Device descriptor\n * @param[out] temperature temperature, degree C\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_read_temperature(icm42670_t *dev, float *temperature);\n\n/**\n * @brief Read 16-bit raw data registers (accelerometer and gyro values)\n *\n * @param dev Device descriptor\n * @param data_register data register to read from\n * @param[out] data accel or gyro data\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_read_raw_data(icm42670_t *dev, uint8_t data_register, int16_t *data);\n\n/**\n * @brief Performs a soft-reset\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_reset(icm42670_t *dev);\n\n/**\n * @brief Wipes the FIFO\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_flush_fifo(icm42670_t *dev);\n\n/**\n * @brief Set the measurement FSR (Full Scale Range) of the gyro\n *\n * @param dev Device descriptor\n * @param range struct of type icm42670_gyro_fsr_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_gyro_fsr(icm42670_t *dev, icm42670_gyro_fsr_t range);\n\n/**\n * @brief Set the measurement ODR (Output Data Rate) of the gyro\n *\n * @param dev Device descriptor\n * @param odr struct of type icm42670_gyro_odr_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_gyro_odr(icm42670_t *dev, icm42670_gyro_odr_t odr);\n\n/**\n * @brief Set the measurement FSR (Full Scale Range) of the accelerometer\n *\n * @param dev Device descriptor\n * @param range struct of type icm42670_accel_fsr_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_accel_fsr(icm42670_t *dev, icm42670_accel_fsr_t range);\n\n/**\n * @brief Set the measurement ODR (Output Data Rate) of the accelerometer\n *\n * @param dev Device descriptor\n * @param odr struct of type icm42670_accel_odr_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_accel_odr(icm42670_t *dev, icm42670_accel_odr_t odr);\n\n/**\n * @brief Set the digital Low-Pass-Filter (LPF) of the temperature sensor\n *\n * @param dev Device descriptor\n * @param lpf_bw struct of type icm42670_temp_lfp_t (bandwidth)\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_temp_lpf(icm42670_t *dev, icm42670_temp_lfp_t lpf_bw);\n\n/**\n * @brief Set the digital Low-Pass-Filter (LPF) of the gyro\n *\n * @param dev Device descriptor\n * @param lpf_bw struct of type icm42670_gyro_lfp_t (bandwidth)\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_gyro_lpf(icm42670_t *dev, icm42670_gyro_lfp_t lpf_bw);\n\n/**\n * @brief Set the digital Low-Pass-Filter (LPF) of the accelerometer\n *\n * @param dev Device descriptor\n * @param lpf_bw struct of type icm42670_accel_lfp_t (bandwidth)\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_accel_lpf(icm42670_t *dev, icm42670_accel_lfp_t lpf_bw);\n\n/**\n * @brief Set the averaging filter of the accelerometer (ONLY IN LOW POWER MODE (LPM))\n *        This field can not be changed, when accel sensor is in LPM!\n *\n * @param dev Device descriptor\n * @param avg struct of type icm42670_accel_avg_t (averaging)\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_accel_avg(icm42670_t *dev, icm42670_accel_avg_t avg);\n\n/**\n * @brief Configures the behaviour of an interrupt pin\n *\n * @param dev Device descriptor\n * @param int_pin interrupt pin (1 or 2)\n * @param config struct of type icm42670_int_config_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_config_int_pin(icm42670_t *dev, uint8_t int_pin, icm42670_int_config_t config);\n\n/**\n * @brief Configures the sources for an interrupt\n *\n * @param dev Device descriptor\n * @param int_pin interrupt pin (1 or 2)\n * @param sources struct of type icm42670_int_source_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_set_int_sources(icm42670_t *dev, uint8_t int_pin, icm42670_int_source_t sources);\n\n/**\n * @brief Configures the Wake on Motion (WoM) behaviour\n *        WoM can only be configured if WoM is not enabled\n *\n * @param dev Device descriptor\n * @param config struct of type icm42670_wom_config_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_config_wom(icm42670_t *dev, icm42670_wom_config_t config);\n\n/**\n * @brief Enable or Disable Wake on Motion (WoM)\n *\n * @param dev Device descriptor\n * @param enable true to enable, false to disable\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_enable_wom(icm42670_t *dev, bool enable);\n\n/**\n * @brief Get the status of the internal clock\n *\n * @param dev Device descriptor\n * @param mclk_rdy true if internal clock is running\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_get_mclk_rdy(icm42670_t *dev, bool *mclk_rdy);\n\n/**\n * @brief Get the output data rate (ODR) of the accel\n *\n * @param dev Device descriptor\n * @param odr pointer to icm42670_accel_odr_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_get_accel_odr(icm42670_t *dev, icm42670_accel_odr_t *odr);\n\n/**\n * @brief Get the status of the accel averaging\n *\n * @param dev Device descriptor\n * @param avg pointer to icm42670_accel_avg_t\n * @return `ESP_OK` on success\n */\nesp_err_t icm42670_get_accel_avg(icm42670_t *dev, icm42670_accel_avg_t *avg);\n\n#ifdef __cplusplus\n}\n#endif\n\n/**@}*/\n\n#endif // __ICM42670_H__\n"
  },
  {
    "path": "Code/main/idf_component.yml",
    "content": "## IDF Component Manager Manifest File\n\n"
  },
  {
    "path": "Code/main/main.c",
    "content": "/* Code for the RoboticWorx Gateway smartwatch project! Build this project for yourself at www.roboticworx.io. */\n\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <inttypes.h>\n\n#include \"freertos/FreeRTOS.h\"\n#include \"freertos/task.h\"\n#include \"freertos/semphr.h\"\n#include <freertos/timers.h>\n#include \"esp_err.h\"\n#include \"esp_log.h\"\n#include \"esp_system.h\"\n#include \"esp_vfs.h\"\n#include \"esp_spiffs.h\"\n\n#include \"esp_now.h\"\n#include \"esp_wifi.h\"\n#include \"esp_event.h\"\n#include \"nvs_flash.h\"\n#include \"esp_sleep.h\"\n#include \"esp_log.h\"\n\n#include \"st7789.h\"\n#include \"fontx.h\"\n#include \"bmpfile.h\"\n#include \"decode_png.h\"\n#include \"pngle.h\"\n\n#include <string.h>\n#include \"math.h\"\n\n#include \"driver/i2c.h\"\n#include \"driver/gpio.h\"\n#include \"esp_log.h\"\n#include \"VL53L1X_api.h\"\n\n#include <bme680.h>\n#include <icm42670.h>\n#include <ds3231.h>\n#include <mcp342x.h>\n\nSemaphoreHandle_t i2cMutex; // Create mutex for I2C bus\n\n#define INTERVAL 400\n#define WAIT vTaskDelay(INTERVAL)\n\n#define COBALT rgb565(0, 71, 171) // Cobalt blue color\n#define DESERT_ORANGE rgb565(253, 164, 90) // Desert orange color\n#define DESERT_RED rgb565(204, 85, 57) // Desert red color\n#define DESERT_BLUE rgb565(119, 181, 254) // Desert blue color\n#define DESERT_GREEN rgb565(189, 204, 150) \n#define DESERT_WHITE rgb565(255, 255, 255)\n#define DESERT_BLACK rgb565(0, 0, 0)\n\n#define I2C_MASTER_SCL_IO           14          // SCL pin\n#define I2C_MASTER_SDA_IO           13          // SDA pin\n#define I2C_MASTER_NUM              I2C_NUM_0   // I2C port number\n#define I2C_MASTER_FREQ_HZ          100000      // I2C frequency (100KHz)\n#define VL53L1X_I2C_ADDRESS         0x29        // Default I2C address of VL53L1X (7-bit address)\n#define ICM42670_I2C_ADDRESS        0x69 // Other addresses\n#define BME680_I2C_ADDRESS          0x76\n#define MCP3427_I2C_ADDRESS         0x6E\n\n#define I2C_MASTER_NUM I2C_NUM_0 // Use I2C port 0\n\n#define GAIN  MCP342X_GAIN1       // +-2.048\n#define CHANNEL MCP342X_CHANNEL1\n#define RESOLUTION MCP342X_RES_16 // 16-bit, 15 sps\n\n#define BUTTON_1 18\n#define BUTTON_2 48\n#define BUTTON_3 47\n#define BUTTON_4 16\n#define BUTTON_5 17\n#define BACKLIGHT_PIN 7\n#define CHARGE_PIN 21\n#define LASER_PIN 6\n#define WOM_PIN 15\n#define LIDAR_PIN 38\n\n#define MAX_PEERS 20  // Maximum number of peers to track\n#define DEFAULT_SCAN_LIST_SIZE 5\n\n#define SLEEP_TIMEOUT_MS 1500 // Time until going back into sleep mode\n\n#define MAX_MAC_ADDRESSES 11\n#define MAC_ADDRESS_LENGTH 12\n\n#define PORT 0\n#if defined(CONFIG_EXAMPLE_I2C_ADDRESS_0)\n#define ADDR BME680_I2C_ADDR_0\n#endif\n#if defined(CONFIG_EXAMPLE_I2C_ADDRESS_1)\n#define ADDR BME680_I2C_ADDR_1\n#endif\n\n#ifndef APP_CPU_NUM\n#define APP_CPU_NUM PRO_CPU_NUM\n#endif\n\nstatic const char *TAG_ST7789 = \"ST7789\";\nstatic const char *TAG_VL53L1X = \"VL53L1X\";\nstatic const char *TAG_ICM42670 = \"ICM42670\";\nstatic const char *TAG_TIMER = \"Sleep Timer\";\n\nstatic QueueHandle_t bmeQueue = NULL;\nstatic QueueHandle_t lidarQueue = NULL;\nstatic QueueHandle_t timeQueue = NULL;\nstatic QueueHandle_t ICMQueue = NULL;\nstatic QueueHandle_t MCPQueue = NULL;\nstatic QueueHandle_t setTimeQueue = NULL;\nstatic QueueHandle_t wirelessQueue = NULL;\n\nTaskHandle_t getBME680Handle = NULL;\nTaskHandle_t getVL53L1XHandle = NULL;\nTaskHandle_t getDS3231Handle = NULL;\nTaskHandle_t getICM42670Handle = NULL;\nTaskHandle_t getMCP3427Handle = NULL;\nTaskHandle_t sendWirelessHandle = NULL;\n\ntypedef struct {\n    float temperature;\n    int16_t accel_x;\n    int16_t accel_y;\n    int16_t accel_z;\n    int16_t gyro_x;\n    int16_t gyro_y;\n    int16_t gyro_z;\n} icm42670_data_t;\n\nicm42670_data_t imuData;\n\nstatic mcp342x_t adc;\nstatic TimerHandle_t sleep_timer;\nstatic void SPIFFS_Directory(char * path) {\n\tDIR* dir = opendir(path);\n\tassert(dir != NULL);\n\twhile (true) {\n\t\tstruct dirent*pe = readdir(dir);\n\t\tif (!pe) break;\n\t\tESP_LOGI(__FUNCTION__,\"d_name=%s d_ino=%d d_type=%x\", pe->d_name,pe->d_ino, pe->d_type);\n\t}\n\tclosedir(dir);\n}\n\n// Set these CONFIG values using menuconfig.\n#if 0\n#define CONFIG_WIDTH  240\n#define CONFIG_HEIGHT 280\n#define CONFIG_MOSI_GPIO 11\n#define CONFIG_SCLK_GPIO 12\n#define CONFIG_CS_GPIO 13\n#define CONFIG_DC_GPIO 14\n#define CONFIG_RESET_GPIO 15\n#define CONFIG_BL_GPIO 16\n#endif\n\nvolatile int currentScreen = 0;\nvolatile int selectedTime = 1;\n\nvolatile int selectedDigit = 1;\nvolatile int selectedMAC = 1;\n\nbool sleepTimerDone = false;\n\nvolatile bool backlightOn = false;\nvolatile bool sleepTimerOn = true;\nvolatile bool laserOn = false;\nvolatile bool lidarOn = false;\n\nuint8_t macaddresses[MAX_MAC_ADDRESSES][MAC_ADDRESS_LENGTH];\n\nTickType_t last_wakeup = 0;\nbool updateTime = false;\n\nvoid init_wireless(void) {\n    // Initialize NVS\n    esp_err_t ret = nvs_flash_init();\n    if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {\n        ESP_ERROR_CHECK(nvs_flash_erase());\n        ret = nvs_flash_init();\n    }\n    ESP_ERROR_CHECK(ret);\n\n    // Initialize the underlying TCP/IP stack\n    ESP_ERROR_CHECK(esp_netif_init());\n\n    // Initialize the event loop\n    ESP_ERROR_CHECK(esp_event_loop_create_default());\n\n    // Initialize Wi-Fi with default configuration\n    wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();\n    ESP_ERROR_CHECK(esp_wifi_init(&cfg));\n\n    // Set Wi-Fi to station mode\n    ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA));\n\n    // Start Wi-Fi\n    ESP_ERROR_CHECK(esp_wifi_start());\n\n}\n\nvoid deinit_wireless(void) {\n\n    // Stop Wi-Fi\n    ESP_ERROR_CHECK(esp_wifi_stop());\n\n    // Deinitialize Wi-Fi\n    ESP_ERROR_CHECK(esp_wifi_deinit());\n\n    // Deinitialize the event loop\n    ESP_ERROR_CHECK(esp_event_loop_delete_default());\n\n    // Deinitialize NVS\n    ESP_ERROR_CHECK(nvs_flash_deinit());\n\n}\n\nvoid on_data_sent(const uint8_t *mac_addr, esp_now_send_status_t status) {\n    //ESP_LOGI(TAG, \"Data sent with status: %s\", status == ESP_NOW_SEND_SUCCESS ? \"Success\" : \"Fail\");\n    //if (status == ESP_NOW_SEND_SUCCESS) {\n        // Signal that data was sent successfully\n    //}\n    //printf(\"stat: %d\\n\", dataSentSuccessfully);\n}\n\n\nvoid add_peer(const uint8_t *mac_address) {\n    esp_now_peer_info_t peerInfo = {};\n    peerInfo.channel = 0;\n    peerInfo.ifidx = ESP_IF_WIFI_STA;\n    peerInfo.encrypt = false; // Change to true if encryption is needed\n    memcpy(peerInfo.peer_addr, mac_address, ESP_NOW_ETH_ALEN);\n\n    ESP_ERROR_CHECK(esp_now_add_peer(&peerInfo));\n}\n\nvoid reset_sleep_timer() {\n\tsleepTimerDone = false;\n    if (xTimerReset(sleep_timer, 0) != pdPASS) {\n        ESP_LOGE(TAG_TIMER, \"Failed to reset sleep timer\");\n    }\n}\n\nstatic void enter_light_sleep()\n{\n    gpio_set_direction(BACKLIGHT_PIN, GPIO_MODE_OUTPUT);\n    gpio_set_level(BACKLIGHT_PIN, 0);\n    backlightOn = false;\n\n    gpio_hold_en(BACKLIGHT_PIN); // Lock GPIO state\n    gpio_hold_en(LIDAR_PIN); // Lock GPIO state\n\n    // Configure the button and ICM42670 interrupt pin as wakeup sources\n    uint64_t wakeup_pins = (1ULL << BUTTON_1) | (1ULL << WOM_PIN);\n    esp_sleep_enable_ext1_wakeup(wakeup_pins, ESP_EXT1_WAKEUP_ANY_HIGH); // Wake up on any high level\n\n    // Enter light sleep\n    esp_light_sleep_start();\n\n    reset_sleep_timer();\n\n    gpio_hold_dis(BACKLIGHT_PIN); // Disable hold\n    gpio_hold_dis(LIDAR_PIN);\n}\n\nvoid sleep_timer_callback(TimerHandle_t xTimer)\n{\n\tsleepTimerDone = true;\n    if (currentScreen == 0) // Only can sleep on screen 0\n    {\n\t\tESP_LOGI(TAG_TIMER, \"Sleep timer expired, entering light sleep\");\n\n    \tenter_light_sleep();\n    }\n}\n\nstatic double convert_to_degrees(int value)\n{\n    return ((value * 90.0) / 8195.0); // + 90\n}\n\nstatic float convert_voltage_to_percentage(float voltage)\n{\n\tfloat min_voltage = 0.94; // 0.94 actual\n\tfloat max_voltage = 1.165; // 1.7 actual\n\n    // Convert the voltage to a percentage\n    float percentage = ((voltage - min_voltage) / (max_voltage - min_voltage)) * 100.0f;\n\n    if (percentage > 100)\n    \tpercentage = 100;\n    else if (percentage < 1)\n    \tpercentage = 1;\n\n    return percentage;\n}\n\nstatic float convert_voltage_bat(float voltage)\n{\n\tfloat r1 = 5000; // Resistors in voltage divider\n\tfloat r2 = 2000;\n\n    float bat_voltage = ((r1 + r2) * voltage) / r2;\n    return bat_voltage;\n}\n\nTickType_t drawPNG(TFT_t * dev, char * file, int width, int height) {\n\tTickType_t startTick, endTick, diffTick;\n\tstartTick = xTaskGetTickCount();\n\n\tlcdSetFontDirection(dev, 0);\n\n\t// open PNG file\n\tFILE* fp = fopen(file, \"rb\");\n\tif (fp == NULL) {\n\t\tESP_LOGW(__FUNCTION__, \"File not found [%s]\", file);\n\t\treturn 0;\n\t}\n\n\tchar buf[1024];\n\tsize_t remain = 0;\n\tint len;\n\n\tpngle_t *pngle = pngle_new(width, height);\n\n\tpngle_set_init_callback(pngle, png_init);\n\tpngle_set_draw_callback(pngle, png_draw);\n\tpngle_set_done_callback(pngle, png_finish);\n\n\tdouble display_gamma = 2.2;\n\tpngle_set_display_gamma(pngle, display_gamma);\n\n\n\twhile (!feof(fp)) {\n\t\tif (remain >= sizeof(buf)) {\n\t\t\tESP_LOGE(__FUNCTION__, \"Buffer exceeded\");\n\t\t\twhile(1) vTaskDelay(1);\n\t\t}\n\n\t\tlen = fread(buf + remain, 1, sizeof(buf) - remain, fp);\n\t\tif (len <= 0) {\n\t\t\t//printf(\"EOF\\n\");\n\t\t\tbreak;\n\t\t}\n\n\t\tint fed = pngle_feed(pngle, buf, remain + len);\n\t\tif (fed < 0) {\n\t\t\tESP_LOGE(__FUNCTION__, \"ERROR; %s\", pngle_error(pngle));\n\t\t\twhile(1) vTaskDelay(1);\n\t\t}\n\n\t\tremain = remain + len - fed;\n\t\tif (remain > 0) memmove(buf, buf + fed, remain);\n\t}\n\n\tfclose(fp);\n\n\tuint16_t _width = width;\n\tuint16_t _cols = 0;\n\tif (width > pngle->imageWidth) {\n\t\t_width = pngle->imageWidth;\n\t\t_cols = (width - pngle->imageWidth) / 2;\n\t}\n\tESP_LOGD(__FUNCTION__, \"_width=%d _cols=%d\", _width, _cols);\n\n\tuint16_t _height = height;\n\tuint16_t _rows = 0;\n\tif (height > pngle->imageHeight) {\n\t\t\t_height = pngle->imageHeight;\n\t\t\t_rows = (height - pngle->imageHeight) / 2;\n\t}\n\tESP_LOGD(__FUNCTION__, \"_height=%d _rows=%d\", _height, _rows);\n\tuint16_t *colors = (uint16_t*)malloc(sizeof(uint16_t) * _width);\n\n#if 0\n\tfor(int y = 0; y < _height; y++){\n\t\tfor(int x = 0;x < _width; x++){\n\t\t\tpixel_png pixel = pngle->pixels[y][x];\n\t\t\tuint16_t color = rgb565(pixel.red, pixel.green, pixel.blue);\n\t\t\tlcdDrawPixel(dev, x+_cols, y+_rows, color);\n\t\t}\n\t}\n#endif\n\n\tfor(int y = 0; y < _height; y++){\n\t\tfor(int x = 0;x < _width; x++){\n\t\t\t//pixel_png pixel = pngle->pixels[y][x];\n\t\t\t//colors[x] = rgb565(pixel.red, pixel.green, pixel.blue);\n\t\t\tcolors[x] = pngle->pixels[y][x];\n\t\t}\n\t\tlcdDrawMultiPixels(dev, _cols, y+_rows, _width, colors);\n\t\t//vTaskDelay(1);\n\t}\n\tlcdDrawFinish(dev);\n\tfree(colors);\n\tpngle_destroy(pngle, width, height);\n\n\tendTick = xTaskGetTickCount();\n\tdiffTick = endTick - startTick;\n\t//ESP_LOGI(__FUNCTION__, \"elapsed time[ms]:%\"PRIu32,diffTick*portTICK_PERIOD_MS);\n\treturn diffTick;\n}\n\nvoid getBME680(void *pvParameters)\n{\n\n    bme680_t sensor;\n    memset(&sensor, 0, sizeof(bme680_t));\n\n    ESP_ERROR_CHECK(bme680_init_desc(&sensor, BME680_I2C_ADDRESS, PORT, I2C_MASTER_SDA_IO, I2C_MASTER_SCL_IO));\n\n    // init the sensor\n    ESP_ERROR_CHECK(bme680_init_sensor(&sensor));\n\n    // Changes the oversampling rates to 4x oversampling for temperature\n    // and 2x oversampling for humidity and pressure.\n    bme680_set_oversampling_rates(&sensor, BME680_OSR_4X, BME680_OSR_2X, BME680_OSR_2X);\n\n    // Change the IIR filter size for temperature and pressure to 7.\n    bme680_set_filter_size(&sensor, BME680_IIR_SIZE_7);\n\n    // Change the heater profile 0 to 200 degree Celsius for 100 ms.\n    //bme680_set_heater_profile(&sensor, 0, 200, 100);\n    //bme680_use_heater_profile(&sensor, 0);\n\n    // Set ambient temperature to 10 degree Celsius\n    //bme680_set_ambient_temperature(&sensor, 25);\n\n    // as long as sensor configuration isn't changed, duration is constant\n    uint32_t duration;\n    bme680_get_measurement_duration(&sensor, &duration);\n\n    last_wakeup = xTaskGetTickCount();\n\n    bme680_values_float_t values;\n    while (1)\n    {\n    \tuint32_t ulNotificationValue;\n    \tif (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n    \t{\n\t\t\tif (ulNotificationValue == 1)\n\t\t\t{\n\t\t\t\t// trigger the sensor to start one TPHG measurement cycle\n\t\t\t\tif (xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n\t\t\t\t{\n\t\t\t\t\tif (bme680_force_measurement(&sensor) == ESP_OK)\n\t\t\t\t\t{\n\t\t\t\t\t\t// passive waiting until measurement results are available\n\t\t\t\t\t\tvTaskDelay(duration);\n\n\t\t\t\t\t\t\t// get the results and do something with them\n\t\t\t\t\t\t\tif (bme680_get_results_float(&sensor, &values) == ESP_OK)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t//printf(\"sending bme data\\n\");\n\t\t\t\t\t\t\t\t//printf(\"BME680 Sensor: %.2f °C, %.2f %%, %.2f hPa, %.2f Ohm\\n\", values.temperature, values.humidity, values.pressure, values.gas_resistance);\n\t\t\t\t\t\t\t\txQueueSend(bmeQueue, &values, 0);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\t\t\t\t\txSemaphoreGive(i2cMutex);\n\t\t\t\t}\n\t\t\t\t//printf(\"ul is 1\\n\");\n\n\t\t\t\t// passive waiting until 1 second is over\n\t\t\t\tvTaskDelayUntil(&last_wakeup, pdMS_TO_TICKS(500));\n\t\t\t}\n    \t}\n    }\n}\n\nvoid getVL53L1X(void *pvParameters)\n{\n\n\tulTaskNotifyTake(pdTRUE, portMAX_DELAY);\n\n\tbool ranging = false; // If sensor is taking measurements\n\n\tgpio_set_level(LIDAR_PIN, 1);\n    VL53L1_Dev_t dev; // Device struct\n    uint16_t distance;\n    VL53L1X_ERROR status = 0;\n\n    // Device Initialization and configuration\n    // The dev structure is passed to the API functions, but the handling of the I2C address\n    // is done within your implemented communication functions\n    status = VL53L1X_SensorInit(dev);\n    if (status != 0) {\n    \tESP_LOGE(TAG_VL53L1X, \"Sensor initialization failed!\");\n    }\n\n    // Set the region of interest (ROI) to a smaller area. This will effect accuracy\n    //VL53L1X_SetROI(dev, 4, 4);\n\n    status = VL53L1X_StartRanging(dev); // Start ranging\n    if (status != 0) {\n    \tESP_LOGE(TAG_VL53L1X, \"Starting ranging failed!\");\n    }\n\n    uint8_t isReady = 0;\n    while (1)\n    {\n    \tuint32_t ulNotificationValue;\n    \tif (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n    \t{\n\t\t\tif (ulNotificationValue == 1)\n\t\t\t{\n\t\t\t\tif (!ranging)\n\t\t\t\t{\n\t\t\t\t\tVL53L1X_StartRanging(dev);\n\t\t\t\t\tranging = true;\n\t\t\t\t}\n\n\t\t\t\tgpio_set_level(LIDAR_PIN, 1);\n\t\t\t\tvTaskDelay(pdMS_TO_TICKS(100));\n\t\t\t\tstatus = VL53L1X_CheckForDataReady(dev, &isReady);\n\t\t\t\tif (status == 0 && isReady && xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n\t\t\t\t{\n\t\t\t\t\tstatus = VL53L1X_GetDistance(dev, &distance);\n\t\t\t\t\tif (status == 0)\n\t\t\t\t\t{\n\t\t\t\t\t\tESP_LOGI(TAG_VL53L1X, \"Measured distance: %d mm\", distance);\n\t\t\t\t\t\txQueueSend(lidarQueue, &distance, 0);\n\t\t\t\t\t}\n\t\t\t\t\tVL53L1X_ClearInterrupt(dev); // Prepare for the next measurement\n\t\t\t\t\txSemaphoreGive(i2cMutex);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif (ranging)\n\t\t\t\t{\n\t\t\t\t\tVL53L1X_StopRanging(dev);\n\t\t\t\t\tranging = false;\n\t\t\t\t}\n\t\t\t}\n    \t}\n    }\n}\n\nvoid getDS3231(void *pvParameters) {\n    int year = 124; // since 1900 (2024 - 1900)\n    int month = 0; // 0-based\n    int day = 1;\n    int hour = 0;\n    int minute = 0;\n    int second = 0;\n\n    i2c_dev_t dev;\n    memset(&dev, 0, sizeof(i2c_dev_t));\n\n    ESP_ERROR_CHECK(ds3231_init_desc(&dev, 0, I2C_MASTER_SDA_IO, I2C_MASTER_SCL_IO)); //sda scl\n\n    // setup datetime: 2016-10-10 13:50:10\n    struct tm time = {\n        .tm_year = 124, //since 1900 (2016 - 1900)\n        .tm_mon  = 11, // 0-based\n        .tm_mday = 12,\n        .tm_hour = 12,\n        .tm_min  = 12,\n        .tm_sec  = 0\n    };\n\n    ESP_ERROR_CHECK(ds3231_set_time(&dev, &time));\n\n    float temp;\n    while (1)\n    {\n        uint32_t ulNotificationValue;\n        if (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n        {\n            if (ulNotificationValue == 1)\n            {\n                vTaskDelay(pdMS_TO_TICKS(150));\n\n                if (xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n                {\n                    if (ds3231_get_temp_float(&dev, &temp) != ESP_OK) {\n                        // printf(\"Could not get temperature\\n\");\n                        // continue;\n                    }\n\n                    if (ds3231_get_time(&dev, &time) != ESP_OK) {\n                        // printf(\"Could not get time\\n\");\n                        // continue;\n                    }\n\n                    xQueueSend(timeQueue, &time, 0);\n                    xSemaphoreGive(i2cMutex);\n                }\n\n                if (currentScreen == 3)\n                {\n                    switch (selectedTime) {\n                        case 1:\n                            if (gpio_get_level(BUTTON_5) == 1) year++;\n                            if (year > 199) year = 100;\n                            break;\n                        case 2:\n                            if (gpio_get_level(BUTTON_5) == 1) month++;\n                            if (month > 11) month = 0; // 0 based\n                            break;\n                        case 3:\n                            if (gpio_get_level(BUTTON_5) == 1) day++;\n                            if (day > 31) day = 1;\n                            break;\n                        case 4:\n                            if (gpio_get_level(BUTTON_5) == 1) hour++;\n                            if (hour > 23) hour = 0;\n                            break;\n                        case 5:\n                            if (gpio_get_level(BUTTON_5) == 1) minute++;\n                            if (minute > 59) minute = 0;\n                            break;\n                        case 6:\n                            if (gpio_get_level(BUTTON_5) == 1) second++;\n                            if (second > 59) second = 0;\n                            break;\n                    }\n\n                    if (gpio_get_level(BUTTON_4) == 1)\n                    \tselectedTime++;\n\n                    if (selectedTime > 6)\n                    \tselectedTime = 1;\n\n                    struct tm setTime = {\n                        .tm_year = year, // since 1900 (2016 - 1900)\n                        .tm_mon  = month,  // 0-based\n                        .tm_mday = day,\n                        .tm_hour = hour,\n                        .tm_min  = minute,\n                        .tm_sec  = second,\n                    };\n\n                    if (gpio_get_level(BUTTON_4) == 1 && gpio_get_level(BUTTON_5) == 1)\n                    {\n                        if (xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n                        {\n                            ESP_ERROR_CHECK(ds3231_set_time(&dev, &setTime));\n                            currentScreen = 0;\n                            updateTime = true;\n                            xSemaphoreGive(i2cMutex);\n                        }\n                    }\n\n                    xQueueSend(setTimeQueue, &setTime, 0);\n                }\n            }\n        }\n    }\n}\n\nvoid getICM42670(void *pvParameters)\n{\n    // Initialize device descriptor and device\n    icm42670_t dev = {0};\n    ESP_ERROR_CHECK(icm42670_init_desc(&dev, ICM42670_I2C_ADDRESS, PORT, I2C_MASTER_SDA_IO, I2C_MASTER_SCL_IO));\n    ESP_ERROR_CHECK(icm42670_init(&dev));\n\n    // Configure interrupt pin\n    const uint8_t int_pin = 1;\n    const icm42670_int_config_t int_config = {\n        .mode = ICM42670_INT_MODE_LATCHED,\n        .drive = ICM42670_INT_DRIVE_PUSH_PULL,\n        .polarity = ICM42670_INT_POLARITY_ACTIVE_HIGH,\n    };\n    ESP_ERROR_CHECK(icm42670_config_int_pin(&dev, int_pin, int_config));\n\n    // Set interrupt sources\n    icm42670_int_source_t sources = {false};\n    sources.wom_y = true; // Only using y-axis\n    ESP_ERROR_CHECK(icm42670_set_int_sources(&dev, int_pin, sources));\n\n    // Configure wake-on-motion\n    const icm42670_wom_config_t wom_config = {\n        .trigger = ICM42670_WOM_INT_DUR_FIRST,\n        .logical_mode = ICM42670_WOM_INT_MODE_ALL_OR,\n        .reference = ICM42670_WOM_MODE_REF_INITIAL,\n        .wom_y_threshold = 255, // Only using y-axis\n    };\n    ESP_ERROR_CHECK(icm42670_config_wom(&dev, wom_config));\n\n    // Set power modes and other configurations\n    ESP_ERROR_CHECK(icm42670_set_gyro_pwr_mode(&dev, ICM42670_GYRO_ENABLE_LN_MODE));\n    ESP_ERROR_CHECK(icm42670_set_accel_pwr_mode(&dev, ICM42670_ACCEL_ENABLE_LN_MODE));\n    ESP_ERROR_CHECK(icm42670_set_accel_lpf(&dev, ICM42670_ACCEL_LFP_53HZ));\n    ESP_ERROR_CHECK(icm42670_set_gyro_lpf(&dev, ICM42670_GYRO_LFP_53HZ));\n    ESP_ERROR_CHECK(icm42670_set_accel_odr(&dev, ICM42670_ACCEL_ODR_200HZ));\n    ESP_ERROR_CHECK(icm42670_set_accel_avg(&dev, ICM42670_ACCEL_AVG_8X));\n    ESP_ERROR_CHECK(icm42670_set_gyro_odr(&dev, ICM42670_GYRO_ODR_200HZ));\n    ESP_ERROR_CHECK(icm42670_set_accel_fsr(&dev, ICM42670_ACCEL_RANGE_4G));\n    ESP_ERROR_CHECK(icm42670_set_gyro_fsr(&dev, ICM42670_GYRO_RANGE_500DPS));\n    ESP_ERROR_CHECK(icm42670_enable_wom(&dev, true));\n\n    float temperature;\n    ESP_ERROR_CHECK(icm42670_read_temperature(&dev, &temperature));\n    ESP_LOGI(TAG_ICM42670, \"Initial temperature: %.2f°C\", temperature);\n\n    while (1)\n    {\n    \tuint32_t ulNotificationValue;\n    \tif (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n    \t{\n\t\t\tif (ulNotificationValue == 1)\n\t\t\t{\n\t\t        if (xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n\t\t        {\n\t\t            // Read the interrupt status to clear the interrupt\n\t\t            uint8_t int_status;\n\t\t            ESP_ERROR_CHECK(icm42670_read_raw_data(&dev, ICM42670_REG_INT_STATUS, (int16_t*)&int_status));\n\n\t\t            // Read the data\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_ACCEL_DATA_X1, &imuData.accel_x);\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_ACCEL_DATA_Y1, &imuData.accel_y);\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_ACCEL_DATA_Z1, &imuData.accel_z);\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_GYRO_DATA_X1, &imuData.gyro_x);\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_GYRO_DATA_Y1, &imuData.gyro_y);\n\t                icm42670_read_raw_data(&dev, ICM42670_REG_GYRO_DATA_Z1, &imuData.gyro_z);\n\n\t                if (convert_to_degrees(imuData.accel_y) > -35 && !backlightOn)\n\t                {\n\t                    gpio_set_level(BACKLIGHT_PIN, 1); // Turn display on\n\t                    backlightOn = true;\n\t                }\n\t                else if (convert_to_degrees(imuData.accel_y) <= -35 && currentScreen == 0 && sleepTimerOn && !laserOn && !lidarOn)\n\t                {\n\t                \tenter_light_sleep();\n\t                }\n\n\t                if (currentScreen == 1) // If IMU screen\n\t                {\n\t\t\t\t\t\tif (xQueueSend(ICMQueue, &imuData, portMAX_DELAY) != pdPASS)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tESP_LOGE(TAG_ICM42670, \"Failed to send data to queue\");\n\t\t\t\t\t\t}\n\t                }\n\n\t                xSemaphoreGive(i2cMutex);\n\t\t        }\n\t\t\t}\n    \t}\n\n        vTaskDelay(pdMS_TO_TICKS(50));\n    }\n}\n\nstatic void getMCP3427(void *arg)\n{\n    // Clear device descriptor\n    memset(&adc, 0, sizeof(adc));\n\n    ESP_ERROR_CHECK(mcp342x_init_desc(&adc, MCP3427_I2C_ADDRESS, 0, 13, 14));\n\n    adc.channel = CHANNEL;\n    adc.gain = GAIN;\n    adc.resolution = RESOLUTION;\n    adc.mode = MCP342X_CONTINUOUS;\n\n    uint32_t wait_time;\n    ESP_ERROR_CHECK(mcp342x_get_sample_time_us(&adc, &wait_time)); // microseconds\n    wait_time = wait_time / 1000 + 1; // milliseconds\n\n    // start first conversion\n    ESP_ERROR_CHECK(mcp342x_start_conversion(&adc));\n\n    while (1)\n    {\n    \tuint32_t ulNotificationValue;\n    \tif (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n    \t{\n\t\t\tif (ulNotificationValue == 1)\n\t\t\t{\n\t\t\t\tif (xSemaphoreTake(i2cMutex, portMAX_DELAY) == pdTRUE)\n\t\t\t\t{\n\t\t\t        // Wait for conversion\n\t\t\t        vTaskDelay(pdMS_TO_TICKS(wait_time));\n\n\t\t\t        // Read data\n\t\t\t        float volts;\n\t\t\t        ESP_ERROR_CHECK(mcp342x_get_voltage(&adc, &volts, NULL));\n\t\t\t        //printf(\"Channel: %d, voltage: %0.4f\\n\", adc.channel, volts);\n\n\t\t\t\t\t// Send the structured data to the queue\n\t\t\t\t\tif (xQueueSend(MCPQueue, &volts, portMAX_DELAY) != pdPASS)\n\t\t\t\t\t{\n\t\t\t\t\t\tESP_LOGE(TAG_ICM42670, \"Failed to send data to queue\");\n\t\t\t\t\t}\n\t\t\t\t\txSemaphoreGive(i2cMutex);\n\t\t\t\t}\n\t\t\t\tvTaskDelay(pdMS_TO_TICKS(500));\n\t\t\t}\n    \t}\n    }\n}\n\nvoid sendWireless(void *pvParameters)\n{\n\tvolatile bool canSend = false;\n\n    for (int i = 0; i < MAX_MAC_ADDRESSES; i++) {\n        for (int j = 0; j < MAC_ADDRESS_LENGTH; j++) {\n            macaddresses[i][j] = 0x0;\n        }\n    }\n\n    while (1)\n    {\n        uint32_t ulNotificationValue;\n        if (xTaskNotifyWait(0x00, ULONG_MAX, &ulNotificationValue, portMAX_DELAY) == pdTRUE)\n        {\n            if (ulNotificationValue == 1)\n            {\n                vTaskDelay(pdMS_TO_TICKS(150)); // Main loop delay to reduce CPU usage\n\n                if (currentScreen == 2)\n                {\n                \tint r = selectedMAC - 1;\n\t\t\t\t\tif (gpio_get_level(BUTTON_4) == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tswitch (selectedDigit)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcase 1: macaddresses[r][0] = (macaddresses[r][0] & 0x0F) | (((macaddresses[r][0] >> 4) + 1) << 4); if ((macaddresses[r][0] >> 4) > 0xF) macaddresses[r][0] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 2: macaddresses[r][0] = (macaddresses[r][0] & 0xF0) | ((macaddresses[r][0] + 1) & 0x0F); if ((macaddresses[r][0] & 0x0F) > 0xF) macaddresses[r][0] &= 0xF0; break;\n\t\t\t\t\t\t\tcase 3: macaddresses[r][1] = (macaddresses[r][1] & 0x0F) | (((macaddresses[r][1] >> 4) + 1) << 4); if ((macaddresses[r][1] >> 4) > 0xF) macaddresses[r][1] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 4: macaddresses[r][1] = (macaddresses[r][1] & 0xF0) | ((macaddresses[r][1] + 1) & 0x0F); if ((macaddresses[r][1] & 0x0F) > 0xF) macaddresses[r][1] &= 0xF0; break;\n\t\t\t\t\t\t\tcase 5: macaddresses[r][2] = (macaddresses[r][2] & 0x0F) | (((macaddresses[r][2] >> 4) + 1) << 4); if ((macaddresses[r][2] >> 4) > 0xF) macaddresses[r][2] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 6: macaddresses[r][2] = (macaddresses[r][2] & 0xF0) | ((macaddresses[r][2] + 1) & 0x0F); if ((macaddresses[r][2] & 0x0F) > 0xF) macaddresses[r][2] &= 0xF0; break;\n\t\t\t\t\t\t\tcase 7: macaddresses[r][3] = (macaddresses[r][3] & 0x0F) | (((macaddresses[r][3] >> 4) + 1) << 4); if ((macaddresses[r][3] >> 4) > 0xF) macaddresses[r][3] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 8: macaddresses[r][3] = (macaddresses[r][3] & 0xF0) | ((macaddresses[r][3] + 1) & 0x0F); if ((macaddresses[r][3] & 0x0F) > 0xF) macaddresses[r][3] &= 0xF0; break;\n\t\t\t\t\t\t\tcase 9: macaddresses[r][4] = (macaddresses[r][4] & 0x0F) | (((macaddresses[r][4] >> 4) + 1) << 4); if ((macaddresses[r][4] >> 4) > 0xF) macaddresses[r][4] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 10: macaddresses[r][4] = (macaddresses[r][4] & 0xF0) | ((macaddresses[r][4] + 1) & 0x0F); if ((macaddresses[r][4] & 0x0F) > 0xF) macaddresses[r][4] &= 0xF0; break;\n\t\t\t\t\t\t\tcase 11: macaddresses[r][5] = (macaddresses[r][5] & 0x0F) | (((macaddresses[r][5] >> 4) + 1) << 4); if ((macaddresses[r][5] >> 4) > 0xF) macaddresses[r][5] &= 0x0F; break;\n\t\t\t\t\t\t\tcase 12: macaddresses[r][5] = (macaddresses[r][5] & 0xF0) | ((macaddresses[r][5] + 1) & 0x0F); if ((macaddresses[r][5] & 0x0F) > 0xF) macaddresses[r][5] &= 0xF0; break;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\n                    if (gpio_get_level(BUTTON_5) == 1)\n                    {\n                        selectedDigit++;\n                        if (selectedDigit > 12) {\n                            selectedDigit = 1;\n                        }\n                    }\n\n                    if (gpio_get_level(BUTTON_3) == 1)\n                    {\n                        selectedMAC++;\n                        if (selectedMAC > MAX_MAC_ADDRESSES) {\n                        \tselectedMAC = 1;\n                        }\n                    }\n\n\t\t\t\t\tif (xQueueSend(wirelessQueue, &macaddresses, portMAX_DELAY) != pdPASS)\n\t\t\t\t\t{\n\t\t\t\t\t\tESP_LOGE(TAG_ICM42670, \"Failed to send data to queue\");\n\t\t\t\t\t}\n\n\t\t\t\t\tif (gpio_get_level(BUTTON_2) == 1 && canSend)\n\t\t\t\t\t{\n\t\t\t\t\t\tinit_wireless();\n\t\t\t\t\t    ESP_ERROR_CHECK(esp_now_init()); // When using ESP-NOW\n\t\t\t\t\t    ESP_ERROR_CHECK(esp_now_register_send_cb(on_data_sent)); // When using ESP-NOW\n\t\t\t\t\t\tadd_peer(macaddresses[selectedMAC - 1]);\n\t\t\t\t\t\tuint8_t data[] = {1}; // An array of uint8_t\n\t\t\t\t\t\tesp_now_send(macaddresses[selectedMAC - 1], data, sizeof(data));\n\t\t\t\t\t    ESP_ERROR_CHECK(esp_now_del_peer(macaddresses[selectedMAC - 1]));\n\t\t\t\t\t    ESP_ERROR_CHECK(esp_now_deinit());\n\n\t\t\t\t\t    deinit_wireless();\n\t\t\t\t\t    canSend = false;\n\t\t\t\t\t}\n\t\t\t\t\telse if (gpio_get_level(BUTTON_2) == 0)\n\t\t\t\t\t{\n\t\t\t\t\t\tcanSend = true;\n\t\t\t\t\t}\n                }\n            }\n        }\n    }\n}\n\nvoid ST7789(void *pvParameters)\n{\n\t// Set fonts\n\tFontxFile fx16G[2];\n\tFontxFile fx24G[2];\n\tFontxFile fx32G[2];\n\tFontxFile fx32L[2];\n\tInitFontx(fx16G,\"/spiffs/ILGH16XB.FNT\",\"\"); // 8x16Dot Gothic\n\tInitFontx(fx24G,\"/spiffs/ILGH24XB.FNT\",\"\"); // 12x24Dot Gothic\n\tInitFontx(fx32G,\"/spiffs/ILGH32XB.FNT\",\"\"); // 16x32Dot Gothic\n\tInitFontx(fx32L,\"/spiffs/LATIN32B.FNT\",\"\"); // 16x32Dot Latin\n\n\tFontxFile fx16M[2];\n\tFontxFile fx24M[2];\n\tFontxFile fx32M[2];\n\tInitFontx(fx16M,\"/spiffs/ILMH16XB.FNT\",\"\"); // 8x16Dot Mincyo\n\tInitFontx(fx24M,\"/spiffs/ILMH24XB.FNT\",\"\"); // 12x24Dot Mincyo\n\tInitFontx(fx32M,\"/spiffs/ILMH32XB.FNT\",\"\"); // 16x32Dot Mincyo\n\n\tTFT_t dev;\n\tspi_master_init(&dev, CONFIG_MOSI_GPIO, CONFIG_SCLK_GPIO, CONFIG_CS_GPIO, CONFIG_DC_GPIO, CONFIG_RESET_GPIO, CONFIG_BL_GPIO);\n\tlcdInit(&dev, CONFIG_WIDTH, CONFIG_HEIGHT, CONFIG_OFFSETX, CONFIG_OFFSETY);\n\n\tchar file[32];\n\n\t//FillCobalt(&dev, CONFIG_WIDTH, CONFIG_HEIGHT);\n\n\t// Initial logo on boot\n\tstrcpy(file, \"/spiffs/roboticworx.png\");\n\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\treset_sleep_timer();\n\tvTaskDelay(pdMS_TO_TICKS(500));\n\treset_sleep_timer();\n\n\t//bool lidarActive = false; // Toggle this\n\t//bool canDraw = true;\n\t//bool eraseOnce = true;\n\n\t// Multi Font Test\n\tuint16_t color;\n\tuint8_t ascii[40];\n\tuint16_t xpos = 0;\n\tuint16_t ypos = 50;\n\n\tint themeSelected = 2; // CHANGE TO SELECT DEFAULT WATCH THEME (1 = Steam-punk, 2 = Planets). Feel free to also add your own themes. Instructions on roboticworx.io.\n\n\tbool screen_face = true;\n\tbool screen_imu = false;\n\tbool screen_wireless = false;\n\tbool screen_time = false;\n\tbool screen_flashlight = false;\n\tbool screen_wifi = false;\n\tbool screen_docs = false;\n\n\tbool hour24 = false;\n\tbool updateMACs = true;\n\n\tbool canSend1 = true;\n\tbool canSend2 = true;\n\tbool canSend3 = true;\n\n\tvolatile bool updateFreeze = true;\n\tbool oneLaser = true;\n\n\tbool oneLidar = true;\n\tbool lidarWasOn = false;\n\tbool lidarTriggered = false;\n\n\t// Hold the last values of the RTC to compare to. Initialize to zero to ensure first update happens\n\tstatic struct tm lastSecond = {0};\n\tstatic struct tm lastMinute = {0};\n\tstatic struct tm lastHour = {0};\n\tstatic struct tm lastDay = {0};\n\tstatic struct tm lastMonth = {0};\n\n\twhile(1)\n\t{\n\t\tvTaskDelay(pdMS_TO_TICKS(10));\n\n\t\tif (sleepTimerOn)\n\t\t{\n\t\t\tcolor = DESERT_ORANGE;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treset_sleep_timer();\n\t\t\tcolor = DESERT_WHITE;\n\t\t}\n\n\t\tif (gpio_get_level(BUTTON_1) == 1 || gpio_get_level(BUTTON_2) == 1 || gpio_get_level(BUTTON_3) == 1 || gpio_get_level(BUTTON_4) == 1 || gpio_get_level(BUTTON_5) == 1)\n\t\t    reset_sleep_timer();\n\n\t\tif (gpio_get_level(BUTTON_3) == 0)\n\t\t\toneLaser = true;\n\t\tif (gpio_get_level(BUTTON_2) == 0)\n\t\t\toneLidar = true;\n\n\t\tif (laserOn)\n\t\t{\n\t\t\tgpio_set_level(LASER_PIN, 1);\n\t\t\treset_sleep_timer();\n\t\t}\n\t\telse\n\t\t\tgpio_set_level(LASER_PIN, 0);\n\n\t\t// Main screens check. Start with doubles\n\t\tif (gpio_get_level(BUTTON_1) == 1 && gpio_get_level(BUTTON_2) == 1 && gpio_get_level(BUTTON_3) == 1) // QR\n\t\t\tcurrentScreen = 11;\n\t\telse if (gpio_get_level(BUTTON_4) == 1 && gpio_get_level(BUTTON_3) == 1 && currentScreen != 2) // Clock\n\t\t\tcurrentScreen = 3;\n\t\telse if (gpio_get_level(BUTTON_4) == 1 && gpio_get_level(BUTTON_2) == 1 && currentScreen != 2) // Networks\n\t\t\tcurrentScreen = 4;\n\t\telse if (gpio_get_level(BUTTON_4) == 1 && gpio_get_level(BUTTON_1) == 1 && currentScreen != 2) // Flashlight\n\t\t\tcurrentScreen = 10;\n\t\telse if (gpio_get_level(BUTTON_1) == 1 && gpio_get_level(BUTTON_3) == 1 && currentScreen == 0 && oneLaser)\n\t\t{\n\t\t\tlaserOn = !laserOn;\n\t\t\toneLaser = false;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_1) == 1 && gpio_get_level(BUTTON_2) == 1 && currentScreen == 0 && oneLidar)\n\t\t{\n\t\t\tlidarOn = !lidarOn; // MAKE DISABLE LIDAR TURN OFF ENABLE GPIO\n\t\t\toneLidar = false;\n\t\t\tlidarTriggered = true;\n\t\t\t//if (lidarWasOn)\n\t\t\t\t//screen_face = true;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_1) == 1 && gpio_get_level(BUTTON_5) == 1 && canSend1 && currentScreen != 2) // Hotkey 1\n\t\t{\n\t\t\tinit_wireless();\n\t\t    ESP_ERROR_CHECK(esp_now_init()); // When using ESP-NOW\n\t\t    ESP_ERROR_CHECK(esp_now_register_send_cb(on_data_sent)); // When using ESP-NOW\n\t\t\tadd_peer(macaddresses[0]);\n\t\t\tuint8_t data[] = {1}; // An array of uint8_t\n\t\t\tesp_now_send(macaddresses[0], data, sizeof(data));\n\t\t    ESP_ERROR_CHECK(esp_now_del_peer(macaddresses[0]));\n\t\t    ESP_ERROR_CHECK(esp_now_deinit());\n\n\t\t    deinit_wireless();\n\t\t    canSend1 = false;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_2) == 1 && gpio_get_level(BUTTON_5) == 1 && canSend2 && currentScreen != 2) // Hotkey 2\n\t\t{\n\t\t\tinit_wireless();\n\t\t    ESP_ERROR_CHECK(esp_now_init()); // When using ESP-NOW\n\t\t    ESP_ERROR_CHECK(esp_now_register_send_cb(on_data_sent)); // When using ESP-NOW\n\t\t\tadd_peer(macaddresses[1]);\n\t\t\tuint8_t data[] = {1}; // An array of uint8_t\n\t\t\tesp_now_send(macaddresses[1], data, sizeof(data));\n\t\t    ESP_ERROR_CHECK(esp_now_del_peer(macaddresses[1]));\n\t\t    ESP_ERROR_CHECK(esp_now_deinit());\n\n\t\t    deinit_wireless();\n\t\t    canSend2 = false;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_3) == 1 && gpio_get_level(BUTTON_5) == 1 && canSend3 && currentScreen != 2) // Hotkey 3\n\t\t{\n\t\t\tinit_wireless();\n\t\t    ESP_ERROR_CHECK(esp_now_init()); // When using ESP-NOW\n\t\t    ESP_ERROR_CHECK(esp_now_register_send_cb(on_data_sent)); // When using ESP-NOW\n\t\t\tadd_peer(macaddresses[2]);\n\t\t\tuint8_t data[] = {1}; // An array of uint8_t\n\t\t\tesp_now_send(macaddresses[2], data, sizeof(data));\n\t\t    ESP_ERROR_CHECK(esp_now_del_peer(macaddresses[2]));\n\t\t    ESP_ERROR_CHECK(esp_now_deinit());\n\n\t\t    deinit_wireless();\n\t\t    canSend3 = false;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_1) == 1 && currentScreen != 0) // Main face\n\t\t{\n\t\t\tcurrentScreen = 0;\n\t\t\tupdateTime = true;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_4) == 1 && gpio_get_level(BUTTON_5) == 1 && currentScreen == 0 && updateFreeze) // Freeze main face\n\t\t{\n\t\t\tsleepTimerOn = !sleepTimerOn;\n\t\t\tupdateFreeze = false;\n\t\t}\n\t\telse if (gpio_get_level(BUTTON_3) == 1 && gpio_get_level(BUTTON_4) == 0 && currentScreen != 2 && gpio_get_level(BUTTON_5) == 0 && gpio_get_level(BUTTON_1) == 0) // IMU\n\t\t\tcurrentScreen = 1;\n\t\telse if (gpio_get_level(BUTTON_2) == 1 && gpio_get_level(BUTTON_4) == 0 && currentScreen != 2 && gpio_get_level(BUTTON_5) == 0 && gpio_get_level(BUTTON_1) == 0) // Wireless\n\t\t\tcurrentScreen = 2;\n\n\t\tif (gpio_get_level(BUTTON_4) == 0 && gpio_get_level(BUTTON_5) == 0 && currentScreen == 0)\n\t\t\tupdateFreeze = true;\n\t\tif (gpio_get_level(BUTTON_1) == 0)\n\t\t\tcanSend1 = true;\n\t\tif (gpio_get_level(BUTTON_2) == 0)\n\t\t\tcanSend2 = true;\n\t\tif (gpio_get_level(BUTTON_3) == 0)\n\t\t\tcanSend3 = true;\n\n\t\tif (currentScreen == 0)\n\t\t{\n\t\t\tif (screen_face)\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face1.png\");\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face2.png\");\n\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_face = false;\n\n\t\t\t\tlast_wakeup = xTaskGetTickCount();\n\n\t\t\t}\n\n\t\t\tif (lidarOn)\n\t\t\t{\n\t\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t\txTaskNotifyGive(getVL53L1XHandle);\n\t\t\t\txTaskNotify(getVL53L1XHandle, 1, eSetValueWithOverwrite);\n\t\t\t\treset_sleep_timer();\n\t\t\t\tlast_wakeup = xTaskGetTickCount();\n\t\t\t\tlidarWasOn = false;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tlidarWasOn = true;\n\t\t\t\txTaskNotify(getMCP3427Handle, 1, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getBME680Handle, 1, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getDS3231Handle, 1, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t\txTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\t\t\t}\n\n\t\t\tlcdSetFontDirection(&dev, 0);\n\t\t\tlcdSetFontFill(&dev, BLACK);\n\n\t\t\tbme680_values_float_t values;\n\t\t\tif (xQueueReceive(bmeQueue, &values, 0)) //\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 30;\n\t\t\t\t\typos = 102;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 23;\n\t\t\t\t\typos = 262;\n\t\t\t\t}\n\n\t\t\t\tfloat temp = values.temperature; // Offset due to other components\n\t\t\t\tsprintf((char *)ascii, \"%.2fC\", temp); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 30;\n\t\t\t\t\typos = 83;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 23;\n\t\t\t\t\typos = 243;\n\t\t\t\t}\n\n\t\t\t\tfloat humidity = values.humidity; // Example integer\n\t\t\t\tsprintf((char *)ascii, \"%.2f%%\", humidity); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 30;\n\t\t\t\t\typos = 45;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 82;\n\t\t\t\t\typos = 240;\n\t\t\t\t}\n\n\t\t\t\tfloat pressure = values.pressure; // Example integer\n\t\t\t\tsprintf((char *)ascii, \"%.2fhPa\", pressure); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 6;\n\t\t\t\t\typos = 242;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 82;\n\t\t\t\t\typos = 264;\n\t\t\t\t}\n\n\t\t\t\tfloat gas_resistance = values.gas_resistance; // Example integer\n\t\t\t\t// float comp_gas = log(gas_resistance) + 0.04 * gas_resistance; // comp_gas = log(R_gas[ohm]) + 0.04 log(Ohm)/%rh * hum[%rh]\n\n\t\t\t\tgas_resistance /= 1000;\n\t\t\t\tif (gas_resistance < 100)\n\t\t\t\t{\n\t\t\t\t\tsprintf((char *)ascii, \"0%.2f\", gas_resistance); // Convert integer to string\n\t\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color); // Display the integer as a string\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tsprintf((char *)ascii, \"%.2f\", gas_resistance); // Convert integer to string\n\t\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color); // Display the integer as a string\n\t\t\t\t}\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 30;\n\t\t\t\t\typos = 64;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 23;\n\t\t\t\t\typos = 224;\n\t\t\t\t}\n\n\t\t\t\tfloat altitude = 44330 * (1 - pow((values.pressure/1013.25), (1/5.255)));\n\t\t\t\tsprintf((char *)ascii, \"%.2fm \", altitude); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\t\t\t}\n\n\t\t\tfloat volts;\n\t\t\tif (xQueueReceive(MCPQueue, &volts, 0))\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 162;\n\t\t\t\t\typos = 242;\n\t\t\t\t\tfloat percentage = convert_voltage_to_percentage(volts);\n\n\t\t\t\t\tif (percentage == 100)\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"%.2f\", percentage); // Convert integer to string\n\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (percentage >= 60 || gpio_get_level(CHARGE_PIN) == 0)// If IS charging or high battery\n\t\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t\telse if (percentage < 60 && percentage > 20)\n\t\t\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tcolor = DESERT_RED;\n\t\t\t\t\t\tsprintf((char *)ascii, \"%.2f%%\", percentage); // Convert integer to string\n\t\t\t\t\t}\n\t\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color); // Display the integer as a string\n\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 170;\n\t\t\t\t\typos = 35;\n\t\t\t\t\tfloat percentage = convert_voltage_to_percentage(volts);\n\n\t\t\t\t\tif (percentage == 100)\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"%.2f\", percentage); // Convert integer to string\n\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (percentage >= 60 || gpio_get_level(CHARGE_PIN) == 0)// If IS charging or high battery\n\t\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t\telse if (percentage < 60 && percentage > 20)\n\t\t\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tcolor = DESERT_RED;\n\t\t\t\t\t\tsprintf((char *)ascii, \"%.2f%%\", percentage); // Convert integer to string\n\t\t\t\t\t}\n\t\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\t\t\t\t}\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 176;\n\t\t\t\t\typos = 262;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 170;\n\t\t\t\t\typos = 50;\n\t\t\t\t}\n\t\t\t\tfloat bat_voltage = convert_voltage_bat(volts);\n\t\t\t\tsprintf((char *)ascii, \"%.2fV\", bat_voltage); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the integer as a string\n\t\t\t}\n\n\t\t\t// Real Time Clock (RTC)\n\t\t\t//  time.tm_year + 1900 /*Add 1900 for better readability*/, time.tm_mon + 1, time.tm_mday, time.tm_hour, time.tm_min, time.tm_sec, temp);\n\t\t\tstruct tm currentTime;\n\t\t\tif (xQueueReceive(timeQueue, &currentTime, 0))\n\t\t\t{\n\n\t\t\t\t// Check if time data has changed\n\t\t\t\tcolor = DESERT_BLUE;\n\n\t\t\t\tif (currentTime.tm_sec != lastSecond.tm_sec || updateTime)\n\t\t\t\t{\n\t\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 173;\n\t\t\t\t\t\typos = 93;\n\t\t\t\t\t}\n\t\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 120;\n\t\t\t\t\t\typos = 50;\n\t\t\t\t\t}\n\n\t\t\t        // Clear the buffer before use\n\t\t\t        memset(ascii, 0, sizeof(ascii));\n\n\t\t\t\t\tif (currentTime.tm_sec < 10)\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"0%d \", currentTime.tm_sec);\n\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"%d \", currentTime.tm_sec);\n\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\n\t\t\t\t\tmemcpy(&lastSecond, &currentTime, sizeof(struct tm)); // Update lastTime with the current time after updating the display\n\t\t\t\t}\n\n\t\t\t\tif (currentTime.tm_min != lastMinute.tm_min || updateTime)\n\t\t\t\t{\n\t\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 167;\n\t\t\t\t\t\typos = 70;\n\t\t\t\t\t}\n\t\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 72;\n\t\t\t\t\t\typos = 52;\n\t\t\t\t\t}\n\n\t\t\t        // Clear the buffer before use\n\t\t\t        memset(ascii, 0, sizeof(ascii));\n\n\n\t\t\t\t\tif (currentTime.tm_min < 10)\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"0%d \", currentTime.tm_min);\n\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"%d \", currentTime.tm_min);\n\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\n\t\t\t\t\tmemcpy(&lastMinute, &currentTime, sizeof(struct tm)); // Update lastTime with the current time after updating the display\n\t\t\t\t}\n\n\t\t\t\tif (currentTime.tm_hour != lastHour.tm_hour || updateTime)\n\t\t\t\t{\n\n\t\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 119;\n\t\t\t\t\t\typos = 70;\n\t\t\t\t\t}\n\t\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 25;\n\t\t\t\t\t\typos = 52;\n\t\t\t\t\t}\n\n\t\t\t        // Clear the buffer before use\n\t\t\t        memset(ascii, 0, sizeof(ascii));\n\n\t\t\t\t\tif (!hour24)\n\t\t\t\t\t{\n\t\t\t\t\t\tint hour = currentTime.tm_hour;\n\t\t\t\t\t\tif (hour > 12)\n\t\t\t\t\t\t\thour -= 12;\n\t\t\t\t\t\telse if (hour == 0)\n\t\t\t\t\t\t\thour = 12;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\thour = currentTime.tm_hour;\n\n\t\t\t\t\t\tif (hour < 10)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"0%d:\", hour);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"%d:\", hour);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (currentTime.tm_hour < 10)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"0%d:\", currentTime.tm_hour);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"%d:\", currentTime.tm_hour);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx32M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tmemcpy(&lastHour, &currentTime, sizeof(struct tm)); // Update lastTime with the current time after updating the display\n\t\t\t\t}\n\n\t\t\t\tif (currentTime.tm_mday != lastDay.tm_mday || updateTime)\n\t\t\t\t{\n\t\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 169;\n\t\t\t\t\t\typos = 160;\n\t\t\t\t\t}\n\t\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 75;\n\t\t\t\t\t\typos = 78;\n\t\t\t\t\t}\n\n\t\t\t        // Clear the buffer before use\n\t\t\t        memset(ascii, 0, sizeof(ascii));\n\n\t\t\t\t\tif (currentTime.tm_mday < 10)\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"0%d \", currentTime.tm_mday);\n\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tsprintf((char *)ascii, \"%d \", currentTime.tm_mday);\n\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t}\n\n\t\t\t\t\tmemcpy(&lastDay, &currentTime, sizeof(struct tm)); // Update lastTime with the current time after updating the display\n\t\t\t\t}\n\n\t\t\t\tif (currentTime.tm_mon != lastMonth.tm_mon || updateTime)\n\t\t\t\t{\n\t\t\t        // Clear the buffer before use\n\t\t\t        memset(ascii, 0, sizeof(ascii));\n\n\t\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 45;\n\t\t\t\t\t\typos = 160;\n\t\t\t\t\t\tif (currentTime.tm_mon < 9)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"0%d\", currentTime.tm_mon + 1);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"%d\", currentTime.tm_mon + 1);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\txpos = 27;\n\t\t\t\t\t\typos = 78;\n\t\t\t\t\t\tif (currentTime.tm_mon < 9)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"0%d\", currentTime.tm_mon + 1);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tsprintf((char *)ascii, \"%d\", currentTime.tm_mon + 1);\n\t\t\t\t\t\t\tlcdDrawString(&dev, fx24M, xpos, ypos, ascii, color);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tmemcpy(&lastMonth, &currentTime, sizeof(struct tm)); // Update lastTime with the current time after updating the display\n\t\t\t\t}\n\t\t\t\tupdateTime = false;\n\t\t\t}\n\n\t\t\t// LiDAR\n\t\t\tuint16_t distance;\n\t\t\tif (xQueueReceive(lidarQueue, &distance, 0)) //  && lidarActive\n\t\t\t{\n\t\t\t\tcolor = DESERT_RED;\n\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 84;\n\t\t\t\t\typos = 134;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 140;\n\t\t\t\t\typos = 164;\n\t\t\t\t}\n\n\t\t\t\tfloat centis = distance;\n\t\t\t\tcentis /= 10;\n\t\t\t\tsprintf((char *)ascii, \"%.2f\", centis); // Format as integer\n\t\t\t\t// If you really need to format as float:\n\t\t\t\t// sprintf((char *)ascii, \"%.2f\", (float)distance);\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 107;\n\t\t\t\t\typos = 153;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 175;\n\t\t\t\t\typos = 185;\n\t\t\t\t}\n\n\t\t\t\tsprintf((char *)ascii, \"cm\"); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color); // Display the integer as a string\n\n\t\t\t\tif (lidarWasOn && lidarTriggered)\n\t\t\t\t{\n\t\t\t\t\tscreen_face = true;\n\t\t\t\t\tupdateTime = true;\n\t\t\t\t\tlidarTriggered = false;\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\telse if (currentScreen == 1)\n\t\t{\n\n\t\t\tif (screen_imu)\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face1_imu.png\");\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face2_imu.png\");\n\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_imu = false;\n\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\n\t\t\t// ICM42670\n\t\t\ticm42670_data_t imuData;\n\t\t\tif (xQueueReceive(ICMQueue, &imuData, 0)) //  && lidarActive\n\t\t\t{\n\t\t\t\tcolor = DESERT_BLUE;\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 88;\n\t\t\t\t\typos = 90;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 120;\n\t\t\t\t\typos = 174;\n\t\t\t\t}\n\n\t\t\t\tsprintf((char *)ascii, \"%f    \", convert_to_degrees(imuData.accel_x)); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 109;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 192;\n\n\t\t\t\tsprintf((char *)ascii, \"%f    \", convert_to_degrees(imuData.accel_y)); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 127;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 210;\n\n\t\t\t\tsprintf((char *)ascii, \"%f    \", convert_to_degrees(imuData.accel_z)); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 161;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 235;\n\n\t\t\t\tsprintf((char *)ascii, \"%d    \", imuData.gyro_x); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 180;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 253;\n\n\t\t\t\tsprintf((char *)ascii, \"%d    \", imuData.gyro_y); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 198;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 271;\n\n\t\t\t\tsprintf((char *)ascii, \"%d    \", imuData.gyro_z); // Convert integer to string\n\t\t\t\tlcdDrawString(&dev, fx16G, xpos, ypos, ascii, color); // Display the distance as a string\n\t\t\t}\n\t\t}\n\n\t\telse if (currentScreen == 2) // Wireless screen\n\t\t{\n\n\t\t\tif (screen_wireless)\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face1_wireless.png\");\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face2_wireless.png\");\n\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_wireless = false;\n\t\t\t\tupdateMACs = true;\n\t\t\t\tselectedMAC = 4;\n\t\t\t\tselectedDigit = 1;\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 1, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\n\t\t\tuint8_t macaddresses[MAX_MAC_ADDRESSES][MAC_ADDRESS_LENGTH];\n\t\t\tif (xQueueReceive(wirelessQueue, &macaddresses, 0))\n\t\t\t{\n\t\t\t    uint16_t selectedColor = DESERT_ORANGE;\n\t\t\t    uint16_t defaultColor = DESERT_BLUE;\n\n\t\t\t    void draw_mac_address(uint8_t mac[], int y_offset, uint8_t selectedDigit)\n\t\t\t    {\n\t\t\t        uint16_t xpos = 44;\n\t\t\t        char ascii[3];\n\t\t\t        for (int i = 0; i < 6; i++)\n\t\t\t        {\n\t\t\t            sprintf(ascii, \"%02X\", mac[i]);\n\t\t\t            for (int j = 0; j < 2; j++)\n\t\t\t            {\n\t\t\t                uint16_t color = ((i * 2 + j + 1) == selectedDigit) ? selectedColor : defaultColor;\n\t\t\t                char digitStr[2] = {ascii[j], '\\0'};\n\t\t\t                lcdDrawString(&dev, fx16G, xpos, y_offset, (unsigned char *)digitStr, color);\n\t\t\t                xpos += 9; // Adjust according to the font width\n\t\t\t            }\n\t\t\t            if (i < 5)\n\t\t\t            {\n\t\t\t                char colon = ':';\n\t\t\t                lcdDrawString(&dev, fx16G, xpos, y_offset, (unsigned char *)&colon, defaultColor);\n\t\t\t                xpos += 9; // Adjust according to the colon width\n\t\t\t            }\n\t\t\t        }\n\t\t\t    }\n\n\t\t\t    void draw_brace1(int ypos, uint16_t color)\n\t\t\t    {\n\t\t\t        uint16_t xpos = 35;\n\t\t\t        char brace1[] = \"{\";\n\t\t\t        lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)brace1, color);\n\t\t\t    }\n\t\t\t    void draw_brace2(int ypos, uint16_t color)\n\t\t\t    {\n\t\t\t        uint16_t xpos = 197;\n\t\t\t        char brace2[] = \"}\";\n\t\t\t        lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)brace2, color);\n\t\t\t    }\n\n\t\t\t    int y_offsets[] = {95, 110, 125, 140, 155, 170, 185, 200, 215, 230, 245};\n\t\t\t    int y_offsets2[] = {63, 83, 103, 123, 143, 163, 183, 203, 223, 243, 263};\n\t\t\t    if (updateMACs) // Do once when first opening screen\n\t\t\t    {\n\t\t\t\t    for (int i = 0; i < 11; i++)\n\t\t\t\t    {\n\t\t\t\t            if (themeSelected == 1)\n\t\t\t\t            {\n\t\t\t\t            \tif (selectedMAC == i + 1)\n\t\t\t\t            \t{\n\t\t\t\t            \t\tdraw_brace1(y_offsets[i], DESERT_WHITE);\n\t\t\t\t            \t\tdraw_brace2(y_offsets[i], DESERT_WHITE);\n\t\t\t\t            \t}\n\t\t\t\t                draw_mac_address(macaddresses[i], y_offsets[i], selectedDigit);\n\t\t\t\t            }\n\t\t\t\t            else if (themeSelected == 2)\n\t\t\t\t            {\n\t\t\t\t            \tif (selectedMAC == i + 1)\n\t\t\t\t            \t{\n\t\t\t\t            \t\tdraw_brace1(y_offsets2[i], DESERT_WHITE);\n\t\t\t\t            \t\tdraw_brace2(y_offsets2[i], DESERT_WHITE);\n\t\t\t\t            \t}\n\t\t\t\t                draw_mac_address(macaddresses[i], y_offsets2[i], selectedDigit);\n\t\t\t\t            }\n\t\t\t\t        else\n\t\t\t\t        {\n\t\t\t\t        \tif (themeSelected == 1)\n\t\t\t\t        \t{\n\t\t\t\t        \t\tdraw_brace1(y_offsets[i], DESERT_BLACK);\n\t\t\t\t        \t\tdraw_brace2(y_offsets[i], DESERT_BLACK);\n\t\t\t\t        \t}\n\t\t\t\t        \telse if (themeSelected == 2)\n\t\t\t\t        \t{\n\t\t\t\t        \t\tdraw_brace1(y_offsets2[i], DESERT_BLACK);\n\t\t\t\t        \t\tdraw_brace2(y_offsets2[i], DESERT_BLACK);\n\t\t\t\t        \t}\n\t\t\t\t        }\n\t\t\t\t    }\n\t\t\t    }\n\t\t\t    for (int i = 0; i < 11; i++)\n\t\t\t    {\n\t\t\t        if (selectedMAC == i + 1)\n\t\t\t        {\n\t\t\t            if (themeSelected == 1)\n\t\t\t            {\n\t\t\t            \tif (selectedMAC == i + 1)\n\t\t\t            \t{\n\t\t\t            \t\tdraw_brace1(y_offsets[i], DESERT_WHITE);\n\t\t\t            \t\tdraw_brace2(y_offsets[i], DESERT_WHITE);\n\t\t\t            \t}\n\t\t\t                draw_mac_address(macaddresses[selectedMAC - 1], y_offsets[i], selectedDigit);\n\n\t\t\t            }\n\t\t\t            else if (themeSelected == 2)\n\t\t\t            {\n\t\t\t            \tif (selectedMAC == i + 1)\n\t\t\t            \t{\n\t\t\t            \t\tdraw_brace1(y_offsets2[i], DESERT_WHITE);\n\t\t\t            \t\tdraw_brace2(y_offsets2[i], DESERT_WHITE);\n\t\t\t            \t}\n\t\t\t                draw_mac_address(macaddresses[selectedMAC - 1], y_offsets2[i], selectedDigit);\n\t\t\t            }\n\t\t\t        }\n\t\t\t        else\n\t\t\t        {\n\t\t\t        \tif (themeSelected == 1)\n\t\t\t        \t{\n\t\t\t        \t\tdraw_brace1(y_offsets[i], DESERT_BLACK);\n\t\t\t        \t\tdraw_brace2(y_offsets[i], DESERT_BLACK);\n\t\t\t        \t}\n\t\t\t        \telse if (themeSelected == 2)\n\t\t\t        \t{\n\t\t\t        \t\tdraw_brace1(y_offsets2[i], DESERT_BLACK);\n\t\t\t        \t\tdraw_brace2(y_offsets2[i], DESERT_BLACK);\n\t\t\t        \t}\n\t\t\t        }\n\t\t\t    }\n\t\t\t    updateMACs = false;\n\t\t\t}\n\t\t}\n\t\telse if (currentScreen == 3) // Change time\n\t\t{\n\t\t\tif (screen_time)\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face1_clock.png\");\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face2_clock.png\");\n\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_time = false;\n\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\n\t\t\tstruct tm newTime;\n\t\t\tif (xQueueReceive(setTimeQueue, &newTime, 0))\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t{\n\t\t\t\t\txpos = 120;\n\t\t\t\t\typos = 96;\n\t\t\t\t}\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t{\n\t\t\t\t\txpos = 110;\n\t\t\t\t\typos = 82;\n\t\t\t\t}\n\t\t\t\tif (selectedTime == 1)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_year + 1900); // tm_year is years since 1900\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 128;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 114;\n\t\t\t\tif (selectedTime == 2)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_mon + 1); // 0 Based\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 159;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 145;\n\t\t\t\tif (selectedTime == 3)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_mday);\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 190;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 175;\n\t\t\t\tif (selectedTime == 4)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_hour);\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 220;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 205;\n\t\t\t\tif (selectedTime == 5)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_min);\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\typos = 250;\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\typos = 235;\n\t\t\t\tif (selectedTime == 6)\n\t\t\t\t\tcolor = DESERT_BLUE;\n\t\t\t\telse\n\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\tsprintf((char *)ascii, \"%d  \", newTime.tm_sec);\n\t\t\t\tlcdDrawString(&dev, fx24G, xpos, ypos, ascii, color);\n\t\t\t}\n\n\t\t}\n\t\telse if (currentScreen == 4) // WiFi screen\n\t\t{\n\t\t\tif (screen_wifi)\n\t\t\t{\n\t\t\t\tif (themeSelected == 1)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face1_blank.png\");\n\t\t\t\telse if (themeSelected == 2)\n\t\t\t\t\tstrcpy(file, \"/spiffs/face2_blank.png\");\n\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_wifi = false;\n\n\t\t\t\tinit_wireless();\n\n\t\t\t    uint16_t number = DEFAULT_SCAN_LIST_SIZE;\n\t\t\t    wifi_ap_record_t ap_info[DEFAULT_SCAN_LIST_SIZE];\n\t\t\t    uint16_t ap_count = 0;\n\t\t\t    memset(ap_info, 0, sizeof(ap_info));\n\n\t\t\t    ESP_ERROR_CHECK(esp_wifi_scan_start(NULL, true));\n\t\t\t    ESP_ERROR_CHECK(esp_wifi_scan_get_ap_records(&number, ap_info));\n\t\t\t    ESP_ERROR_CHECK(esp_wifi_scan_get_ap_num(&ap_count));\n\t\t\t    //ESP_LOGI(TAG, \"Total APs scanned = %u\", ap_count);\n\n\t\t\t    char ascii[128]; // Ensure the buffer is large enough\n\n\t\t\t    for (int i = 0; (i < DEFAULT_SCAN_LIST_SIZE) && (i < ap_count); i++)\n\t\t\t    {\n\t\t\t        //ESP_LOGI(TAG, \"SSID \\t\\t%s\", ap_info[i].ssid);\n\t\t\t        //ESP_LOGI(TAG, \"RSSI \\t\\t%d\", ap_info[i].rssi); // decibels relative to one milliwatt (higher the better)\n\t\t\t        //ESP_LOGI(TAG, \"Channel \\t\\t%d\", ap_info[i].primary);\n\t\t\t        //ESP_LOGI(TAG, \"Auth Mode \\t\\t%d\", ap_info[i].authmode);\n\t\t\t\t\tif (i == 0 && themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t    color = DESERT_BLUE;\n\t\t\t\t\t\txpos = 33;\n\t\t\t\t\t\typos = 43;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d  \", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d  \", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\t\t\t\t\telse if (i == 0 && themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t    color = DESERT_BLUE;\n\t\t\t\t\t\txpos = 13;\n\t\t\t\t\t\typos = 43;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d  \", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d  \", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\n\t\t\t\t\tif (i == 1 && themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t\typos = 88;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d  \", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d  \", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\t\t\t\t\telse if (i == 1 && themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_GREEN;\n\t\t\t\t\t\typos = 88;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d  \", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d  \", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\n\t\t\t\t\tif (i == 2 && themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_RED;\n\t\t\t\t\t\typos = 133;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\t\t\t\t\telse if (i == 2 && themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_RED;\n\t\t\t\t\t\typos = 133;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\n\t\t\t\t\tif (i == 3 && themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\t\t\typos = 178;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\t\t\t\t\telse if (i == 3 && themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_ORANGE;\n\t\t\t\t\t\typos = 178;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\n\t\t\t\t\tif (i == 4 && themeSelected == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_WHITE;\n\t\t\t\t\t\typos = 223;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\t\t\t\t\telse if (i == 4 && themeSelected == 2)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor = DESERT_WHITE;\n\t\t\t\t\t\typos = 223;\n\t\t\t\t        snprintf(ascii, sizeof(ascii), \"SSID: %s\", ap_info[i].ssid);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"RSSI: %d\", ap_info[i].rssi);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\n\t\t\t\t\t    sprintf((char *)ascii, \"Auth Mode: %d\", ap_info[i].authmode);\n\t\t\t\t\t    lcdDrawString(&dev, fx16G, xpos, ypos, (unsigned char *)ascii, color);\n\t\t\t\t\t    ypos += 15; // Increment y position for next line\n\t\t\t\t\t}\n\n\t\t\t    }\n\n\t\t\t    deinit_wireless();\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\t\t}\n\t\telse if (currentScreen == 10) // Flashlight screen\n\t\t{\n\t\t\tif (screen_flashlight)\n\t\t\t{\n\t\t\t\tstrcpy(file, \"/spiffs/flashlight.png\");\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_docs = true;\n\t\t\t\tscreen_flashlight = false;\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\t\t}\n\t\telse if (currentScreen == 11) // Docs screen\n\t\t{\n\t\t\tif (screen_docs)\n\t\t\t{\n\t\t\t\tstrcpy(file, \"/spiffs/docs.png\");\n\t\t\t\tdrawPNG(&dev, file, CONFIG_WIDTH, CONFIG_HEIGHT);\n\t\t\t\tscreen_face = true;\n\t\t\t\tscreen_imu = true;\n\t\t\t\tscreen_wireless = true;\n\t\t\t\tscreen_time = true;\n\t\t\t\tscreen_wifi = true;\n\t\t\t\tscreen_flashlight = true;\n\t\t\t\tscreen_docs = false;\n\t\t\t}\n\n\t\t\txTaskNotify(getBME680Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getDS3231Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getICM42670Handle, 1, eSetValueWithOverwrite);\n\t\t\txTaskNotify(getMCP3427Handle, 2, eSetValueWithOverwrite);\n\t\t\txTaskNotify(sendWirelessHandle, 2, eSetValueWithOverwrite);\n\t\t\t//xTaskNotify(getVL53L1XHandle, 2, eSetValueWithOverwrite);\n\t\t}\n\n\t\t\n\n\t} // end while\n}\n\nvoid app_main(void)\n{\n\tgpio_set_direction(LIDAR_PIN, GPIO_MODE_OUTPUT);\n\tgpio_set_level(LIDAR_PIN, 0);\n\tgpio_set_direction(BUTTON_1, GPIO_MODE_INPUT);\n\tgpio_pulldown_dis(BUTTON_1); // External pull-down already present\n\tgpio_pullup_dis(BUTTON_1);\n\tgpio_set_direction(BUTTON_2, GPIO_MODE_INPUT);\n\tgpio_pulldown_en(BUTTON_2);\n\tgpio_pullup_dis(BUTTON_2);\n\tgpio_set_direction(BUTTON_3, GPIO_MODE_INPUT);\n\tgpio_pulldown_en(BUTTON_3);\n\tgpio_pullup_dis(BUTTON_3);\n\tgpio_set_direction(BUTTON_4, GPIO_MODE_INPUT);\n\tgpio_pulldown_en(BUTTON_4);\n\tgpio_pullup_dis(BUTTON_4);\n\tgpio_set_direction(BUTTON_5, GPIO_MODE_INPUT);\n\tgpio_pulldown_en(BUTTON_5);\n\tgpio_pullup_dis(BUTTON_5);\n\tgpio_set_direction(CHARGE_PIN, GPIO_MODE_INPUT);\n\tgpio_pullup_en(CHARGE_PIN);\n\tgpio_pulldown_dis(CHARGE_PIN);\n\tgpio_set_direction(WOM_PIN, GPIO_MODE_INPUT);\n\tgpio_pulldown_en(WOM_PIN);\n\tgpio_pullup_dis(WOM_PIN);\n\n\tgpio_set_direction(LASER_PIN, GPIO_MODE_OUTPUT);\n\n\tESP_LOGI(TAG_ST7789, \"Initializing SPIFFS\");\n\n\tesp_vfs_spiffs_conf_t conf = {\n\t\t.base_path = \"/spiffs\",\n\t\t.partition_label = NULL,\n\t\t.max_files = 12,\n\t\t.format_if_mount_failed = true\n\t};\n\n\t// Use settings defined above to initialize and mount SPIFFS file system.\n\t// Note: esp_vfs_spiffs_register is anall-in-one convenience function.\n\tesp_err_t ret = esp_vfs_spiffs_register(&conf);\n\n\tif (ret != ESP_OK) {\n\t\tif (ret == ESP_FAIL) {\n\t\t\tESP_LOGE(TAG_ST7789, \"Failed to mount or format filesystem\");\n\t\t} else if (ret == ESP_ERR_NOT_FOUND) {\n\t\t\tESP_LOGE(TAG_ST7789, \"Failed to find SPIFFS partition\");\n\t\t} else {\n\t\t\tESP_LOGE(TAG_ST7789, \"Failed to initialize SPIFFS (%s)\",esp_err_to_name(ret));\n\t\t}\n\t\treturn;\n\t}\n\n\tsize_t total = 0, used = 0;\n\tret = esp_spiffs_info(NULL, &total,&used);\n\tif (ret != ESP_OK) {\n\t\tESP_LOGE(TAG_ST7789,\"Failed to get SPIFFS partition information (%s)\",esp_err_to_name(ret));\n\t} else {\n\t\tESP_LOGI(TAG_ST7789,\"Partition size: total: %d, used: %d\", total, used);\n\t}\n\n\ti2cMutex = xSemaphoreCreateMutex();\n\tif (i2cMutex == NULL) {\n\t\tESP_LOGE(\"main\", \"Failed to create mutex\");\n\t    return; // Handle error appropriately\n\t}\n\n    // Create the sleep timer\n    sleep_timer = xTimerCreate(\"SleepTimer\", pdMS_TO_TICKS(SLEEP_TIMEOUT_MS), pdFALSE, (void *)0, sleep_timer_callback);\n    if (sleep_timer == NULL) {\n        ESP_LOGE(TAG_TIMER, \"Failed to create sleep timer\");\n        return;\n    }\n\n    // Start the sleep timer\n    if (xTimerStart(sleep_timer, 0) != pdPASS) {\n        ESP_LOGE(TAG_TIMER, \"Failed to start sleep timer\");\n        return;\n    }\n\n\tbmeQueue = xQueueCreate(5, sizeof(bme680_values_float_t));\n\tlidarQueue = xQueueCreate(5, sizeof(uint16_t));\n\ttimeQueue = xQueueCreate(5, sizeof(struct tm));\n\tICMQueue = xQueueCreate(10, sizeof(icm42670_data_t));\n\tMCPQueue = xQueueCreate(5, sizeof(float));\n\tsetTimeQueue = xQueueCreate(5, sizeof(struct tm));\n\tuint8_t macaddresses[MAX_MAC_ADDRESSES][MAC_ADDRESS_LENGTH];\n\twirelessQueue = xQueueCreate(5, sizeof(macaddresses));\n\n\t// ST7789\n\tSPIFFS_Directory(\"/spiffs/\");\n\txTaskCreate(ST7789, \"ST7789\", 1024*6, NULL, 5, NULL);\n\n\t// Sensors\n\tESP_ERROR_CHECK(i2cdev_init()); // Initialize I2C\n\n\txTaskCreatePinnedToCore(getBME680, \"getBME680\", configMINIMAL_STACK_SIZE * 16, NULL, 5, &getBME680Handle, APP_CPU_NUM);\n\txTaskCreate(getDS3231, \"getDS3231\", configMINIMAL_STACK_SIZE * 6, NULL, 5, &getDS3231Handle);\n\txTaskCreatePinnedToCore(getVL53L1X, \"getVL53L1X\", configMINIMAL_STACK_SIZE * 16, NULL, 5, &getVL53L1XHandle, APP_CPU_NUM);\n\txTaskCreatePinnedToCore(getICM42670, \"getICM42670\", configMINIMAL_STACK_SIZE * 16, NULL, 5, &getICM42670Handle, APP_CPU_NUM);\n\txTaskCreatePinnedToCore(getMCP3427, \"getMCP3427\", configMINIMAL_STACK_SIZE * 8, NULL, 5, &getMCP3427Handle, APP_CPU_NUM);\n\txTaskCreate(sendWireless, \"sendWireless\", configMINIMAL_STACK_SIZE * 6, NULL, 5, &sendWirelessHandle);\n\treset_sleep_timer();\n}\n"
  },
  {
    "path": "Code/main/mcp342x.c",
    "content": "/*\n * Copyright (c) 2020 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n *    this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n *    this list of conditions and the following disclaimer in the documentation\n *    and/or other materials provided with the distribution.\n * 3. Neither the name of the copyright holder nor the names of itscontributors\n *    may be used to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/**\n * @file mcp342x.c\n *\n * ESP-IDF driver for 18-Bit, multi-channel delta-sigma\n * ADC MCP3426/MCP3427/MCP3428\n *\n * Copyright (c) 2020 Ruslan V. Uss <unclerus@gmail.com>\n *\n * BSD Licensed as described in the file LICENSE\n */\n#include <esp_idf_lib_helpers.h>\n#include <esp_log.h>\n#include <freertos/FreeRTOS.h>\n#include <freertos/task.h>\n#include \"mcp342x.h\"\n\n#define I2C_FREQ_HZ 400000 // 400kHz\n\nstatic const char *TAG = \"mcp342x\";\n\n#define BV(x) (1 << (x))\n\n#define BIT_RDY   BV(7)\n#define BIT_MODE  BV(4)\n\n#define POS_CHAN 5\n#define POS_SR   2\n#define POS_GAIN 0\n\n#define MASK_VAL 3\n\n#define SIGN12 0xfffff000\n#define SIGN14 0xffffc000\n#define SIGN16 0xffff0000\n#define SIGN18 0xfffc0000\n\n#define CHECK(x) do { esp_err_t __; if ((__ = x) != ESP_OK) return __; } while (0)\n#define CHECK_ARG(VAL) do { if (!(VAL)) return ESP_ERR_INVALID_ARG; } while (0)\n\nstatic const uint32_t sample_time[] = {\n    [MCP342X_RES_12] = 4167,\n    [MCP342X_RES_14] = 16667,\n    [MCP342X_RES_16] = 66667,\n    [MCP342X_RES_18] = 266667\n};\n\nstatic const float lsb[] = {\n    [MCP342X_RES_12] = 0.001,\n    [MCP342X_RES_14] = 0.00025,\n    [MCP342X_RES_16] = 0.0000625,\n    [MCP342X_RES_18] = 0.000015625\n};\n\nstatic const int gain_val[] = {\n    [MCP342X_GAIN1] = 1,\n    [MCP342X_GAIN2] = 2,\n    [MCP342X_GAIN4] = 4,\n    [MCP342X_GAIN8] = 8\n};\n\nstatic void get_cfg(mcp342x_t *dev, uint8_t reg)\n{\n    dev->mode = (reg & BIT_MODE) ? MCP342X_CONTINUOUS : MCP342X_ONESHOT;\n    dev->channel =    (reg >> POS_CHAN) & MASK_VAL;\n    dev->resolution = (reg >> POS_SR)   & MASK_VAL;\n    dev->gain =       (reg >> POS_GAIN) & MASK_VAL;\n}\n\nstatic inline uint8_t get_reg(mcp342x_t *dev)\n{\n    return (dev->mode == MCP342X_CONTINUOUS ? BIT_MODE : 0)\n        | ((dev->channel & MASK_VAL) << POS_CHAN)\n        | ((dev->resolution & MASK_VAL) << POS_SR)\n        | ((dev->gain & MASK_VAL) << POS_GAIN);\n}\n\n///////////////////////////////////////////////////////////////////////////////\n\nesp_err_t mcp342x_init_desc(mcp342x_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio)\n{\n    CHECK_ARG(dev && addr >= MCP342X_ADDR_MIN && addr <= MCP342X_ADDR_MAX);\n\n    dev->i2c_dev.port = port;\n    dev->i2c_dev.addr = addr;\n    dev->i2c_dev.cfg.sda_io_num = sda_gpio;\n    dev->i2c_dev.cfg.scl_io_num = scl_gpio;\n#if HELPER_TARGET_IS_ESP32\n    dev->i2c_dev.cfg.master.clk_speed = I2C_FREQ_HZ;\n#endif\n\n    return i2c_dev_create_mutex(&dev->i2c_dev);\n}\n\nesp_err_t mcp342x_free_desc(mcp342x_t *dev)\n{\n    CHECK_ARG(dev);\n\n    return i2c_dev_delete_mutex(&dev->i2c_dev);\n}\n\nesp_err_t mcp342x_get_data(mcp342x_t *dev, int32_t *data, bool *ready)\n{\n    CHECK_ARG(dev);\n\n    uint8_t buf[4] = { 0 };\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_read(&dev->i2c_dev, NULL, 0, buf, sizeof(buf)));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    uint8_t reg = buf[(buf[3] & (MCP342X_RES_18 << POS_SR)) == (MCP342X_RES_18 << POS_SR) ? 3 : 2];\n    get_cfg(dev, reg);\n    if (ready) *ready = !(reg & BIT_RDY);\n\n    if (!data) return ESP_OK;\n\n    uint32_t r = 0;\n    switch (dev->resolution)\n    {\n        case MCP342X_RES_12:\n            r = (buf[0] << 8) | buf[1];\n            if (r & BV(11))\n                r |= SIGN12;\n            break;\n        case MCP342X_RES_14:\n            r = (buf[0] << 8) | buf[1];\n            if (r & BV(13))\n                r |= SIGN14;\n            break;\n        case MCP342X_RES_16:\n            r = (buf[0] << 8) | buf[1];\n            if (r & BV(15))\n                r |= SIGN16;\n            break;\n        case MCP342X_RES_18:\n            r = (buf[0] << 16) | (buf[1] << 8) | buf[2];\n            if (r & BV(17))\n                r |= SIGN18;\n            break;\n    }\n    *data = *((int32_t *)&r);\n\n    return ESP_OK;\n}\n\nesp_err_t mcp342x_get_voltage(mcp342x_t *dev, float *volts, bool *ready)\n{\n    CHECK_ARG(volts);\n\n    int32_t raw;\n    CHECK(mcp342x_get_data(dev, &raw, ready));\n    *volts = lsb[dev->resolution] * raw / gain_val[dev->gain];\n\n    return ESP_OK;\n}\n\nesp_err_t mcp342x_get_sample_time_us(mcp342x_t *dev, uint32_t *us)\n{\n    CHECK_ARG(dev && us && dev->resolution <= MCP342X_RES_18);\n\n    *us = sample_time[dev->resolution];\n    return ESP_OK;\n}\n\nesp_err_t mcp342x_set_config(mcp342x_t *dev)\n{\n    CHECK_ARG(dev);\n\n    uint8_t r = get_reg(dev);\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_write(&dev->i2c_dev, NULL, 0, &r, 1));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nesp_err_t mcp342x_get_config(mcp342x_t *dev)\n{\n    return mcp342x_get_data(dev, NULL, NULL);\n}\n\nesp_err_t mcp342x_start_conversion(mcp342x_t *dev)\n{\n    CHECK_ARG(dev);\n\n    uint8_t r = get_reg(dev) | BIT_RDY;\n\n    I2C_DEV_TAKE_MUTEX(&dev->i2c_dev);\n    I2C_DEV_CHECK(&dev->i2c_dev, i2c_dev_write(&dev->i2c_dev, NULL, 0, &r, 1));\n    I2C_DEV_GIVE_MUTEX(&dev->i2c_dev);\n\n    return ESP_OK;\n}\n\nesp_err_t mcp342x_oneshot_conversion(mcp342x_t *dev, int32_t *data)\n{\n    CHECK_ARG(dev && data);\n\n    dev->mode = MCP342X_ONESHOT;\n\n    uint32_t st;\n    CHECK(mcp342x_get_sample_time_us(dev, &st));\n    CHECK(mcp342x_start_conversion(dev));\n    vTaskDelay(pdMS_TO_TICKS(st / 1000 + 1));\n    bool ready;\n    CHECK(mcp342x_get_data(dev, data, &ready));\n    if (!ready)\n    {\n        ESP_LOGE(TAG, \"Data not ready\");\n        return ESP_FAIL;\n    }\n\n    return ESP_OK;\n}\n"
  },
  {
    "path": "Code/main/mcp342x.h",
    "content": "/*\n * Copyright (c) 2020 Ruslan V. Uss <unclerus@gmail.com>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n *    this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n *    this list of conditions and the following disclaimer in the documentation\n *    and/or other materials provided with the distribution.\n * 3. Neither the name of the copyright holder nor the names of itscontributors\n *    may be used to endorse or promote products derived from this software without\n *    specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/**\n * @file mcp342x.h\n * @defgroup mcp342x mcp342x\n * @{\n *\n * ESP-IDF driver for 18-Bit, multi-channel delta-sigma\n * ADC MCP3426/MCP3427/MCP3428\n *\n * Copyright (c) 2020 Ruslan V. Uss <unclerus@gmail.com>\n *\n * BSD Licensed as described in the file LICENSE\n */\n#ifndef __MCP342X_H__\n#define __MCP342X_H__\n\n#include <stdbool.h>\n#include <i2cdev.h>\n#include <esp_err.h>\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#define MCP342X_ADDR_MIN 0x68\n#define MCP342X_ADDR_MAX 0x6f\n\n/**\n * Device operation mode\n */\ntypedef enum {\n    MCP342X_ONESHOT = 0, //!< One-shot conversion mode\n    MCP342X_CONTINUOUS   //!< Continuous conversions mode, default\n} mcp342x_mode_t;\n\n/**\n * Input channel\n */\ntypedef enum {\n    MCP342X_CHANNEL1 = 0, //!< Channel 1, default\n    MCP342X_CHANNEL2,     //!< Channel 2\n    MCP342X_CHANNEL3,     //!< Channel 3 (MCP3428 only, treated as channel 1 by the MCP3426/MCP3427)\n    MCP342X_CHANNEL4      //!< Channel 4 (MCP3428 only, treated as channel 2 by the MCP3426/MCP3427)\n} mcp342x_channel_t;\n\n/**\n * Resolution\n */\ntypedef enum {\n    MCP342X_RES_12 = 0, //!< 12 bits, 240 samples per second\n    MCP342X_RES_14,     //!< 14 bits, 60 samples per second\n    MCP342X_RES_16,     //!< 16 bits, 15 samples per second\n    MCP342X_RES_18      //!< 18 bits, 3.75 samples per second\n} mcp342x_resolution_t;\n\n/**\n * PGA gain\n */\ntypedef enum {\n    MCP342X_GAIN1 = 0,//!< x1, default\n    MCP342X_GAIN2,    //!< x2\n    MCP342X_GAIN4,    //!< x4\n    MCP342X_GAIN8     //!< x8\n} mcp342x_gain_t;\n\n/**\n * Device descriptor\n */\ntypedef struct {\n    i2c_dev_t i2c_dev;               //!< I2C device descriptor\n    mcp342x_mode_t mode;             //!< Operational mode\n    mcp342x_channel_t channel;       //!< Input channel\n    mcp342x_resolution_t resolution; //!< Resolution\n    mcp342x_gain_t gain;             //!< PGA gain\n} mcp342x_t;\n\n/**\n * @brief Initialize device descriptor\n *\n * @param dev Device descriptor\n * @param port I2C port\n * @param addr Device address\n * @param sda_gpio SDA GPIO pin\n * @param scl_gpio SCL GPIO pin\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_init_desc(mcp342x_t *dev, uint8_t addr, i2c_port_t port, gpio_num_t sda_gpio, gpio_num_t scl_gpio);\n\n/**\n * @brief Free device descriptor\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_free_desc(mcp342x_t *dev);\n\n/**\n * @brief Configure device\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_set_config(mcp342x_t *dev);\n\n/**\n * @brief Read device configuration\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_get_config(mcp342x_t *dev);\n\n/**\n * @brief Get conversion time in microseconds\n *\n * @param dev Device descriptor\n * @param[out] us Conversion time, us\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_get_sample_time_us(mcp342x_t *dev, uint32_t *us);\n\n/**\n * @brief Start conversion\n *\n * @param dev Device descriptor\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_start_conversion(mcp342x_t *dev);\n\n/**\n * @brief Get raw ADC value\n *\n * @param dev Device descriptor\n * @param[out] data ADC value\n * @param[out] ready Data validity flag\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_get_data(mcp342x_t *dev, int32_t *data, bool *ready);\n\n/**\n * @brief Get ADC voltage\n *\n * @param dev Device descriptor\n * @param[out] volts ADC voltage, volts\n * @param[out] ready Data validity flag\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_get_voltage(mcp342x_t *dev, float *volts, bool *ready);\n\n/**\n * @brief Do a single conversion\n *\n * - start conversion\n * - wait conversion time\n * - read conversion result\n *\n * @param dev Device descriptor\n * @param[out] data ADC value\n * @return `ESP_OK` on success\n */\nesp_err_t mcp342x_oneshot_conversion(mcp342x_t *dev, int32_t *data);\n\n#ifdef __cplusplus\n}\n#endif\n\n/**@}*/\n\n#endif /* __MCP342X_H__ */\n"
  },
  {
    "path": "Code/main/pngle.c",
    "content": "/*-\n * MIT License\n *\n * Copyright (c) 2019 kikuchan\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n#include <stdio.h>\n#include <string.h>\n#include <stdlib.h>\n#include <stdint.h>\n#include <math.h>\n\n#include \"esp_log.h\"\n#include \"miniz.h\"\n#include \"pngle.h\"\n\n#define PNGLE_ERROR(s) (pngle->error = (s), pngle->state = PNGLE_STATE_ERROR, -1)\n#define PNGLE_CALLOC(a, b, name) (debug_printf(\"[pngle] Allocating %zu bytes for %s\\n\", (size_t)(a) * (size_t)(b), (name)), calloc((size_t)(a), (size_t)(b)))\n\n#define PNGLE_UNUSED(x) (void)(x)\n\n// magic\nstatic const uint8_t png_sig[] = { 137, 80, 78, 71, 13, 10, 26, 10 };\nstatic uint32_t interlace_off_x[8] = { 0,  0, 4, 0, 2, 0, 1, 0 };\nstatic uint32_t interlace_off_y[8] = { 0,  0, 0, 4, 0, 2, 0, 1 };\nstatic uint32_t interlace_div_x[8] = { 1,  8, 8, 4, 4, 2, 2, 1 };\nstatic uint32_t interlace_div_y[8] = { 1,  8, 8, 8, 4, 4, 2, 2 };\n\n\nstatic inline uint8_t  read_uint8(const uint8_t *p)\n{\n\treturn *p;\n}\n\nstatic inline uint32_t read_uint32(const uint8_t *p)\n{\n\treturn (p[0] << 24)\n\t     | (p[1] << 16)\n\t     | (p[2] <<  8)\n\t     | (p[3] <<  0)\n\t;\n}\n\nstatic inline uint32_t U32_CLAMP_ADD(uint32_t a, uint32_t b, uint32_t top)\n{\n\tuint32_t v = a + b;\n\tif (v < a) return top; // uint32 overflow\n\tif (v > top) return top; // clamp\n\treturn v;\n}\n\n\nvoid pngle_reset(pngle_t *pngle)\n{\n\tif (!pngle) return ;\n\n\tpngle->state = PNGLE_STATE_INITIAL;\n\tpngle->error = \"No error\";\n\n\tif (pngle->scanline_ringbuf) free(pngle->scanline_ringbuf);\n\tif (pngle->palette) free(pngle->palette);\n\tif (pngle->trans_palette) free(pngle->trans_palette);\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n\tif (pngle->gamma_table) free(pngle->gamma_table);\n#endif\n\n\tpngle->scanline_ringbuf = NULL;\n\tpngle->palette = NULL;\n\tpngle->trans_palette = NULL;\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n\tpngle->gamma_table = NULL;\n#endif\n\n\tpngle->channels = 0; // indicates IHDR hasn't been processed yet\n\tpngle->next_out = NULL; // indicates IDAT hasn't been processed yet\n\n\t// clear them just in case...\n\tmemset(&pngle->hdr, 0, sizeof(pngle->hdr));\n\tpngle->n_palettes = 0;\n\tpngle->n_trans_palettes = 0;\n\n\ttinfl_init(&pngle->inflator);\n}\n\npngle_t *pngle_new(uint16_t width, uint16_t height)\n{\n\tpngle_t *pngle = (pngle_t *)PNGLE_CALLOC(1, sizeof(pngle_t), \"pngle_t\");\n\tif (!pngle) return NULL;\n\n\tpngle_reset(pngle);\n\n\tpngle->pixels = NULL;\n\n    //Alocate pixel memory. Each line is an array of IMAGE_W 16-bit pixels; the `*pixels` array itself contains pointers to these lines.\n\tESP_LOGD(__FUNCTION__, \"height=%d sizeof(pixel_png *)=%d\", height, sizeof(pixel_png *));\n    pngle->pixels = calloc(height, sizeof(pixel_png *));\n    if (pngle->pixels == NULL) {\n        ESP_LOGE(__FUNCTION__, \"Error allocating memory for lines\");\n        //ret = ESP_ERR_NO_MEM;\n        goto err;\n    }\n\tESP_LOGD(__FUNCTION__, \"width=%d sizeof(pixel_png)=%d\", width, sizeof(pixel_png));\n    for (int i = 0; i < height; i++) {\n        (pngle->pixels)[i] = malloc(width * sizeof(pixel_png));\n        if ((pngle->pixels)[i] == NULL) {\n            ESP_LOGE(__FUNCTION__, \"Error allocating memory for line %d\", i);\n            //ret = ESP_ERR_NO_MEM;\n            goto err;\n        }\n    }\n\n\tpngle->screenWidth = width;\n\tpngle->screenHeight = height;\n\treturn pngle;\n\n    err:\n    //Something went wrong! Exit cleanly, de-allocating everything we allocated.\n    if (pngle->pixels != NULL) {\n        for (int i = 0; i < height; i++) {\n            free((pngle->pixels)[i]);\n        }\n        free(pngle->pixels);\n    }\n\treturn NULL;\n}\n\nvoid pngle_destroy(pngle_t *pngle, uint16_t width, uint16_t height)\n{\n\tif (pngle) {\n    \tif (pngle->pixels != NULL) {\n       \t\tfor (int i = 0; i < height; i++) {\n            \tfree((pngle->pixels)[i]);\n       \t\t}\n        \tfree(pngle->pixels);\n    \t}\n\t\tpngle_reset(pngle);\n\t\tfree(pngle);\n\t}\n}\n\nconst char *pngle_error(pngle_t *pngle)\n{\n\tif (!pngle) return \"Uninitialized\";\n\treturn pngle->error;\n}\n\nuint32_t pngle_get_width(pngle_t *pngle)\n{\n\tif (!pngle) return 0;\n\treturn pngle->hdr.width;\n}\n\nuint32_t pngle_get_height(pngle_t *pngle)\n{\n\tif (!pngle) return 0;\n\treturn pngle->hdr.height;\n}\n\npngle_ihdr_t *pngle_get_ihdr(pngle_t *pngle)\n{\n\tif (!pngle) return NULL;\n\tif (pngle->channels == 0) return NULL;\n\treturn &pngle->hdr;\n}\n\n\nstatic int is_trans_color(pngle_t *pngle, uint16_t *value, size_t n)\n{\n\tif (pngle->n_trans_palettes != 1) return 0; // false (none or indexed)\n\n\tfor (size_t i = 0; i < n; i++) {\n\t\tif (value[i] != (pngle->trans_palette[i * 2 + 0] * 0x100 + pngle->trans_palette[i * 2 + 1])) return 0; // false\n\t}\n\treturn 1; // true\n}\n\nstatic inline void scanline_ringbuf_push(pngle_t *pngle, uint8_t value)\n{\n\tpngle->scanline_ringbuf[pngle->scanline_ringbuf_cidx] = value;\n\tpngle->scanline_ringbuf_cidx = (pngle->scanline_ringbuf_cidx + 1) % pngle->scanline_ringbuf_size;\n}\n\nstatic inline uint16_t get_value(pngle_t *pngle, size_t *ridx, int *bitcount, int depth)\n{\n\tuint16_t v;\n\n\tswitch (depth) {\n\tcase 1:\n\tcase 2:\n\tcase 4:\n\t\tif (*bitcount >= 8) {\n\t\t\t*bitcount = 0;\n\t\t\t*ridx = (*ridx + 1) % pngle->scanline_ringbuf_size;\n\t\t}\n\t\t*bitcount += depth;\n\t\tuint8_t mask = ((1UL << depth) - 1);\n\t\tuint8_t shift = (8 - *bitcount);\n\t\treturn (pngle->scanline_ringbuf[*ridx] >> shift) & mask;\n\n\tcase 8:\n\t\tv = pngle->scanline_ringbuf[*ridx];\n\t\t*ridx = (*ridx + 1) % pngle->scanline_ringbuf_size;\n\t\treturn v;\n\n\tcase 16:\n\t\tv = pngle->scanline_ringbuf[*ridx];\n\t\t*ridx = (*ridx + 1) % pngle->scanline_ringbuf_size;\n\n\t\tv = v * 0x100 + pngle->scanline_ringbuf[*ridx];\n\t\t*ridx = (*ridx + 1) % pngle->scanline_ringbuf_size;\n\t\treturn v;\n\t}\n\n\treturn 0;\n}\n\nstatic int pngle_draw_pixels(pngle_t *pngle, size_t scanline_ringbuf_xidx)\n{\n\tuint16_t v[4]; // MAX_CHANNELS\n\tint bitcount = 0;\n\tuint8_t pixel_depth = (pngle->hdr.color_type & 1) ? 8 : pngle->hdr.depth;\n\tuint16_t maxval = (1UL << pixel_depth) - 1;\n\n\tint n_pixels = pngle->hdr.depth == 16 ? 1 : (8 / pngle->hdr.depth);\n\n\tfor (; n_pixels-- > 0 && pngle->drawing_x < pngle->hdr.width; pngle->drawing_x = U32_CLAMP_ADD(pngle->drawing_x, interlace_div_x[pngle->interlace_pass], pngle->hdr.width)) {\n\t\tfor (uint_fast8_t c = 0; c < pngle->channels; c++) {\n\t\t\tv[c] = get_value(pngle, &scanline_ringbuf_xidx, &bitcount, pngle->hdr.depth);\n\t\t}\n\n\t\t// color type: 0000 0111\n\t\t//                     ^-- indexed color (palette)\n\t\t//                    ^--- Color\n\t\t//                   ^---- Alpha channel\n\n\t\tif (pngle->hdr.color_type & 2) {\n\t\t\t// color\n\t\t\tif (pngle->hdr.color_type & 1) {\n\t\t\t\t// indexed color: type 3\n\n\t\t\t\t// lookup palette info\n\t\t\t\tuint16_t pidx = v[0];\n\t\t\t\tif (pidx >= pngle->n_palettes) return PNGLE_ERROR(\"Color index is out of range\");\n\n\t\t\t\tv[0] = pngle->palette[pidx * 3 + 0];\n\t\t\t\tv[1] = pngle->palette[pidx * 3 + 1];\n\t\t\t\tv[2] = pngle->palette[pidx * 3 + 2];\n\n\t\t\t\t// tRNS as an indexed alpha value table (for color type 3)\n\t\t\t\tv[3] = pidx < pngle->n_trans_palettes ? pngle->trans_palette[pidx] : maxval;\n\t\t\t} else {\n\t\t\t\t// true color: 2, and 6\n\t\t\t\tv[3] = (pngle->hdr.color_type & 4) ? v[3] : is_trans_color(pngle, v, 3) ? 0 : maxval;\n\t\t\t}\n\t\t} else {\n\t\t\t// alpha, tRNS, or opaque\n\t\t\tv[3] = (pngle->hdr.color_type & 4) ? v[1] : is_trans_color(pngle, v, 1) ? 0 : maxval;\n\n\t\t\t// monochrome\n\t\t\tv[1] = v[2] = v[0];\n\t\t}\n\n\t\tif (pngle->draw_callback) {\n\t\t\tuint8_t rgba[4] = {\n\t\t\t\t(v[0] * 255 + maxval / 2) / maxval,\n\t\t\t\t(v[1] * 255 + maxval / 2) / maxval,\n\t\t\t\t(v[2] * 255 + maxval / 2) / maxval,\n\t\t\t\t(v[3] * 255 + maxval / 2) / maxval\n\t\t\t};\n\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n\t\t\tif (pngle->gamma_table) {\n\t\t\t\tfor (int i = 0; i < 3; i++) {\n\t\t\t\t\trgba[i] = pngle->gamma_table[v[i]];\n\t\t\t\t}\n\t\t\t}\n#endif\n\n\t\t\tpngle->draw_callback(pngle, pngle->drawing_x, pngle->drawing_y\n\t\t\t\t, MIN(interlace_div_x[pngle->interlace_pass] - interlace_off_x[pngle->interlace_pass], pngle->hdr.width  - pngle->drawing_x)\n\t\t\t\t, MIN(interlace_div_y[pngle->interlace_pass] - interlace_off_y[pngle->interlace_pass], pngle->hdr.height - pngle->drawing_y)\n\t\t\t\t, rgba\n\t\t\t);\n\t\t}\n\t}\n\n\treturn 0;\n}\n\nstatic inline int paeth(int a, int b, int c)\n{\n\tint p = a + b - c;\n\tint pa = abs(p - a);\n\tint pb = abs(p - b);\n\tint pc = abs(p - c);\n\n\tif (pa <= pb && pa <= pc) return a;\n\tif (pb <= pc) return b;\n\treturn c;\n}\n\nstatic int set_interlace_pass(pngle_t *pngle, uint_fast8_t pass)\n{\n\tpngle->interlace_pass = pass;\n\n\tuint_fast8_t bytes_per_pixel = (pngle->channels * pngle->hdr.depth + 7) / 8; // 1 if depth <= 8\n\tsize_t scanline_pixels = (pngle->hdr.width - interlace_off_x[pngle->interlace_pass] + interlace_div_x[pngle->interlace_pass] - 1) / interlace_div_x[pngle->interlace_pass];\n\tsize_t scanline_stride = (scanline_pixels * pngle->channels * pngle->hdr.depth + 7) / 8;\n\n\tpngle->scanline_ringbuf_size = scanline_stride + bytes_per_pixel * 2; // 2 rooms for c/x and a\n\n\tif (pngle->scanline_ringbuf) free(pngle->scanline_ringbuf);\n\tif ((pngle->scanline_ringbuf = PNGLE_CALLOC(pngle->scanline_ringbuf_size, 1, \"scanline ringbuf\")) == NULL) return PNGLE_ERROR(\"Insufficient memory\");\n\n\tpngle->drawing_x = interlace_off_x[pngle->interlace_pass];\n\tpngle->drawing_y = interlace_off_y[pngle->interlace_pass];\n\tpngle->filter_type = -1;\n\n\tpngle->scanline_ringbuf_cidx = 0;\n\tpngle->scanline_remain_bytes_to_render = -1;\n\n\treturn 0;\n}\n\nstatic int setup_gamma_table(pngle_t *pngle, uint32_t png_gamma)\n{\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n\tif (pngle->gamma_table) free(pngle->gamma_table);\n\n\tif (pngle->display_gamma <= 0) return 0; // disable gamma correction\n\tif (png_gamma == 0) return 0;\n\n\tuint8_t pixel_depth = (pngle->hdr.color_type & 1) ? 8 : pngle->hdr.depth;\n\tuint16_t maxval = (1UL << pixel_depth) - 1;\n\n\tpngle->gamma_table = PNGLE_CALLOC(1, maxval + 1, \"gamma table\");\n\tif (!pngle->gamma_table) return PNGLE_ERROR(\"Insufficient memory\");\n\n\tfor (int i = 0; i < maxval + 1; i++) {\n\t\tpngle->gamma_table[i] = (uint8_t)floor(pow(i / (double)maxval, 100000.0 / png_gamma / pngle->display_gamma) * 255.0 + 0.5);\n\t}\n\tdebug_printf(\"[pngle] gamma value = %d\\n\", png_gamma);\n#else\n\tPNGLE_UNUSED(pngle);\n\tPNGLE_UNUSED(png_gamma);\n#endif\n\treturn 0;\n}\n\n\nstatic int pngle_on_data(pngle_t *pngle, const uint8_t *p, int len)\n{\n\tconst uint8_t *ep = p + len;\n\n\tuint_fast8_t bytes_per_pixel = (pngle->channels * pngle->hdr.depth + 7) / 8; // 1 if depth <= 8\n\n\twhile (p < ep) {\n\t\tif (pngle->drawing_x >= pngle->hdr.width) {\n\t\t\t// New row\n\t\t\tpngle->drawing_x = interlace_off_x[pngle->interlace_pass];\n\t\t\tpngle->drawing_y = U32_CLAMP_ADD(pngle->drawing_y, interlace_div_y[pngle->interlace_pass], pngle->hdr.height);\n\t\t\tpngle->filter_type = -1; // Indicate new line\n\t\t}\n\n\t\tif (pngle->drawing_x >= pngle->hdr.width || pngle->drawing_y >= pngle->hdr.height) {\n\t\t\tif (pngle->interlace_pass == 0 || pngle->interlace_pass >= 7) return len; // Do nothing further\n\n\t\t\t// Interlace: Next pass\n\t\t\tif (set_interlace_pass(pngle, pngle->interlace_pass + 1) < 0) return -1;\n\t\t\tdebug_printf(\"[pngle] interlace pass changed to: %d\\n\", pngle->interlace_pass);\n\n\t\t\tcontinue; // This is required because \"No filter type bytes are present in an empty pass\".\n\t\t}\n\n\t\tif (pngle->filter_type < 0) {\n\t\t\tif (*p > 4) {\n\t\t\t\tdebug_printf(\"[pngle] Invalid filter type is found; 0x%02x\\n\", *p);\n\t\t\t\treturn PNGLE_ERROR(\"Invalid filter type is found\");\n\t\t\t}\n\n\t\t\tpngle->filter_type = (int_fast8_t)*p++; // 0 - 4\n\n\t\t\t// push sentinel bytes for new line\n\t\t\tfor (uint_fast8_t i = 0; i < bytes_per_pixel; i++) {\n\t\t\t\tscanline_ringbuf_push(pngle, 0);\n\t\t\t}\n\n\t\t\tcontinue;\n\t\t}\n\n\t\tsize_t cidx =  pngle->scanline_ringbuf_cidx;\n\t\tsize_t bidx = (pngle->scanline_ringbuf_cidx                                + bytes_per_pixel) % pngle->scanline_ringbuf_size;\n\t\tsize_t aidx = (pngle->scanline_ringbuf_cidx + pngle->scanline_ringbuf_size - bytes_per_pixel) % pngle->scanline_ringbuf_size;\n\t\t// debug_printf(\"[pngle] cidx = %zd, bidx = %zd, aidx = %zd\\n\", cidx, bidx, aidx);\n\n\t\tuint8_t c = pngle->scanline_ringbuf[cidx]; // left-up\n\t\tuint8_t b = pngle->scanline_ringbuf[bidx]; // up\n\t\tuint8_t a = pngle->scanline_ringbuf[aidx]; // left\n\t\tuint8_t x = *p++; // target\n\t\t// debug_printf(\"[pngle] c = 0x%02x, b = 0x%02x, a = 0x%02x, x = 0x%02x\\n\", c, b, a, x);\n\n\t\t// Reverse the filter\n\t\tswitch (pngle->filter_type) {\n\t\tcase 0: break; // None\n\t\tcase 1: x += a; break; // Sub\n\t\tcase 2: x += b; break; // Up\n\t\tcase 3: x += (a + b) / 2; break; // Average\n\t\tcase 4: x += paeth(a, b, c); break; // Paeth\n\t\t}\n\n\t\tscanline_ringbuf_push(pngle, x); // updates scanline_ringbuf_cidx\n\n\t\tif (pngle->scanline_remain_bytes_to_render < 0) pngle->scanline_remain_bytes_to_render = bytes_per_pixel;\n\t\tif (--pngle->scanline_remain_bytes_to_render == 0) {\n\t\t\tsize_t xidx = (pngle->scanline_ringbuf_cidx + pngle->scanline_ringbuf_size - bytes_per_pixel) % pngle->scanline_ringbuf_size;\n\n\t\t\tif (pngle_draw_pixels(pngle, xidx) < 0) return -1;\n\n\t\t\tpngle->scanline_remain_bytes_to_render = -1; // reset\n\t\t}\n\t}\n\n\treturn len;\n}\n\n\nstatic int pngle_handle_chunk(pngle_t *pngle, const uint8_t *buf, size_t len)\n{\n\tsize_t consume = 0;\n\n\tswitch (pngle->chunk_type) {\n\tcase PNGLE_CHUNK_IHDR:\n\t\t// parse IHDR\n\t\tconsume = 13;\n\t\tif (len < consume) return 0;\n\n\t\tdebug_printf(\"[pngle]   Parse IHDR\\n\");\n\n\t\tpngle->hdr.width       = read_uint32(buf +  0);\n\t\tpngle->hdr.height      = read_uint32(buf +  4);\n\t\tpngle->hdr.depth       = read_uint8 (buf +  8);\n\t\tpngle->hdr.color_type  = read_uint8 (buf +  9);\n\t\tpngle->hdr.compression = read_uint8 (buf + 10);\n\t\tpngle->hdr.filter      = read_uint8 (buf + 11);\n\t\tpngle->hdr.interlace   = read_uint8 (buf + 12);\n\n\n\t\tdebug_printf(\"[pngle]     width      : %d\\n\", pngle->hdr.width      );\n\t\tdebug_printf(\"[pngle]     height     : %d\\n\", pngle->hdr.height     );\n\t\tdebug_printf(\"[pngle]     depth      : %d\\n\", pngle->hdr.depth      );\n\t\tdebug_printf(\"[pngle]     color_type : %d\\n\", pngle->hdr.color_type );\n\t\tdebug_printf(\"[pngle]     compression: %d\\n\", pngle->hdr.compression);\n\t\tdebug_printf(\"[pngle]     filter     : %d\\n\", pngle->hdr.filter     );\n\t\tdebug_printf(\"[pngle]     interlace  : %d\\n\", pngle->hdr.interlace  );\n\n\t\t/*\n            Color    Allowed    Interpretation                            channels\n            Type    Bit Depths\n\n            0       1,2,4,8,16  Each pixel is a grayscale sample.         1 channels (Brightness)\n\n            2       8,16        Each pixel is an R,G,B triple.            3 channels (R, G, B)\n\n            3       1,2,4,8     Each pixel is a palette index;            1 channels (palette info)\n                                a PLTE chunk must appear.\n\n            4       8,16        Each pixel is a grayscale sample,         2 channels (Brightness, Alpha)\n                                followed by an alpha sample.\n\n            6       8,16        Each pixel is an R,G,B triple,            4 channels (R, G, B, Alpha)\n                                followed by an alpha sample.\n\t\t*/\n\t\t//  111\n\t\t//    ^-- indexed color (palette)\n\t\t//   ^--- Color\n\t\t//  ^---- Alpha channel\n\n\t\tswitch (pngle->hdr.color_type) {\n\t\tcase 0: pngle->channels = 1; if (pngle->hdr.depth != 1 && pngle->hdr.depth != 2 && pngle->hdr.depth != 4 && pngle->hdr.depth != 8 && pngle->hdr.depth != 16) return PNGLE_ERROR(\"Invalid bit depth\"); break; // grayscale\n\t\tcase 2: pngle->channels = 3; if (                                                                           pngle->hdr.depth != 8 && pngle->hdr.depth != 16) return PNGLE_ERROR(\"Invalid bit depth\"); break; // truecolor\n\t\tcase 3: pngle->channels = 1; if (pngle->hdr.depth != 1 && pngle->hdr.depth != 2 && pngle->hdr.depth != 4 && pngle->hdr.depth != 8                          ) return PNGLE_ERROR(\"Invalid bit depth\"); break; // indexed color\n\t\tcase 4: pngle->channels = 2; if (                                                                           pngle->hdr.depth != 8 && pngle->hdr.depth != 16) return PNGLE_ERROR(\"Invalid bit depth\"); break; // grayscale + alpha\n\t\tcase 6: pngle->channels = 4; if (                                                                           pngle->hdr.depth != 8 && pngle->hdr.depth != 16) return PNGLE_ERROR(\"Invalid bit depth\"); break; // truecolor + alpha\n\t\tdefault:\n\t\t\treturn PNGLE_ERROR(\"Incorrect IHDR info\");\n\t\t}\n\n\t\tif (pngle->hdr.compression != 0) return PNGLE_ERROR(\"Unsupported compression type in IHDR\");\n\t\tif (pngle->hdr.filter      != 0) return PNGLE_ERROR(\"Unsupported filter type in IHDR\");\n\n\t\t// interlace\n\t\tif (set_interlace_pass(pngle, pngle->hdr.interlace ? 1 : 0) < 0) return -1;\n\n\t\t// callback\n\t\tif (pngle->init_callback) pngle->init_callback(pngle, pngle->hdr.width, pngle->hdr.height);\n\n\t\tbreak;\n\n\tcase PNGLE_CHUNK_IDAT:\n\t\t// parse & decode IDAT chunk\n\t\tif (len < 1) return 0;\n\n\t\tdebug_printf(\"[pngle]   Reading IDAT (len %zd / chunk remain %u)\\n\", len, pngle->chunk_remain);\n\n\t\tsize_t in_bytes  = len;\n\t\tsize_t out_bytes = pngle->avail_out;\n\n\t\t//debug_printf(\"[pngle]     in_bytes %zd, out_bytes %zd, next_out %p\\n\", in_bytes, out_bytes, pngle->next_out);\n\n\t\t// XXX: tinfl_decompress always requires (next_out - lz_buf + avail_out) == TINFL_LZ_DICT_SIZE\n\t\ttinfl_status status = tinfl_decompress(&pngle->inflator, (const mz_uint8 *)buf, &in_bytes, pngle->lz_buf, (mz_uint8 *)pngle->next_out, &out_bytes, TINFL_FLAG_HAS_MORE_INPUT | TINFL_FLAG_PARSE_ZLIB_HEADER);\n\n\t\t//debug_printf(\"[pngle]       tinfl_decompress\\n\");\n\t\t//debug_printf(\"[pngle]       => in_bytes %zd, out_bytes %zd, next_out %p, status %d\\n\", in_bytes, out_bytes, pngle->next_out, status);\n\n\t\tif (status < TINFL_STATUS_DONE) {\n\t\t\t// Decompression failed.\n\t\t\tdebug_printf(\"[pngle] tinfl_decompress() failed with status %d!\\n\", status);\n\t\t\treturn PNGLE_ERROR(\"Failed to decompress the IDAT stream\");\n\t\t}\n\n\t\tpngle->next_out   += out_bytes;\n\t\tpngle->avail_out  -= out_bytes;\n\n\t\t// debug_printf(\"[pngle]         => avail_out %zd, next_out %p\\n\", pngle->avail_out, pngle->next_out);\n\n\t\tif (status == TINFL_STATUS_DONE || pngle->avail_out == 0) {\n\t\t\t// Output buffer is full, or decompression is done, so write buffer to output file.\n\t\t\t// XXX: This is the only chance to process the buffer.\n\t\t\tuint8_t *read_ptr = pngle->lz_buf;\n\t\t\tsize_t n = TINFL_LZ_DICT_SIZE - (size_t)pngle->avail_out;\n\n\t\t\t// pngle_on_data() usually returns n, otherwise -1 on error\n\t\t\tif (pngle_on_data(pngle, read_ptr, n) < 0) return -1;\n\n\t\t\t// XXX: tinfl_decompress always requires (next_out - lz_buf + avail_out) == TINFL_LZ_DICT_SIZE\n\t\t\tpngle->next_out = pngle->lz_buf;\n\t\t\tpngle->avail_out = TINFL_LZ_DICT_SIZE;\n\t\t}\n\n\t\tconsume = in_bytes;\n\t\tbreak;\n\n\tcase PNGLE_CHUNK_PLTE:\n\t\tconsume = 3;\n\t\tif (len < consume) return 0;\n\n\t\tmemcpy(pngle->palette + pngle->n_palettes * 3, buf, 3);\n\n\t\tdebug_printf(\"[pngle] PLTE[%zd]: (%d, %d, %d)\\n\"\n\t\t\t, pngle->n_palettes\n\t\t\t, pngle->palette[pngle->n_palettes * 3 + 0]\n\t\t\t, pngle->palette[pngle->n_palettes * 3 + 1]\n\t\t\t, pngle->palette[pngle->n_palettes * 3 + 2]\n\t\t);\n\n\t\tpngle->n_palettes++;\n\n\t\tbreak;\n\n\tcase PNGLE_CHUNK_IEND:\n\t\tconsume = 0;\n\t\tbreak;\n\n\tcase PNGLE_CHUNK_tRNS:\n\t\tswitch (pngle->hdr.color_type) {\n\t\tcase 3: consume =     1; break;\n\t\tcase 0: consume = 2 * 1; break;\n\t\tcase 2: consume = 2 * 3; break;\n\t\tdefault:\n\t\t\treturn PNGLE_ERROR(\"tRNS chunk is prohibited on the color type\");\n\t\t}\n\t\tif (len < consume) return 0;\n\n\t\tmemcpy(pngle->trans_palette + pngle->n_trans_palettes, buf, consume);\n\n\t\tpngle->n_trans_palettes++;\n\n\t\tbreak;\n\n\tcase PNGLE_CHUNK_gAMA:\n\t\tconsume = 4;\n\t\tif (len < consume) return 0;\n\n\t\tif (setup_gamma_table(pngle, read_uint32(buf)) < 0) return -1;\n\n\t\tbreak;\n\n\tdefault:\n\t\t// unknown chunk\n\t\tconsume = len;\n\n\t\tdebug_printf(\"[pngle] Unknown chunk; %zd bytes discarded\\n\", consume);\n\t\tbreak;\n\t}\n\n\treturn consume;\n}\n\nstatic int pngle_feed_internal(pngle_t *pngle, const uint8_t *buf, size_t len)\n{\n\tif (!pngle) return -1;\n\n\tswitch (pngle->state) {\n\tcase PNGLE_STATE_ERROR:\n\t\treturn -1;\n\n\tcase PNGLE_STATE_EOF:\n\t\treturn len;\n\n\tcase PNGLE_STATE_INITIAL:\n\t\t// find PNG header\n\t\tif (len < sizeof(png_sig)) return 0;\n\n\t\tif (memcmp(png_sig, buf, sizeof(png_sig))) return PNGLE_ERROR(\"Incorrect PNG signature\");\n\n\t\tdebug_printf(\"[pngle] PNG signature found\\n\");\n\n\t\tpngle->state = PNGLE_STATE_FIND_CHUNK_HEADER;\n\t\treturn sizeof(png_sig);\n\n\tcase PNGLE_STATE_FIND_CHUNK_HEADER:\n\t\tif (len < 8) return 0;\n\n\t\tpngle->chunk_remain = read_uint32(buf);\n\t\tpngle->chunk_type = read_uint32(buf + 4);\n\n\t\tpngle->crc32 = mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)(buf + 4), 4);\n\n\t\tdebug_printf(\"[pngle] Chunk '%.4s' len %u\\n\", buf + 4, pngle->chunk_remain);\n\n\t\tpngle->state = PNGLE_STATE_HANDLE_CHUNK;\n\n\t\t// initialize & sanity check\n\t\tswitch (pngle->chunk_type) {\n\t\tcase PNGLE_CHUNK_IHDR:\n\t\t\tif (pngle->chunk_remain != 13) return PNGLE_ERROR(\"Invalid IHDR chunk size\");\n\t\t\tif (pngle->channels != 0) return PNGLE_ERROR(\"Multiple IHDR chunks are not allowed\");\n\t\t\tbreak;\n\n\t\tcase PNGLE_CHUNK_IDAT:\n\t\t\tif (pngle->chunk_remain <= 0) return PNGLE_ERROR(\"Invalid IDAT chunk size\");\n\t\t\tif (pngle->channels == 0) return PNGLE_ERROR(\"No IHDR chunk is found\");\n\t\t\tif (pngle->hdr.color_type == 3 && pngle->palette == NULL) return PNGLE_ERROR(\"No PLTE chunk is found\");\n\n\t\t\tif (pngle->next_out == NULL) {\n\t\t\t\t// Very first IDAT\n\t\t\t\tpngle->next_out = pngle->lz_buf;\n\t\t\t\tpngle->avail_out = TINFL_LZ_DICT_SIZE;\n\t\t\t}\n\t\t\tbreak;\n\n\t\tcase PNGLE_CHUNK_PLTE:\n\t\t\tif (pngle->chunk_remain <= 0) return PNGLE_ERROR(\"Invalid PLTE chunk size\");\n\t\t\tif (pngle->channels == 0) return PNGLE_ERROR(\"No IHDR chunk is found\");\n\t\t\tif (pngle->palette) return PNGLE_ERROR(\"Too many PLTE chunk\");\n\n\t\t\tswitch (pngle->hdr.color_type) {\n\t\t\tcase 3: // indexed color\n\t\t\t\tbreak;\n\t\t\tcase 2: // truecolor\n\t\t\tcase 6: // truecolor + alpha\n\t\t\t\t// suggested palettes\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\treturn PNGLE_ERROR(\"PLTE chunk is prohibited on the color type\");\n\t\t\t}\n\n\t\t\tif (pngle->chunk_remain % 3) return PNGLE_ERROR(\"Invalid PLTE chunk size\");\n\t\t\tif (pngle->chunk_remain / 3 > MIN(256, (1UL << pngle->hdr.depth))) return PNGLE_ERROR(\"Too many palettes in PLTE\");\n\t\t\tif ((pngle->palette = PNGLE_CALLOC(pngle->chunk_remain / 3, 3, \"palette\")) == NULL) return PNGLE_ERROR(\"Insufficient memory\");\n\t\t\tpngle->n_palettes = 0;\n\t\t\tbreak;\n\n\t\tcase PNGLE_CHUNK_IEND:\n\t\t\tif (pngle->next_out == NULL) return PNGLE_ERROR(\"No IDAT chunk is found\");\n\t\t\tif (pngle->chunk_remain > 0) return PNGLE_ERROR(\"Invalid IEND chunk size\");\n\t\t\tbreak;\n\n\t\tcase PNGLE_CHUNK_tRNS:\n\t\t\tif (pngle->chunk_remain <= 0) return PNGLE_ERROR(\"Invalid tRNS chunk size\");\n\t\t\tif (pngle->channels == 0) return PNGLE_ERROR(\"No IHDR chunk is found\");\n\t\t\tif (pngle->trans_palette) return PNGLE_ERROR(\"Too many tRNS chunk\");\n\n\t\t\tswitch (pngle->hdr.color_type) {\n\t\t\tcase 3: // indexed color\n\t\t\t\tif (pngle->chunk_remain > (1UL << pngle->hdr.depth)) return PNGLE_ERROR(\"Too many palettes in tRNS\");\n\t\t\t\tbreak;\n\t\t\tcase 0: // grayscale\n\t\t\t\tif (pngle->chunk_remain != 2) return PNGLE_ERROR(\"Invalid tRNS chunk size\");\n\t\t\t\tbreak;\n\t\t\tcase 2: // truecolor\n\t\t\t\tif (pngle->chunk_remain != 6) return PNGLE_ERROR(\"Invalid tRNS chunk size\");\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\treturn PNGLE_ERROR(\"tRNS chunk is prohibited on the color type\");\n\t\t\t}\n\t\t\tif ((pngle->trans_palette = PNGLE_CALLOC(pngle->chunk_remain, 1, \"trans palette\")) == NULL) return PNGLE_ERROR(\"Insufficient memory\");\n\t\t\tpngle->n_trans_palettes = 0;\n\t\t\tbreak;\n\n\t\tdefault:\n\t\t\tbreak;\n\t\t}\n\n\t\treturn 8;\n\n\tcase PNGLE_STATE_HANDLE_CHUNK:\n\t\tlen = MIN(len, pngle->chunk_remain);\n\n\t\tint consumed = pngle_handle_chunk(pngle, buf, len);\n\n\t\tif (consumed > 0) {\n\t\t\tif (pngle->chunk_remain < (uint32_t)consumed) return PNGLE_ERROR(\"Chunk data has been consumed too much\");\n\n\t\t\tpngle->chunk_remain -= consumed;\n\t\t\tpngle->crc32 = mz_crc32(pngle->crc32, (const mz_uint8 *)buf, consumed);\n\t\t}\n\t\tif (pngle->chunk_remain <= 0) pngle->state = PNGLE_STATE_CRC;\n\n\t\treturn consumed;\n\n\tcase PNGLE_STATE_CRC:\n\t\tif (len < 4) return 0;\n\n\t\tuint32_t crc32 = read_uint32(buf);\n\n\t\tif (crc32 != pngle->crc32) {\n\t\t\tdebug_printf(\"[pngle] CRC: %08x vs %08x => NG\\n\", crc32, (uint32_t)pngle->crc32);\n\t\t\treturn PNGLE_ERROR(\"CRC mismatch\");\n\t\t}\n\n\t\tdebug_printf(\"[pngle] CRC: %08x vs %08x => OK\\n\", crc32, (uint32_t)pngle->crc32);\n\t\tpngle->state = PNGLE_STATE_FIND_CHUNK_HEADER;\n\n\t\t// XXX:\n\t\tif (pngle->chunk_type == PNGLE_CHUNK_IEND) {\n\t\t\tpngle->state = PNGLE_STATE_EOF;\n\t\t\tif (pngle->done_callback) pngle->done_callback(pngle);\n\t\t\tdebug_printf(\"[pngle] DONE\\n\");\n\t\t}\n\n\t\treturn 4;\n\n\tdefault:\n\t\tbreak;\n\t}\n\n\treturn PNGLE_ERROR(\"Invalid state\");\n}\n\nint pngle_feed(pngle_t *pngle, const void *buf, size_t len)\n{\n\tsize_t pos = 0;\n\tpngle_state_t last_state = pngle->state;\n\n\twhile (pos < len) {\n\t\tint r = pngle_feed_internal(pngle, (const uint8_t *)buf + pos, len - pos);\n\t\tif (r < 0) return r; // error\n\n\t\tif (r == 0 && last_state == pngle->state) break;\n\t\tlast_state = pngle->state;\n\n\t\tpos += r;\n\t}\n\n\treturn pos;\n}\n\nvoid pngle_set_display_gamma(pngle_t *pngle, double display_gamma)\n{\n\tif (!pngle) return ;\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n\tpngle->display_gamma = display_gamma;\n#else\n\tPNGLE_UNUSED(display_gamma);\n#endif\n}\n\nvoid pngle_set_init_callback(pngle_t *pngle, pngle_init_callback_t callback)\n{\n\tif (!pngle) return ;\n\tpngle->init_callback = callback;\n}\n\nvoid pngle_set_draw_callback(pngle_t *pngle, pngle_draw_callback_t callback)\n{\n\tif (!pngle) return ;\n\tpngle->draw_callback = callback;\n}\n\nvoid pngle_set_done_callback(pngle_t *pngle, pngle_done_callback_t callback)\n{\n\tif (!pngle) return ;\n\tpngle->done_callback = callback;\n}\n\nvoid pngle_set_user_data(pngle_t *pngle, void *user_data)\n{\n\tif (!pngle) return ;\n\tpngle->user_data = user_data;\n}\n\nvoid *pngle_get_user_data(pngle_t *pngle)\n{\n\tif (!pngle) return NULL;\n\treturn pngle->user_data;\n}\n\n/* vim: set ts=4 sw=4 noexpandtab: */\n"
  },
  {
    "path": "Code/main/pngle.h",
    "content": "/*-\n * MIT License\n *\n * Copyright (c) 2019 kikuchan\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n#ifndef __PNGLE_H__\n#define __PNGLE_H__\n\n#include <stdint.h>\n#include <stdbool.h>\n#include \"miniz.h\"\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#ifndef MIN\n#define MIN(a, b) ((a) < (b) ? (a) : (b))\n#endif\n\n#ifdef PNGLE_DEBUG\n#define debug_printf(...) fprintf(stderr, __VA_ARGS__)\n#else\n#define debug_printf(...) ((void)0)\n#endif\n\n//#define PNGLE_NO_GAMMA_CORRECTION\n\n#if 0\ntypedef struct __attribute__((__packed__)) {\n    uint8_t red;\n    uint8_t green;\n    uint8_t blue;\n} pixel_png;\n#endif\n\n//rgb565 format\ntypedef uint16_t pixel_png;\n\ntypedef enum {\n    PNGLE_STATE_ERROR = -2,\n    PNGLE_STATE_EOF = -1,\n    PNGLE_STATE_INITIAL = 0,\n\n    PNGLE_STATE_FIND_CHUNK_HEADER,\n    PNGLE_STATE_HANDLE_CHUNK,\n    PNGLE_STATE_CRC,\n} pngle_state_t;\n\n\ntypedef enum {\n// Supported chunks\n//   Filter chunk names by following command to (re)generate hex constants;\n//     % perl -ne 'chomp; s/.*\\s*\\/\\/\\s*//; print \"\\tPNGLE_CHUNK_$_ = 0x\" . unpack(\"H*\") . \"UL, // $_\\n\";'\n    PNGLE_CHUNK_IHDR = 0x49484452UL, // IHDR\n    PNGLE_CHUNK_PLTE = 0x504c5445UL, // PLTE\n    PNGLE_CHUNK_IDAT = 0x49444154UL, // IDAT\n    PNGLE_CHUNK_IEND = 0x49454e44UL, // IEND\n    PNGLE_CHUNK_tRNS = 0x74524e53UL, // tRNS\n    PNGLE_CHUNK_gAMA = 0x67414d41UL, // gAMA\n} pngle_chunk_t;\n\ntypedef struct _pngle_ihdr_t {\n\tuint32_t width;\n\tuint32_t height;\n\tuint8_t depth;\n\tuint8_t color_type;\n\tuint8_t compression;\n\tuint8_t filter;\n\tuint8_t interlace;\n} pngle_ihdr_t;\n\ntypedef unsigned int\tUINT;\n\ntypedef struct pngle pngle_t;\n\ntypedef void (*pngle_init_callback_t)(pngle_t *pngle, uint32_t w, uint32_t h);\ntypedef void (*pngle_draw_callback_t)(pngle_t *pngle, uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint8_t rgba[4]);\ntypedef void (*pngle_done_callback_t)(pngle_t *pngle);\n\nstruct pngle {\n    pngle_ihdr_t hdr;\n\n    uint_fast8_t channels; // 0 indicates IHDR hasn't been processed yet\n\n    // PLTE chunk\n    size_t n_palettes;\n    uint8_t *palette;\n\n    // tRNS chunk\n    size_t n_trans_palettes;\n    uint8_t *trans_palette;\n\n    // parser state (reset on every chunk header)\n    pngle_state_t state;\n    uint32_t chunk_type;\n    uint32_t chunk_remain;\n    mz_ulong crc32;\n\n    // decompression state (reset on IHDR)\n    tinfl_decompressor inflator; // 11000 bytes\n    uint8_t lz_buf[TINFL_LZ_DICT_SIZE]; // 32768 bytes\n    uint8_t *next_out; // NULL indicates IDAT hasn't been processed yet\n    size_t  avail_out;\n\n    // scanline decoder (reset on every set_interlace_pass() call)\n    uint8_t *scanline_ringbuf;\n    size_t scanline_ringbuf_size;\n    size_t scanline_ringbuf_cidx;\n    int_fast8_t scanline_remain_bytes_to_render;\n    int_fast8_t filter_type;\n    uint32_t drawing_x;\n    uint32_t drawing_y;\n\n    // interlace\n    uint_fast8_t interlace_pass;\n\n    const char *error;\n\n#ifndef PNGLE_NO_GAMMA_CORRECTION\n    uint8_t *gamma_table;\n    double display_gamma;\n#endif\n\n    pngle_init_callback_t init_callback;\n    pngle_draw_callback_t draw_callback;\n    pngle_done_callback_t done_callback;\n\n    void *user_data;\n\tuint16_t screenWidth;\n\tuint16_t screenHeight;\n\tuint16_t imageWidth;\n\tuint16_t imageHeight;\n\tpixel_png **pixels;\n\tbool reduction;\n\tdouble scale_factor;\n};\n\n\n// ----------------\n// Basic interfaces\n// ----------------\npngle_t *pngle_new(uint16_t width, uint16_t height);\nvoid pngle_destroy(pngle_t *pngle, uint16_t width, uint16_t height);\nvoid pngle_reset(pngle_t *pngle); // clear its internal state (not applied to pngle_set_* functions)\nconst char *pngle_error(pngle_t *pngle);\nint pngle_feed(pngle_t *pngle, const void *buf, size_t len); // returns -1: On error, 0: Need more data, n: n bytes eaten\n\nuint32_t pngle_get_width(pngle_t *pngle);\nuint32_t pngle_get_height(pngle_t *pngle);\n\nvoid pngle_set_init_callback(pngle_t *png, pngle_init_callback_t callback);\nvoid pngle_set_draw_callback(pngle_t *png, pngle_draw_callback_t callback);\nvoid pngle_set_done_callback(pngle_t *png, pngle_done_callback_t callback);\n\nvoid pngle_set_display_gamma(pngle_t *pngle, double display_gamma); // enables gamma correction by specifying display gamma, typically 2.2. No effect when gAMA chunk is missing\n\nvoid pngle_set_user_data(pngle_t *pngle, void *user_data);\nvoid *pngle_get_user_data(pngle_t *pngle);\n\n\n// Get IHDR information\npngle_ihdr_t *pngle_get_ihdr(pngle_t *pngle);\n\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* __PNGLE_H__ */\n"
  },
  {
    "path": "Code/main/vl53l1_platform.h",
    "content": "/**\n * @file  vl53l1_platform.h\n * @brief Those platform functions are platform dependent and have to be implemented by the user\n */\n\n#ifndef _VL53L1_PLATFORM_H_\n#define _VL53L1_PLATFORM_H_\n\n#include \"vl53l1_types.h\"\n\n#ifdef __cplusplus\nextern \"C\"\n{\n#endif\n\ntypedef struct {\n\tuint32_t dummy;\n} VL53L1_Dev_t;\n\ntypedef VL53L1_Dev_t *VL53L1_DEV;\n\n/** @brief VL53L1_WriteMulti() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_WriteMulti(\n\t\tuint16_t \t\t\tdev,\n\t\tuint16_t      index,\n\t\tuint8_t      *pdata,\n\t\tuint32_t      count);\n/** @brief VL53L1_ReadMulti() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_ReadMulti(\n\t\tuint16_t \t\t\tdev,\n\t\tuint16_t      index,\n\t\tuint8_t      *pdata,\n\t\tuint32_t      count);\n/** @brief VL53L1_WrByte() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_WrByte(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint8_t       data);\n/** @brief VL53L1_WrWord() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_WrWord(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint16_t      data);\n/** @brief VL53L1_WrDWord() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_WrDWord(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint32_t      data);\n/** @brief VL53L1_RdByte() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_RdByte(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint8_t      *pdata);\n/** @brief VL53L1_RdWord() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_RdWord(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint16_t     *pdata);\n/** @brief VL53L1_RdDWord() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_RdDWord(\n\t\tuint16_t dev,\n\t\tuint16_t      index,\n\t\tuint32_t     *pdata);\n/** @brief VL53L1_WaitMs() definition.\\n\n * To be implemented by the developer\n */\nint8_t VL53L1_WaitMs(\n\t\tuint16_t dev,\n\t\tint32_t       wait_ms);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif\n"
  },
  {
    "path": "Code/main/vl53l1_types.h",
    "content": "/*******************************************************************************\nCopyright (C) 2015, STMicroelectronics International N.V.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n      notice, this list of conditions and the following disclaimer in the\n      documentation and/or other materials provided with the distribution.\n    * Neither the name of STMicroelectronics nor the\n      names of its contributors may be used to endorse or promote products\n      derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND\nNON-INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS ARE DISCLAIMED.\nIN NO EVENT SHALL STMICROELECTRONICS INTERNATIONAL N.V. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n********************************************************************************/\n/**\n * @file  vl53l1_types.h\n * @brief VL53L1 types definition\n */\n\n#ifndef _VL53L1_TYPES_H_\n#define _VL53L1_TYPES_H_\n\n/** @defgroup porting_type  Basic type definition\n *  @ingroup  api_platform\n *\n *  @brief  file vl53l1_types.h files hold basic type definition that may requires porting\n *\n *  contains type that must be defined for the platform\\n\n *  when target platform and compiler provide stdint.h and stddef.h it is enough to include it.\\n\n *  If stdint.h is not available review and adapt all signed and unsigned 8/16/32 bits basic types. \\n\n *  If stddef.h is not available review and adapt NULL definition .\n */\n#include <stdint.h>\n#include <stddef.h>\n#include <string.h>\n#include <stdio.h>\n#include <stdlib.h>\n\n#ifndef NULL\n#error \"Error NULL definition should be done. Please add required include \"\n#endif\n\n\n#if !defined(STDINT_H) && !defined(_STDINT_H) && !defined(_GCC_STDINT_H) && !defined(__STDINT_DECLS) && !defined(_GCC_WRAP_STDINT_H)  && !defined(_STDINT)\n\n #pragma message(\"Please review  type definition of STDINT define for your platform and add to list above \")\n\n /*\n  *  target platform do not provide stdint or use a different #define than above\n  *  to avoid seeing the message below addapt the #define list above or implement\n  *  all type and delete these pragma\n  */\n\n/** \\ingroup VL53L1_portingType_group\n * @{\n */\n\n\ntypedef unsigned long long uint64_t;\n\n\n/** @brief Typedef defining 32 bit unsigned int type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef unsigned int uint32_t;\n\n/** @brief Typedef defining 32 bit int type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef int int32_t;\n\n/** @brief Typedef defining 16 bit unsigned short type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef unsigned short uint16_t;\n\n/** @brief Typedef defining 16 bit short type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef short int16_t;\n\n/** @brief Typedef defining 8 bit unsigned char type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef unsigned char uint8_t;\n\n/** @brief Typedef defining 8 bit char type.\\n\n * The developer should modify this to suit the platform being deployed.\n */\ntypedef signed char int8_t;\n\n/** @}  */\n#endif /* _STDINT_H */\n\n\n/** use where fractional values are expected\n *\n * Given a floating point value f it's .16 bit point is (int)(f*(1<<16))*/\ntypedef uint32_t FixPoint1616_t;\n\n#endif /* VL53L1_TYPES_H_ */\n"
  },
  {
    "path": "Code/partitions.csv",
    "content": "# Name,   Type, SubType, Offset,  Size, Flags\n# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild\nnvs,      data, nvs,     0x9000,  0x6000,\nphy_init, data, phy,     0xf000,  0x1000,\nfactory,  app,  factory, 0x10000, 1M,\nstorage,  data, spiffs,  ,        0xF0000, \n"
  },
  {
    "path": "Code/sdkconfig",
    "content": "#\n# Automatically generated file. DO NOT EDIT.\n# Espressif IoT Development Framework (ESP-IDF) 5.1.2 Project Configuration\n#\nCONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000\nCONFIG_SOC_MPU_REGIONS_MAX_NUM=8\nCONFIG_SOC_ADC_SUPPORTED=y\nCONFIG_SOC_UART_SUPPORTED=y\nCONFIG_SOC_PCNT_SUPPORTED=y\nCONFIG_SOC_WIFI_SUPPORTED=y\nCONFIG_SOC_TWAI_SUPPORTED=y\nCONFIG_SOC_GDMA_SUPPORTED=y\nCONFIG_SOC_GPTIMER_SUPPORTED=y\nCONFIG_SOC_LCDCAM_SUPPORTED=y\nCONFIG_SOC_MCPWM_SUPPORTED=y\nCONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y\nCONFIG_SOC_CACHE_SUPPORT_WRAP=y\nCONFIG_SOC_ULP_SUPPORTED=y\nCONFIG_SOC_ULP_FSM_SUPPORTED=y\nCONFIG_SOC_RISCV_COPROC_SUPPORTED=y\nCONFIG_SOC_BT_SUPPORTED=y\nCONFIG_SOC_USB_OTG_SUPPORTED=y\nCONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y\nCONFIG_SOC_CCOMP_TIMER_SUPPORTED=y\nCONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y\nCONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y\nCONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y\nCONFIG_SOC_SDMMC_HOST_SUPPORTED=y\nCONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y\nCONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y\nCONFIG_SOC_RTC_MEM_SUPPORTED=y\nCONFIG_SOC_PSRAM_DMA_CAPABLE=y\nCONFIG_SOC_XT_WDT_SUPPORTED=y\nCONFIG_SOC_I2S_SUPPORTED=y\nCONFIG_SOC_RMT_SUPPORTED=y\nCONFIG_SOC_SDM_SUPPORTED=y\nCONFIG_SOC_GPSPI_SUPPORTED=y\nCONFIG_SOC_LEDC_SUPPORTED=y\nCONFIG_SOC_I2C_SUPPORTED=y\nCONFIG_SOC_SYSTIMER_SUPPORTED=y\nCONFIG_SOC_SUPPORT_COEXISTENCE=y\nCONFIG_SOC_TEMP_SENSOR_SUPPORTED=y\nCONFIG_SOC_AES_SUPPORTED=y\nCONFIG_SOC_MPI_SUPPORTED=y\nCONFIG_SOC_SHA_SUPPORTED=y\nCONFIG_SOC_HMAC_SUPPORTED=y\nCONFIG_SOC_DIG_SIGN_SUPPORTED=y\nCONFIG_SOC_FLASH_ENC_SUPPORTED=y\nCONFIG_SOC_SECURE_BOOT_SUPPORTED=y\nCONFIG_SOC_MEMPROT_SUPPORTED=y\nCONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y\nCONFIG_SOC_BOD_SUPPORTED=y\nCONFIG_SOC_XTAL_SUPPORT_40M=y\nCONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y\nCONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y\nCONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y\nCONFIG_SOC_ADC_ARBITER_SUPPORTED=y\nCONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y\nCONFIG_SOC_ADC_MONITOR_SUPPORTED=y\nCONFIG_SOC_ADC_DMA_SUPPORTED=y\nCONFIG_SOC_ADC_PERIPH_NUM=2\nCONFIG_SOC_ADC_MAX_CHANNEL_NUM=10\nCONFIG_SOC_ADC_ATTEN_NUM=4\nCONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2\nCONFIG_SOC_ADC_PATT_LEN_MAX=24\nCONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12\nCONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12\nCONFIG_SOC_ADC_DIGI_RESULT_BYTES=4\nCONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4\nCONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2\nCONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333\nCONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611\nCONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12\nCONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12\nCONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y\nCONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y\nCONFIG_SOC_APB_BACKUP_DMA=y\nCONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y\nCONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y\nCONFIG_SOC_CACHE_FREEZE_SUPPORTED=y\nCONFIG_SOC_CPU_CORES_NUM=2\nCONFIG_SOC_CPU_INTR_NUM=32\nCONFIG_SOC_CPU_HAS_FPU=y\nCONFIG_SOC_CPU_BREAKPOINTS_NUM=2\nCONFIG_SOC_CPU_WATCHPOINTS_NUM=2\nCONFIG_SOC_CPU_WATCHPOINT_SIZE=64\nCONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096\nCONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16\nCONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100\nCONFIG_SOC_GDMA_GROUPS=y\nCONFIG_SOC_GDMA_PAIRS_PER_GROUP=5\nCONFIG_SOC_GDMA_SUPPORT_PSRAM=y\nCONFIG_SOC_GPIO_PORT=1\nCONFIG_SOC_GPIO_PIN_COUNT=49\nCONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y\nCONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB=y\nCONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y\nCONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y\nCONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF\nCONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000\nCONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8\nCONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8\nCONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE=y\nCONFIG_SOC_I2C_NUM=2\nCONFIG_SOC_I2C_FIFO_LEN=32\nCONFIG_SOC_I2C_CMD_REG_NUM=8\nCONFIG_SOC_I2C_SUPPORT_SLAVE=y\nCONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y\nCONFIG_SOC_I2C_SUPPORT_XTAL=y\nCONFIG_SOC_I2C_SUPPORT_RTC=y\nCONFIG_SOC_I2S_NUM=2\nCONFIG_SOC_I2S_HW_VERSION_2=y\nCONFIG_SOC_I2S_SUPPORTS_XTAL=y\nCONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y\nCONFIG_SOC_I2S_SUPPORTS_PCM=y\nCONFIG_SOC_I2S_SUPPORTS_PDM=y\nCONFIG_SOC_I2S_SUPPORTS_PDM_TX=y\nCONFIG_SOC_I2S_PDM_MAX_TX_LINES=2\nCONFIG_SOC_I2S_SUPPORTS_PDM_RX=y\nCONFIG_SOC_I2S_PDM_MAX_RX_LINES=4\nCONFIG_SOC_I2S_SUPPORTS_TDM=y\nCONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y\nCONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y\nCONFIG_SOC_LEDC_CHANNEL_NUM=8\nCONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14\nCONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y\nCONFIG_SOC_MCPWM_GROUPS=2\nCONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3\nCONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3\nCONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3\nCONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y\nCONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3\nCONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3\nCONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y\nCONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1\nCONFIG_SOC_MMU_PERIPH_NUM=1\nCONFIG_SOC_PCNT_GROUPS=1\nCONFIG_SOC_PCNT_UNITS_PER_GROUP=4\nCONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2\nCONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2\nCONFIG_SOC_RMT_GROUPS=1\nCONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4\nCONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4\nCONFIG_SOC_RMT_CHANNELS_PER_GROUP=8\nCONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48\nCONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y\nCONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y\nCONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y\nCONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y\nCONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y\nCONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y\nCONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y\nCONFIG_SOC_RMT_SUPPORT_XTAL=y\nCONFIG_SOC_RMT_SUPPORT_RC_FAST=y\nCONFIG_SOC_RMT_SUPPORT_APB=y\nCONFIG_SOC_RMT_SUPPORT_DMA=y\nCONFIG_SOC_LCD_I80_SUPPORTED=y\nCONFIG_SOC_LCD_RGB_SUPPORTED=y\nCONFIG_SOC_LCD_I80_BUSES=1\nCONFIG_SOC_LCD_RGB_PANELS=1\nCONFIG_SOC_LCD_I80_BUS_WIDTH=16\nCONFIG_SOC_LCD_RGB_DATA_WIDTH=16\nCONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y\nCONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH=128\nCONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM=549\nCONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH=128\nCONFIG_SOC_RTCIO_PIN_COUNT=22\nCONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y\nCONFIG_SOC_RTCIO_HOLD_SUPPORTED=y\nCONFIG_SOC_RTCIO_WAKE_SUPPORTED=y\nCONFIG_SOC_SDM_GROUPS=y\nCONFIG_SOC_SDM_CHANNELS_PER_GROUP=8\nCONFIG_SOC_SDM_CLK_SUPPORT_APB=y\nCONFIG_SOC_SPI_PERIPH_NUM=3\nCONFIG_SOC_SPI_MAX_CS_NUM=6\nCONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64\nCONFIG_SOC_SPI_SUPPORT_DDRCLK=y\nCONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y\nCONFIG_SOC_SPI_SUPPORT_CD_SIG=y\nCONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y\nCONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y\nCONFIG_SOC_SPI_SUPPORT_CLK_APB=y\nCONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y\nCONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y\nCONFIG_SOC_MEMSPI_IS_INDEPENDENT=y\nCONFIG_SOC_SPI_MAX_PRE_DIVIDER=16\nCONFIG_SOC_SPI_SUPPORT_OCT=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_120M=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y\nCONFIG_SOC_SPIRAM_SUPPORTED=y\nCONFIG_SOC_SPIRAM_XIP_SUPPORTED=y\nCONFIG_SOC_SYSTIMER_COUNTER_NUM=2\nCONFIG_SOC_SYSTIMER_ALARM_NUM=3\nCONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32\nCONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20\nCONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y\nCONFIG_SOC_SYSTIMER_INT_LEVEL=y\nCONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y\nCONFIG_SOC_TIMER_GROUPS=2\nCONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2\nCONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54\nCONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y\nCONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y\nCONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4\nCONFIG_SOC_TOUCH_VERSION_2=y\nCONFIG_SOC_TOUCH_SENSOR_NUM=15\nCONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3\nCONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y\nCONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX=0x1FFFFF\nCONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF\nCONFIG_SOC_TWAI_CONTROLLER_NUM=1\nCONFIG_SOC_TWAI_CLK_SUPPORT_APB=y\nCONFIG_SOC_TWAI_BRP_MIN=2\nCONFIG_SOC_TWAI_BRP_MAX=16384\nCONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y\nCONFIG_SOC_UART_NUM=3\nCONFIG_SOC_UART_FIFO_LEN=128\nCONFIG_SOC_UART_BITRATE_MAX=5000000\nCONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y\nCONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y\nCONFIG_SOC_UART_SUPPORT_APB_CLK=y\nCONFIG_SOC_UART_SUPPORT_RTC_CLK=y\nCONFIG_SOC_UART_SUPPORT_XTAL_CLK=y\nCONFIG_SOC_UART_REQUIRE_CORE_RESET=y\nCONFIG_SOC_USB_PERIPH_NUM=y\nCONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968\nCONFIG_SOC_SHA_SUPPORT_DMA=y\nCONFIG_SOC_SHA_SUPPORT_RESUME=y\nCONFIG_SOC_SHA_GDMA=y\nCONFIG_SOC_SHA_SUPPORT_SHA1=y\nCONFIG_SOC_SHA_SUPPORT_SHA224=y\nCONFIG_SOC_SHA_SUPPORT_SHA256=y\nCONFIG_SOC_SHA_SUPPORT_SHA384=y\nCONFIG_SOC_SHA_SUPPORT_SHA512=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_224=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_256=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_T=y\nCONFIG_SOC_RSA_MAX_BIT_LEN=4096\nCONFIG_SOC_AES_SUPPORT_DMA=y\nCONFIG_SOC_AES_GDMA=y\nCONFIG_SOC_AES_SUPPORT_AES_128=y\nCONFIG_SOC_AES_SUPPORT_AES_256=y\nCONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_CPU_PD=y\nCONFIG_SOC_PM_SUPPORT_TAGMEM_PD=y\nCONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y\nCONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y\nCONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y\nCONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y\nCONFIG_SOC_PM_SUPPORT_MODEM_PD=y\nCONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y\nCONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y\nCONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL=y\nCONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA=y\nCONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y\nCONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y\nCONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y\nCONFIG_SOC_CLK_XTAL32K_SUPPORTED=y\nCONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y\nCONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y\nCONFIG_SOC_EFUSE_HARD_DIS_JTAG=y\nCONFIG_SOC_EFUSE_DIS_USB_JTAG=y\nCONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y\nCONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y\nCONFIG_SOC_EFUSE_DIS_ICACHE=y\nCONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y\nCONFIG_SOC_SECURE_BOOT_V2_RSA=y\nCONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3\nCONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y\nCONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y\nCONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y\nCONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE=16\nCONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE=256\nCONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21\nCONFIG_SOC_MAC_BB_PD_MEM_SIZE=192\nCONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y\nCONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y\nCONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING=y\nCONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y\nCONFIG_SOC_COEX_HW_PTI=y\nCONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y\nCONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y\nCONFIG_SOC_SDMMC_NUM_SLOTS=2\nCONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y\nCONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y\nCONFIG_SOC_WIFI_HW_TSF=y\nCONFIG_SOC_WIFI_FTM_SUPPORT=y\nCONFIG_SOC_WIFI_GCMP_SUPPORT=y\nCONFIG_SOC_WIFI_WAPI_SUPPORT=y\nCONFIG_SOC_WIFI_CSI_SUPPORT=y\nCONFIG_SOC_WIFI_MESH_SUPPORT=y\nCONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y\nCONFIG_SOC_BLE_SUPPORTED=y\nCONFIG_SOC_BLE_MESH_SUPPORTED=y\nCONFIG_SOC_BLE_50_SUPPORTED=y\nCONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y\nCONFIG_SOC_BLUFI_SUPPORTED=y\nCONFIG_SOC_ULP_HAS_ADC=y\nCONFIG_SOC_PHY_COMBO_MODULE=y\nCONFIG_IDF_CMAKE=y\nCONFIG_IDF_TARGET_ARCH_XTENSA=y\nCONFIG_IDF_TARGET_ARCH=\"xtensa\"\nCONFIG_IDF_TARGET=\"esp32s3\"\nCONFIG_IDF_TARGET_ESP32S3=y\nCONFIG_IDF_FIRMWARE_CHIP_ID=0x0009\n\n#\n# Build type\n#\nCONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y\n# CONFIG_APP_BUILD_TYPE_RAM is not set\nCONFIG_APP_BUILD_GENERATE_BINARIES=y\nCONFIG_APP_BUILD_BOOTLOADER=y\nCONFIG_APP_BUILD_USE_FLASH_SECTIONS=y\n# CONFIG_APP_REPRODUCIBLE_BUILD is not set\n# CONFIG_APP_NO_BLOBS is not set\n# end of Build type\n\n#\n# Bootloader config\n#\nCONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0\nCONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set\nCONFIG_BOOTLOADER_LOG_LEVEL_INFO=y\n# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set\nCONFIG_BOOTLOADER_LOG_LEVEL=3\nCONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y\n# CONFIG_BOOTLOADER_FACTORY_RESET is not set\n# CONFIG_BOOTLOADER_APP_TEST is not set\nCONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y\nCONFIG_BOOTLOADER_WDT_ENABLE=y\n# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set\nCONFIG_BOOTLOADER_WDT_TIME_MS=9000\n# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set\nCONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0\n# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set\nCONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y\n# end of Bootloader config\n\n#\n# Security features\n#\nCONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y\nCONFIG_SECURE_BOOT_V2_PREFERRED=y\n# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set\n# CONFIG_SECURE_BOOT is not set\n# CONFIG_SECURE_FLASH_ENC_ENABLED is not set\nCONFIG_SECURE_ROM_DL_MODE_ENABLED=y\n# end of Security features\n\n#\n# Application manager\n#\nCONFIG_APP_COMPILE_TIME_DATE=y\n# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set\n# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set\n# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set\nCONFIG_APP_RETRIEVE_LEN_ELF_SHA=16\n# end of Application manager\n\nCONFIG_ESP_ROM_HAS_CRC_LE=y\nCONFIG_ESP_ROM_HAS_CRC_BE=y\nCONFIG_ESP_ROM_HAS_MZ_CRC32=y\nCONFIG_ESP_ROM_HAS_JPEG_DECODE=y\nCONFIG_ESP_ROM_UART_CLK_IS_XTAL=y\nCONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y\nCONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4\nCONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG=y\nCONFIG_ESP_ROM_GET_CLK_FREQ=y\nCONFIG_ESP_ROM_HAS_HAL_WDT=y\nCONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y\nCONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y\nCONFIG_ESP_ROM_HAS_SPI_FLASH=y\nCONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y\nCONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y\nCONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y\nCONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y\nCONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG=y\nCONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG=y\nCONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG=y\n\n#\n# Boot ROM Behavior\n#\nCONFIG_BOOT_ROM_LOG_ALWAYS_ON=y\n# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set\n# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set\n# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set\n# end of Boot ROM Behavior\n\n#\n# Serial flasher config\n#\n# CONFIG_ESPTOOLPY_NO_STUB is not set\n# CONFIG_ESPTOOLPY_OCT_FLASH is not set\nCONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT=y\n# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set\n# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set\nCONFIG_ESPTOOLPY_FLASHMODE_DIO=y\n# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set\nCONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y\nCONFIG_ESPTOOLPY_FLASHMODE=\"dio\"\n# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set\nCONFIG_ESPTOOLPY_FLASHFREQ_80M=y\n# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set\n# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set\nCONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT=y\nCONFIG_ESPTOOLPY_FLASHFREQ=\"80m\"\n# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set\nCONFIG_ESPTOOLPY_FLASHSIZE_2MB=y\n# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set\nCONFIG_ESPTOOLPY_FLASHSIZE=\"2MB\"\n# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set\nCONFIG_ESPTOOLPY_BEFORE_RESET=y\n# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set\nCONFIG_ESPTOOLPY_BEFORE=\"default_reset\"\nCONFIG_ESPTOOLPY_AFTER_RESET=y\n# CONFIG_ESPTOOLPY_AFTER_NORESET is not set\nCONFIG_ESPTOOLPY_AFTER=\"hard_reset\"\nCONFIG_ESPTOOLPY_MONITOR_BAUD=115200\n# end of Serial flasher config\n\n#\n# Partition Table\n#\n# CONFIG_PARTITION_TABLE_SINGLE_APP is not set\n# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set\n# CONFIG_PARTITION_TABLE_TWO_OTA is not set\nCONFIG_PARTITION_TABLE_CUSTOM=y\nCONFIG_PARTITION_TABLE_CUSTOM_FILENAME=\"partitions.csv\"\nCONFIG_PARTITION_TABLE_FILENAME=\"partitions.csv\"\nCONFIG_PARTITION_TABLE_OFFSET=0x8000\nCONFIG_PARTITION_TABLE_MD5=y\n# end of Partition Table\n\n#\n# ST7789 Configuration\n#\nCONFIG_GPIO_RANGE_MAX=48\nCONFIG_WIDTH=240\nCONFIG_HEIGHT=280\nCONFIG_OFFSETX=0\nCONFIG_OFFSETY=20\nCONFIG_MOSI_GPIO=11\nCONFIG_SCLK_GPIO=12\nCONFIG_CS_GPIO=10\nCONFIG_DC_GPIO=9\nCONFIG_RESET_GPIO=8\nCONFIG_BL_GPIO=7\n# CONFIG_INVERSION is not set\nCONFIG_SPI2_HOST=y\n# CONFIG_SPI3_HOST is not set\n# CONFIG_FRAME_BUFFER is not set\n# end of ST7789 Configuration\n\n#\n# Compiler options\n#\nCONFIG_COMPILER_OPTIMIZATION_DEFAULT=y\n# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set\n# CONFIG_COMPILER_OPTIMIZATION_PERF is not set\n# CONFIG_COMPILER_OPTIMIZATION_NONE is not set\nCONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y\n# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set\n# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set\nCONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y\nCONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2\n# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set\nCONFIG_COMPILER_HIDE_PATHS_MACROS=y\n# CONFIG_COMPILER_CXX_EXCEPTIONS is not set\n# CONFIG_COMPILER_CXX_RTTI is not set\nCONFIG_COMPILER_STACK_CHECK_MODE_NONE=y\n# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set\n# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set\n# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set\n# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set\n# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set\n# CONFIG_COMPILER_DUMP_RTL_FILES is not set\n# end of Compiler options\n\n#\n# Component config\n#\n\n#\n# Application Level Tracing\n#\n# CONFIG_APPTRACE_DEST_JTAG is not set\nCONFIG_APPTRACE_DEST_NONE=y\n# CONFIG_APPTRACE_DEST_UART1 is not set\n# CONFIG_APPTRACE_DEST_UART2 is not set\n# CONFIG_APPTRACE_DEST_USB_CDC is not set\nCONFIG_APPTRACE_DEST_UART_NONE=y\nCONFIG_APPTRACE_UART_TASK_PRIO=1\nCONFIG_APPTRACE_LOCK_ENABLE=y\n# end of Application Level Tracing\n\n#\n# Bluetooth\n#\n# CONFIG_BT_ENABLED is not set\n# end of Bluetooth\n\n#\n# Driver Configurations\n#\n\n#\n# Legacy ADC Configuration\n#\n# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set\n\n#\n# Legacy ADC Calibration Configuration\n#\n# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set\n# end of Legacy ADC Calibration Configuration\n# end of Legacy ADC Configuration\n\n#\n# SPI Configuration\n#\n# CONFIG_SPI_MASTER_IN_IRAM is not set\nCONFIG_SPI_MASTER_ISR_IN_IRAM=y\n# CONFIG_SPI_SLAVE_IN_IRAM is not set\nCONFIG_SPI_SLAVE_ISR_IN_IRAM=y\n# end of SPI Configuration\n\n#\n# TWAI Configuration\n#\n# CONFIG_TWAI_ISR_IN_IRAM is not set\nCONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y\n# end of TWAI Configuration\n\n#\n# Temperature sensor Configuration\n#\n# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set\n# end of Temperature sensor Configuration\n\n#\n# UART Configuration\n#\n# CONFIG_UART_ISR_IN_IRAM is not set\n# end of UART Configuration\n\n#\n# GPIO Configuration\n#\n# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set\n# end of GPIO Configuration\n\n#\n# Sigma Delta Modulator Configuration\n#\n# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_SDM_ENABLE_DEBUG_LOG is not set\n# end of Sigma Delta Modulator Configuration\n\n#\n# GPTimer Configuration\n#\nCONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y\n# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set\n# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set\n# end of GPTimer Configuration\n\n#\n# PCNT Configuration\n#\n# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_PCNT_ISR_IRAM_SAFE is not set\n# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set\n# end of PCNT Configuration\n\n#\n# RMT Configuration\n#\n# CONFIG_RMT_ISR_IRAM_SAFE is not set\n# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_RMT_ENABLE_DEBUG_LOG is not set\n# end of RMT Configuration\n\n#\n# MCPWM Configuration\n#\n# CONFIG_MCPWM_ISR_IRAM_SAFE is not set\n# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set\n# end of MCPWM Configuration\n\n#\n# I2S Configuration\n#\n# CONFIG_I2S_ISR_IRAM_SAFE is not set\n# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_I2S_ENABLE_DEBUG_LOG is not set\n# end of I2S Configuration\n\n#\n# USB Serial/JTAG Configuration\n#\n# end of USB Serial/JTAG Configuration\n# end of Driver Configurations\n\n#\n# eFuse Bit Manager\n#\n# CONFIG_EFUSE_CUSTOM_TABLE is not set\n# CONFIG_EFUSE_VIRTUAL is not set\nCONFIG_EFUSE_MAX_BLK_LEN=256\n# end of eFuse Bit Manager\n\n#\n# ESP-TLS\n#\nCONFIG_ESP_TLS_USING_MBEDTLS=y\nCONFIG_ESP_TLS_USE_DS_PERIPHERAL=y\n# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set\n# CONFIG_ESP_TLS_SERVER is not set\n# CONFIG_ESP_TLS_PSK_VERIFICATION is not set\n# CONFIG_ESP_TLS_INSECURE is not set\n# end of ESP-TLS\n\n#\n# ADC and ADC Calibration\n#\n# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set\n# CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 is not set\n# end of ADC and ADC Calibration\n\n#\n# Wireless Coexistence\n#\n# CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE is not set\n# end of Wireless Coexistence\n\n#\n# Common ESP-related\n#\nCONFIG_ESP_ERR_TO_NAME_LOOKUP=y\n# end of Common ESP-related\n\n#\n# Ethernet\n#\nCONFIG_ETH_ENABLED=y\nCONFIG_ETH_USE_SPI_ETHERNET=y\n# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set\n# CONFIG_ETH_SPI_ETHERNET_W5500 is not set\n# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set\n# CONFIG_ETH_USE_OPENETH is not set\n# CONFIG_ETH_TRANSMIT_MUTEX is not set\n# end of Ethernet\n\n#\n# Event Loop Library\n#\n# CONFIG_ESP_EVENT_LOOP_PROFILING is not set\nCONFIG_ESP_EVENT_POST_FROM_ISR=y\nCONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y\n# end of Event Loop Library\n\n#\n# GDB Stub\n#\n# end of GDB Stub\n\n#\n# ESP HTTP client\n#\nCONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y\n# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set\n# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set\n# end of ESP HTTP client\n\n#\n# HTTP Server\n#\nCONFIG_HTTPD_MAX_REQ_HDR_LEN=512\nCONFIG_HTTPD_MAX_URI_LEN=512\nCONFIG_HTTPD_ERR_RESP_NO_DELAY=y\nCONFIG_HTTPD_PURGE_BUF_LEN=32\n# CONFIG_HTTPD_LOG_PURGE_DATA is not set\n# CONFIG_HTTPD_WS_SUPPORT is not set\n# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set\n# end of HTTP Server\n\n#\n# ESP HTTPS OTA\n#\n# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set\n# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set\n# end of ESP HTTPS OTA\n\n#\n# ESP HTTPS server\n#\n# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set\n# end of ESP HTTPS server\n\n#\n# Hardware Settings\n#\n\n#\n# Chip revision\n#\nCONFIG_ESP32S3_REV_MIN_0=y\n# CONFIG_ESP32S3_REV_MIN_1 is not set\n# CONFIG_ESP32S3_REV_MIN_2 is not set\nCONFIG_ESP32S3_REV_MIN_FULL=0\nCONFIG_ESP_REV_MIN_FULL=0\n\n#\n# Maximum Supported ESP32-S3 Revision (Rev v0.99)\n#\nCONFIG_ESP32S3_REV_MAX_FULL=99\nCONFIG_ESP_REV_MAX_FULL=99\n# end of Chip revision\n\n#\n# MAC Config\n#\nCONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y\nCONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y\n# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set\nCONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y\nCONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4\n# end of MAC Config\n\n#\n# Sleep Config\n#\n# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set\nCONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y\nCONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU=y\nCONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y\nCONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y\nCONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000\nCONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y\n# end of Sleep Config\n\n#\n# RTC Clock Config\n#\nCONFIG_RTC_CLK_SRC_INT_RC=y\n# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set\n# CONFIG_RTC_CLK_SRC_EXT_OSC is not set\n# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set\nCONFIG_RTC_CLK_CAL_CYCLES=1024\n# end of RTC Clock Config\n\n#\n# Peripheral Control\n#\nCONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y\n# end of Peripheral Control\n\n#\n# GDMA Configuration\n#\n# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_GDMA_ISR_IRAM_SAFE is not set\n# end of GDMA Configuration\n\n#\n# Main XTAL Config\n#\nCONFIG_XTAL_FREQ_40=y\nCONFIG_XTAL_FREQ=40\n# end of Main XTAL Config\n# end of Hardware Settings\n\n#\n# LCD and Touch Panel\n#\n\n#\n# LCD Touch Drivers are maintained in the IDF Component Registry\n#\n\n#\n# LCD Peripheral Configuration\n#\nCONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32\n# CONFIG_LCD_ENABLE_DEBUG_LOG is not set\n# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set\n# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set\n# end of LCD Peripheral Configuration\n# end of LCD and Touch Panel\n\n#\n# ESP NETIF Adapter\n#\nCONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120\nCONFIG_ESP_NETIF_TCPIP_LWIP=y\n# CONFIG_ESP_NETIF_LOOPBACK is not set\nCONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y\n# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set\n# CONFIG_ESP_NETIF_L2_TAP is not set\n# CONFIG_ESP_NETIF_BRIDGE_EN is not set\n# end of ESP NETIF Adapter\n\n#\n# Partition API Configuration\n#\n# end of Partition API Configuration\n\n#\n# PHY\n#\nCONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y\n# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set\nCONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20\nCONFIG_ESP_PHY_MAX_TX_POWER=20\n# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set\nCONFIG_ESP_PHY_ENABLE_USB=y\n# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set\nCONFIG_ESP_PHY_RF_CAL_PARTIAL=y\n# CONFIG_ESP_PHY_RF_CAL_NONE is not set\n# CONFIG_ESP_PHY_RF_CAL_FULL is not set\nCONFIG_ESP_PHY_CALIBRATION_MODE=0\n# end of PHY\n\n#\n# Power Management\n#\n# CONFIG_PM_ENABLE is not set\nCONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y\nCONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP=y\n# end of Power Management\n\n#\n# ESP PSRAM\n#\n# CONFIG_SPIRAM is not set\n# end of ESP PSRAM\n\n#\n# ESP Ringbuf\n#\n# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set\n# end of ESP Ringbuf\n\n#\n# ESP System Settings\n#\n# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set\n# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 is not set\nCONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y\nCONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=240\n\n#\n# Cache config\n#\nCONFIG_ESP32S3_INSTRUCTION_CACHE_16KB=y\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE=0x4000\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS=y\nCONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS=8\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B=y\nCONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE=32\n# CONFIG_ESP32S3_DATA_CACHE_16KB is not set\nCONFIG_ESP32S3_DATA_CACHE_32KB=y\n# CONFIG_ESP32S3_DATA_CACHE_64KB is not set\nCONFIG_ESP32S3_DATA_CACHE_SIZE=0x8000\n# CONFIG_ESP32S3_DATA_CACHE_4WAYS is not set\nCONFIG_ESP32S3_DATA_CACHE_8WAYS=y\nCONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS=8\n# CONFIG_ESP32S3_DATA_CACHE_LINE_16B is not set\nCONFIG_ESP32S3_DATA_CACHE_LINE_32B=y\n# CONFIG_ESP32S3_DATA_CACHE_LINE_64B is not set\nCONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=32\n# end of Cache config\n\n#\n# Memory\n#\n# CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM is not set\n# CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE is not set\n# end of Memory\n\n#\n# Trace memory\n#\n# CONFIG_ESP32S3_TRAX is not set\nCONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM=0x0\n# end of Trace memory\n\n# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set\nCONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y\n# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set\n# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set\n# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set\nCONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0\nCONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y\nCONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y\n\n#\n# Memory protection\n#\nCONFIG_ESP_SYSTEM_MEMPROT_FEATURE=y\nCONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK=y\n# end of Memory protection\n\nCONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32\nCONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304\nCONFIG_ESP_MAIN_TASK_STACK_SIZE=3584\nCONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y\n# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set\n# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set\nCONFIG_ESP_MAIN_TASK_AFFINITY=0x0\nCONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048\nCONFIG_ESP_CONSOLE_UART_DEFAULT=y\n# CONFIG_ESP_CONSOLE_USB_CDC is not set\n# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set\n# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set\n# CONFIG_ESP_CONSOLE_NONE is not set\n# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set\nCONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y\nCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y\nCONFIG_ESP_CONSOLE_UART=y\nCONFIG_ESP_CONSOLE_MULTIPLE_UART=y\nCONFIG_ESP_CONSOLE_UART_NUM=0\nCONFIG_ESP_CONSOLE_UART_BAUDRATE=115200\nCONFIG_ESP_INT_WDT=y\nCONFIG_ESP_INT_WDT_TIMEOUT_MS=300\nCONFIG_ESP_INT_WDT_CHECK_CPU1=y\n# CONFIG_ESP_TASK_WDT_EN is not set\n# CONFIG_ESP_PANIC_HANDLER_IRAM is not set\n# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set\nCONFIG_ESP_DEBUG_OCDAWARE=y\nCONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y\n\n#\n# Brownout Detector\n#\nCONFIG_ESP_BROWNOUT_DET=y\nCONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set\nCONFIG_ESP_BROWNOUT_DET_LVL=7\n# end of Brownout Detector\n\nCONFIG_ESP_SYSTEM_BROWNOUT_INTR=y\n# end of ESP System Settings\n\n#\n# IPC (Inter-Processor Call)\n#\nCONFIG_ESP_IPC_TASK_STACK_SIZE=1280\nCONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y\nCONFIG_ESP_IPC_ISR_ENABLE=y\n# end of IPC (Inter-Processor Call)\n\n#\n# High resolution timer (esp_timer)\n#\n# CONFIG_ESP_TIMER_PROFILING is not set\nCONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y\nCONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y\nCONFIG_ESP_TIMER_TASK_STACK_SIZE=3584\nCONFIG_ESP_TIMER_INTERRUPT_LEVEL=1\n# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set\nCONFIG_ESP_TIMER_TASK_AFFINITY=0x0\nCONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y\nCONFIG_ESP_TIMER_ISR_AFFINITY=0x1\nCONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y\n# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set\nCONFIG_ESP_TIMER_IMPL_SYSTIMER=y\n# end of High resolution timer (esp_timer)\n\n#\n# Wi-Fi\n#\nCONFIG_ESP_WIFI_ENABLED=y\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10\nCONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32\n# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set\nCONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y\nCONFIG_ESP_WIFI_TX_BUFFER_TYPE=1\nCONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32\nCONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y\n# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set\nCONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0\nCONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5\n# CONFIG_ESP_WIFI_CSI_ENABLED is not set\nCONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y\nCONFIG_ESP_WIFI_TX_BA_WIN=6\nCONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP_WIFI_RX_BA_WIN=6\nCONFIG_ESP_WIFI_NVS_ENABLED=y\nCONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y\n# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set\nCONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752\nCONFIG_ESP_WIFI_MGMT_SBUF_NUM=32\nCONFIG_ESP_WIFI_IRAM_OPT=y\n# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set\nCONFIG_ESP_WIFI_RX_IRAM_OPT=y\nCONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y\nCONFIG_ESP_WIFI_ENABLE_SAE_PK=y\nCONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y\nCONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y\n# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set\n# CONFIG_ESP_WIFI_FTM_ENABLE is not set\nCONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y\n# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set\n# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set\nCONFIG_ESP_WIFI_SOFTAP_SUPPORT=y\n# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set\nCONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7\nCONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y\nCONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y\n# CONFIG_ESP_WIFI_WAPI_PSK is not set\n# CONFIG_ESP_WIFI_SUITE_B_192 is not set\n# CONFIG_ESP_WIFI_11KV_SUPPORT is not set\n# CONFIG_ESP_WIFI_MBO_SUPPORT is not set\n# CONFIG_ESP_WIFI_DPP_SUPPORT is not set\n# CONFIG_ESP_WIFI_11R_SUPPORT is not set\n# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set\n\n#\n# WPS Configuration Options\n#\n# CONFIG_ESP_WIFI_WPS_STRICT is not set\n# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set\n# end of WPS Configuration Options\n\n# CONFIG_ESP_WIFI_DEBUG_PRINT is not set\n# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set\nCONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y\n# end of Wi-Fi\n\n#\n# Core dump\n#\n# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set\n# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set\nCONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y\n# end of Core dump\n\n#\n# FAT Filesystem support\n#\nCONFIG_FATFS_VOLUME_COUNT=2\nCONFIG_FATFS_LFN_NONE=y\n# CONFIG_FATFS_LFN_HEAP is not set\n# CONFIG_FATFS_LFN_STACK is not set\n# CONFIG_FATFS_SECTOR_512 is not set\nCONFIG_FATFS_SECTOR_4096=y\n# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set\nCONFIG_FATFS_CODEPAGE_437=y\n# CONFIG_FATFS_CODEPAGE_720 is not set\n# CONFIG_FATFS_CODEPAGE_737 is not set\n# CONFIG_FATFS_CODEPAGE_771 is not set\n# CONFIG_FATFS_CODEPAGE_775 is not set\n# CONFIG_FATFS_CODEPAGE_850 is not set\n# CONFIG_FATFS_CODEPAGE_852 is not set\n# CONFIG_FATFS_CODEPAGE_855 is not set\n# CONFIG_FATFS_CODEPAGE_857 is not set\n# CONFIG_FATFS_CODEPAGE_860 is not set\n# CONFIG_FATFS_CODEPAGE_861 is not set\n# CONFIG_FATFS_CODEPAGE_862 is not set\n# CONFIG_FATFS_CODEPAGE_863 is not set\n# CONFIG_FATFS_CODEPAGE_864 is not set\n# CONFIG_FATFS_CODEPAGE_865 is not set\n# CONFIG_FATFS_CODEPAGE_866 is not set\n# CONFIG_FATFS_CODEPAGE_869 is not set\n# CONFIG_FATFS_CODEPAGE_932 is not set\n# CONFIG_FATFS_CODEPAGE_936 is not set\n# CONFIG_FATFS_CODEPAGE_949 is not set\n# CONFIG_FATFS_CODEPAGE_950 is not set\nCONFIG_FATFS_CODEPAGE=437\nCONFIG_FATFS_FS_LOCK=0\nCONFIG_FATFS_TIMEOUT_MS=10000\nCONFIG_FATFS_PER_FILE_CACHE=y\n# CONFIG_FATFS_USE_FASTSEEK is not set\nCONFIG_FATFS_VFS_FSTAT_BLKSIZE=0\n# end of FAT Filesystem support\n\n#\n# FreeRTOS\n#\n\n#\n# Kernel\n#\n# CONFIG_FREERTOS_SMP is not set\n# CONFIG_FREERTOS_UNICORE is not set\nCONFIG_FREERTOS_HZ=100\n# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set\n# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set\nCONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y\nCONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1\nCONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536\n# CONFIG_FREERTOS_USE_IDLE_HOOK is not set\n# CONFIG_FREERTOS_USE_TICK_HOOK is not set\nCONFIG_FREERTOS_MAX_TASK_NAME_LEN=16\n# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set\nCONFIG_FREERTOS_TIMER_TASK_PRIORITY=1\nCONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=4096\nCONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10\nCONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0\nCONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1\n# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set\n# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set\n# end of Kernel\n\n#\n# Port\n#\nCONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y\n# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set\nCONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y\n# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set\nCONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y\nCONFIG_FREERTOS_ISR_STACKSIZE=1536\nCONFIG_FREERTOS_INTERRUPT_BACKTRACE=y\nCONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y\nCONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y\n# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set\nCONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y\n# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set\n# CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH is not set\n# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set\nCONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y\n# end of Port\n\nCONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF\nCONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y\nCONFIG_FREERTOS_DEBUG_OCDAWARE=y\n# end of FreeRTOS\n\n#\n# Hardware Abstraction Layer (HAL) and Low Level (LL)\n#\nCONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y\n# CONFIG_HAL_ASSERTION_DISABLE is not set\n# CONFIG_HAL_ASSERTION_SILENT is not set\n# CONFIG_HAL_ASSERTION_ENABLE is not set\nCONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2\nCONFIG_HAL_WDT_USE_ROM_IMPL=y\nCONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=y\nCONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=y\n# end of Hardware Abstraction Layer (HAL) and Low Level (LL)\n\n#\n# Heap memory debugging\n#\nCONFIG_HEAP_POISONING_DISABLED=y\n# CONFIG_HEAP_POISONING_LIGHT is not set\n# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set\nCONFIG_HEAP_TRACING_OFF=y\n# CONFIG_HEAP_TRACING_STANDALONE is not set\n# CONFIG_HEAP_TRACING_TOHOST is not set\n# CONFIG_HEAP_USE_HOOKS is not set\n# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set\n# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set\n# end of Heap memory debugging\n\nCONFIG_IEEE802154_CCA_THRESHOLD=-60\nCONFIG_IEEE802154_PENDING_TABLE_SIZE=20\n\n#\n# Log output\n#\n# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set\n# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set\n# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set\nCONFIG_LOG_DEFAULT_LEVEL_INFO=y\n# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set\n# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set\nCONFIG_LOG_DEFAULT_LEVEL=3\nCONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y\n# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set\n# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set\nCONFIG_LOG_MAXIMUM_LEVEL=3\nCONFIG_LOG_COLORS=y\nCONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y\n# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set\n# end of Log output\n\n#\n# LWIP\n#\nCONFIG_LWIP_LOCAL_HOSTNAME=\"espressif\"\n# CONFIG_LWIP_NETIF_API is not set\nCONFIG_LWIP_TCPIP_TASK_PRIO=18\n# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set\n# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set\nCONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y\n# CONFIG_LWIP_L2_TO_L3_COPY is not set\n# CONFIG_LWIP_IRAM_OPTIMIZATION is not set\n# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set\nCONFIG_LWIP_TIMERS_ONDEMAND=y\nCONFIG_LWIP_ND6=y\nCONFIG_LWIP_MAX_SOCKETS=10\n# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set\n# CONFIG_LWIP_SO_LINGER is not set\nCONFIG_LWIP_SO_REUSE=y\nCONFIG_LWIP_SO_REUSE_RXTOALL=y\n# CONFIG_LWIP_SO_RCVBUF is not set\n# CONFIG_LWIP_NETBUF_RECVINFO is not set\nCONFIG_LWIP_IP4_FRAG=y\nCONFIG_LWIP_IP6_FRAG=y\n# CONFIG_LWIP_IP4_REASSEMBLY is not set\n# CONFIG_LWIP_IP6_REASSEMBLY is not set\nCONFIG_LWIP_IP_REASS_MAX_PBUFS=10\n# CONFIG_LWIP_IP_FORWARD is not set\n# CONFIG_LWIP_STATS is not set\nCONFIG_LWIP_ESP_GRATUITOUS_ARP=y\nCONFIG_LWIP_GARP_TMR_INTERVAL=60\nCONFIG_LWIP_ESP_MLDV6_REPORT=y\nCONFIG_LWIP_MLDV6_TMR_INTERVAL=40\nCONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32\nCONFIG_LWIP_DHCP_DOES_ARP_CHECK=y\n# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set\nCONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y\n# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set\nCONFIG_LWIP_DHCP_OPTIONS_LEN=68\nCONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0\nCONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1\n\n#\n# DHCP server\n#\nCONFIG_LWIP_DHCPS=y\nCONFIG_LWIP_DHCPS_LEASE_UNIT=60\nCONFIG_LWIP_DHCPS_MAX_STATION_NUM=8\n# end of DHCP server\n\n# CONFIG_LWIP_AUTOIP is not set\nCONFIG_LWIP_IPV4=y\nCONFIG_LWIP_IPV6=y\n# CONFIG_LWIP_IPV6_AUTOCONFIG is not set\nCONFIG_LWIP_IPV6_NUM_ADDRESSES=3\n# CONFIG_LWIP_IPV6_FORWARD is not set\n# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set\nCONFIG_LWIP_NETIF_LOOPBACK=y\nCONFIG_LWIP_LOOPBACK_MAX_PBUFS=8\n\n#\n# TCP\n#\nCONFIG_LWIP_MAX_ACTIVE_TCP=16\nCONFIG_LWIP_MAX_LISTENING_TCP=16\nCONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y\nCONFIG_LWIP_TCP_MAXRTX=12\nCONFIG_LWIP_TCP_SYNMAXRTX=12\nCONFIG_LWIP_TCP_MSS=1440\nCONFIG_LWIP_TCP_TMR_INTERVAL=250\nCONFIG_LWIP_TCP_MSL=60000\nCONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000\nCONFIG_LWIP_TCP_SND_BUF_DEFAULT=5744\nCONFIG_LWIP_TCP_WND_DEFAULT=5744\nCONFIG_LWIP_TCP_RECVMBOX_SIZE=6\nCONFIG_LWIP_TCP_QUEUE_OOSEQ=y\n# CONFIG_LWIP_TCP_SACK_OUT is not set\nCONFIG_LWIP_TCP_OVERSIZE_MSS=y\n# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set\n# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set\nCONFIG_LWIP_TCP_RTO_TIME=1500\n# end of TCP\n\n#\n# UDP\n#\nCONFIG_LWIP_MAX_UDP_PCBS=16\nCONFIG_LWIP_UDP_RECVMBOX_SIZE=6\n# end of UDP\n\n#\n# Checksums\n#\n# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set\n# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set\nCONFIG_LWIP_CHECKSUM_CHECK_ICMP=y\n# end of Checksums\n\nCONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072\nCONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y\n# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set\n# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set\nCONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF\n# CONFIG_LWIP_PPP_SUPPORT is not set\nCONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3\nCONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5\n# CONFIG_LWIP_SLIP_SUPPORT is not set\n\n#\n# ICMP\n#\nCONFIG_LWIP_ICMP=y\n# CONFIG_LWIP_MULTICAST_PING is not set\n# CONFIG_LWIP_BROADCAST_PING is not set\n# end of ICMP\n\n#\n# LWIP RAW API\n#\nCONFIG_LWIP_MAX_RAW_PCBS=16\n# end of LWIP RAW API\n\n#\n# SNTP\n#\nCONFIG_LWIP_SNTP_MAX_SERVERS=1\n# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set\nCONFIG_LWIP_SNTP_UPDATE_DELAY=3600000\n# end of SNTP\n\nCONFIG_LWIP_BRIDGEIF_MAX_PORTS=7\nCONFIG_LWIP_ESP_LWIP_ASSERT=y\n\n#\n# Hooks\n#\n# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set\nCONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y\n# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y\n# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set\nCONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y\n# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set\n# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y\n# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set\nCONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y\n# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set\n# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_INPUT_NONE=y\n# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set\n# end of Hooks\n\n# CONFIG_LWIP_DEBUG is not set\n# end of LWIP\n\n#\n# mbedTLS\n#\nCONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y\n# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set\n# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set\nCONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y\nCONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384\nCONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096\n# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set\n# CONFIG_MBEDTLS_DEBUG is not set\n\n#\n# mbedTLS v3.x related\n#\n# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set\n# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set\n# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set\n# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set\nCONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y\nCONFIG_MBEDTLS_PKCS7_C=y\n# end of mbedTLS v3.x related\n\n#\n# Certificate Bundle\n#\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y\n# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set\n# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set\n# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200\n# end of Certificate Bundle\n\n# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set\nCONFIG_MBEDTLS_CMAC_C=y\nCONFIG_MBEDTLS_HARDWARE_AES=y\nCONFIG_MBEDTLS_AES_USE_INTERRUPT=y\nCONFIG_MBEDTLS_HARDWARE_MPI=y\nCONFIG_MBEDTLS_MPI_USE_INTERRUPT=y\nCONFIG_MBEDTLS_HARDWARE_SHA=y\nCONFIG_MBEDTLS_ROM_MD5=y\n# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set\n# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set\nCONFIG_MBEDTLS_HAVE_TIME=y\n# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set\n# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set\nCONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y\nCONFIG_MBEDTLS_SHA512_C=y\nCONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y\n# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set\n# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set\n# CONFIG_MBEDTLS_TLS_DISABLED is not set\nCONFIG_MBEDTLS_TLS_SERVER=y\nCONFIG_MBEDTLS_TLS_CLIENT=y\nCONFIG_MBEDTLS_TLS_ENABLED=y\n\n#\n# TLS Key Exchange Methods\n#\n# CONFIG_MBEDTLS_PSK_MODES is not set\nCONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y\n# end of TLS Key Exchange Methods\n\nCONFIG_MBEDTLS_SSL_RENEGOTIATION=y\nCONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y\n# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set\n# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set\nCONFIG_MBEDTLS_SSL_ALPN=y\nCONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y\nCONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y\n\n#\n# Symmetric Ciphers\n#\nCONFIG_MBEDTLS_AES_C=y\n# CONFIG_MBEDTLS_CAMELLIA_C is not set\n# CONFIG_MBEDTLS_DES_C is not set\n# CONFIG_MBEDTLS_BLOWFISH_C is not set\n# CONFIG_MBEDTLS_XTEA_C is not set\nCONFIG_MBEDTLS_CCM_C=y\nCONFIG_MBEDTLS_GCM_C=y\n# CONFIG_MBEDTLS_NIST_KW_C is not set\n# end of Symmetric Ciphers\n\n# CONFIG_MBEDTLS_RIPEMD160_C is not set\n\n#\n# Certificates\n#\nCONFIG_MBEDTLS_PEM_PARSE_C=y\nCONFIG_MBEDTLS_PEM_WRITE_C=y\nCONFIG_MBEDTLS_X509_CRL_PARSE_C=y\nCONFIG_MBEDTLS_X509_CSR_PARSE_C=y\n# end of Certificates\n\nCONFIG_MBEDTLS_ECP_C=y\n# CONFIG_MBEDTLS_DHM_C is not set\nCONFIG_MBEDTLS_ECDH_C=y\nCONFIG_MBEDTLS_ECDSA_C=y\n# CONFIG_MBEDTLS_ECJPAKE_C is not set\nCONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y\nCONFIG_MBEDTLS_ECP_NIST_OPTIM=y\nCONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM=y\n# CONFIG_MBEDTLS_POLY1305_C is not set\n# CONFIG_MBEDTLS_CHACHA20_C is not set\n# CONFIG_MBEDTLS_HKDF_C is not set\n# CONFIG_MBEDTLS_THREADING_C is not set\n# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set\n# end of mbedTLS\n\n#\n# ESP-MQTT Configurations\n#\nCONFIG_MQTT_PROTOCOL_311=y\n# CONFIG_MQTT_PROTOCOL_5 is not set\nCONFIG_MQTT_TRANSPORT_SSL=y\nCONFIG_MQTT_TRANSPORT_WEBSOCKET=y\nCONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y\n# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set\n# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set\n# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set\n# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set\n# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set\n# CONFIG_MQTT_CUSTOM_OUTBOX is not set\n# end of ESP-MQTT Configurations\n\n#\n# Newlib\n#\nCONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y\n# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set\n# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set\n# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set\n# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set\nCONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y\n# CONFIG_NEWLIB_NANO_FORMAT is not set\nCONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set\n# end of Newlib\n\n#\n# NVS\n#\n# CONFIG_NVS_ASSERT_ERROR_CHECK is not set\n# end of NVS\n\n#\n# OpenThread\n#\n# CONFIG_OPENTHREAD_ENABLED is not set\n\n#\n# Thread Operational Dataset\n#\nCONFIG_OPENTHREAD_NETWORK_NAME=\"OpenThread-ESP\"\nCONFIG_OPENTHREAD_MESH_LOCAL_PREFIX=\"fd00:db8:a0:0::/64\"\nCONFIG_OPENTHREAD_NETWORK_CHANNEL=15\nCONFIG_OPENTHREAD_NETWORK_PANID=0x1234\nCONFIG_OPENTHREAD_NETWORK_EXTPANID=\"dead00beef00cafe\"\nCONFIG_OPENTHREAD_NETWORK_MASTERKEY=\"00112233445566778899aabbccddeeff\"\nCONFIG_OPENTHREAD_NETWORK_PSKC=\"104810e2315100afd6bc9215a6bfac53\"\n# end of Thread Operational Dataset\n\nCONFIG_OPENTHREAD_XTAL_ACCURACY=130\n# end of OpenThread\n\n#\n# Protocomm\n#\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y\n# end of Protocomm\n\n#\n# PThreads\n#\nCONFIG_PTHREAD_TASK_PRIO_DEFAULT=5\nCONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072\nCONFIG_PTHREAD_STACK_MIN=768\nCONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y\n# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set\n# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set\nCONFIG_PTHREAD_TASK_CORE_DEFAULT=-1\nCONFIG_PTHREAD_TASK_NAME_DEFAULT=\"pthread\"\n# end of PThreads\n\n#\n# MMU Config\n#\nCONFIG_MMU_PAGE_SIZE_64KB=y\nCONFIG_MMU_PAGE_MODE=\"64KB\"\nCONFIG_MMU_PAGE_SIZE=0x10000\n# end of MMU Config\n\n#\n# SPI Flash driver\n#\n# CONFIG_SPI_FLASH_VERIFY_WRITE is not set\n# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set\nCONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y\n# CONFIG_SPI_FLASH_ROM_IMPL is not set\nCONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y\n# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set\n# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set\n# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set\nCONFIG_SPI_FLASH_YIELD_DURING_ERASE=y\nCONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20\nCONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1\nCONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192\n# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set\n# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set\n# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set\n\n#\n# SPI Flash behavior when brownout\n#\nCONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y\nCONFIG_SPI_FLASH_BROWNOUT_RESET=y\n# end of SPI Flash behavior when brownout\n\n#\n# Auto-detect flash chips\n#\nCONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED=y\nCONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_TH_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP=y\n# end of Auto-detect flash chips\n\nCONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y\n# end of SPI Flash driver\n\n#\n# SPIFFS Configuration\n#\nCONFIG_SPIFFS_MAX_PARTITIONS=3\n\n#\n# SPIFFS Cache Configuration\n#\nCONFIG_SPIFFS_CACHE=y\nCONFIG_SPIFFS_CACHE_WR=y\n# CONFIG_SPIFFS_CACHE_STATS is not set\n# end of SPIFFS Cache Configuration\n\nCONFIG_SPIFFS_PAGE_CHECK=y\nCONFIG_SPIFFS_GC_MAX_RUNS=10\n# CONFIG_SPIFFS_GC_STATS is not set\nCONFIG_SPIFFS_PAGE_SIZE=256\nCONFIG_SPIFFS_OBJ_NAME_LEN=32\n# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set\nCONFIG_SPIFFS_USE_MAGIC=y\nCONFIG_SPIFFS_USE_MAGIC_LENGTH=y\nCONFIG_SPIFFS_META_LENGTH=4\nCONFIG_SPIFFS_USE_MTIME=y\n\n#\n# Debug Configuration\n#\n# CONFIG_SPIFFS_DBG is not set\n# CONFIG_SPIFFS_API_DBG is not set\n# CONFIG_SPIFFS_GC_DBG is not set\n# CONFIG_SPIFFS_CACHE_DBG is not set\n# CONFIG_SPIFFS_CHECK_DBG is not set\n# CONFIG_SPIFFS_TEST_VISUALISATION is not set\n# end of Debug Configuration\n# end of SPIFFS Configuration\n\n#\n# TCP Transport\n#\n\n#\n# Websocket\n#\nCONFIG_WS_TRANSPORT=y\nCONFIG_WS_BUFFER_SIZE=1024\n# CONFIG_WS_DYNAMIC_BUFFER is not set\n# end of Websocket\n# end of TCP Transport\n\n#\n# Ultra Low Power (ULP) Co-processor\n#\n# CONFIG_ULP_COPROC_ENABLED is not set\n# end of Ultra Low Power (ULP) Co-processor\n\n#\n# Unity unit testing library\n#\nCONFIG_UNITY_ENABLE_FLOAT=y\nCONFIG_UNITY_ENABLE_DOUBLE=y\n# CONFIG_UNITY_ENABLE_64BIT is not set\n# CONFIG_UNITY_ENABLE_COLOR is not set\nCONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y\n# CONFIG_UNITY_ENABLE_FIXTURE is not set\n# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set\n# end of Unity unit testing library\n\n#\n# USB-OTG\n#\nCONFIG_USB_OTG_SUPPORTED=y\nCONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE=256\nCONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED=y\n# CONFIG_USB_HOST_HW_BUFFER_BIAS_IN is not set\n# CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT is not set\n\n#\n# Root Hub configuration\n#\nCONFIG_USB_HOST_DEBOUNCE_DELAY_MS=250\nCONFIG_USB_HOST_RESET_HOLD_MS=30\nCONFIG_USB_HOST_RESET_RECOVERY_MS=30\nCONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10\n# end of Root Hub configuration\n# end of USB-OTG\n\n#\n# Virtual file system\n#\nCONFIG_VFS_SUPPORT_IO=y\nCONFIG_VFS_SUPPORT_DIR=y\nCONFIG_VFS_SUPPORT_SELECT=y\nCONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y\nCONFIG_VFS_SUPPORT_TERMIOS=y\nCONFIG_VFS_MAX_COUNT=8\n\n#\n# Host File System I/O (Semihosting)\n#\nCONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1\n# end of Host File System I/O (Semihosting)\n# end of Virtual file system\n\n#\n# Wear Levelling\n#\n# CONFIG_WL_SECTOR_SIZE_512 is not set\nCONFIG_WL_SECTOR_SIZE_4096=y\nCONFIG_WL_SECTOR_SIZE=4096\n# end of Wear Levelling\n\n#\n# Wi-Fi Provisioning Manager\n#\nCONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16\nCONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30\n# CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION is not set\nCONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y\n# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set\n# end of Wi-Fi Provisioning Manager\n# end of Component config\n\n# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set\n\n# Deprecated options for backward compatibility\n# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set\n# CONFIG_NO_BLOBS is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set\nCONFIG_LOG_BOOTLOADER_LEVEL_INFO=y\n# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set\nCONFIG_LOG_BOOTLOADER_LEVEL=3\n# CONFIG_APP_ROLLBACK_ENABLE is not set\n# CONFIG_FLASH_ENCRYPTION_ENABLED is not set\n# CONFIG_FLASHMODE_QIO is not set\n# CONFIG_FLASHMODE_QOUT is not set\nCONFIG_FLASHMODE_DIO=y\n# CONFIG_FLASHMODE_DOUT is not set\nCONFIG_MONITOR_BAUD=115200\nCONFIG_OPTIMIZATION_LEVEL_DEBUG=y\nCONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y\n# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set\n# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set\nCONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y\n# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set\n# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set\nCONFIG_OPTIMIZATION_ASSERTION_LEVEL=2\n# CONFIG_CXX_EXCEPTIONS is not set\nCONFIG_STACK_CHECK_NONE=y\n# CONFIG_STACK_CHECK_NORM is not set\n# CONFIG_STACK_CHECK_STRONG is not set\n# CONFIG_STACK_CHECK_ALL is not set\n# CONFIG_WARN_WRITE_STRINGS is not set\n# CONFIG_ESP32_APPTRACE_DEST_TRAX is not set\nCONFIG_ESP32_APPTRACE_DEST_NONE=y\nCONFIG_ESP32_APPTRACE_LOCK_ENABLE=y\n# CONFIG_MCPWM_ISR_IN_IRAM is not set\n# CONFIG_EXTERNAL_COEX_ENABLE is not set\n# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set\n# CONFIG_EVENT_LOOP_PROFILING is not set\nCONFIG_POST_EVENTS_FROM_ISR=y\nCONFIG_POST_EVENTS_FROM_IRAM_ISR=y\n# CONFIG_OTA_ALLOW_HTTP is not set\n# CONFIG_ESP_SYSTEM_PD_FLASH is not set\nCONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY=2000\nCONFIG_ESP32S3_RTC_CLK_SRC_INT_RC=y\n# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS is not set\n# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC is not set\n# CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 is not set\nCONFIG_ESP32S3_RTC_CLK_CAL_CYCLES=1024\nCONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y\n# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set\nCONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20\nCONFIG_ESP32_PHY_MAX_TX_POWER=20\n# CONFIG_REDUCE_PHY_TX_POWER is not set\n# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set\nCONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU=y\n# CONFIG_ESP32S3_SPIRAM_SUPPORT is not set\n# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 is not set\n# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 is not set\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_240=y\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=240\nCONFIG_SYSTEM_EVENT_QUEUE_SIZE=32\nCONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304\nCONFIG_MAIN_TASK_STACK_SIZE=3584\nCONFIG_CONSOLE_UART_DEFAULT=y\n# CONFIG_CONSOLE_UART_CUSTOM is not set\n# CONFIG_CONSOLE_UART_NONE is not set\n# CONFIG_ESP_CONSOLE_UART_NONE is not set\nCONFIG_CONSOLE_UART=y\nCONFIG_CONSOLE_UART_NUM=0\nCONFIG_CONSOLE_UART_BAUDRATE=115200\nCONFIG_INT_WDT=y\nCONFIG_INT_WDT_TIMEOUT_MS=300\nCONFIG_INT_WDT_CHECK_CPU1=y\n# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set\nCONFIG_ESP32S3_DEBUG_OCDAWARE=y\nCONFIG_BROWNOUT_DET=y\nCONFIG_ESP32S3_BROWNOUT_DET=y\nCONFIG_ESP32S3_BROWNOUT_DET=y\nCONFIG_BROWNOUT_DET_LVL_SEL_7=y\nCONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7=y\n# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 is not set\nCONFIG_BROWNOUT_DET_LVL=7\nCONFIG_ESP32S3_BROWNOUT_DET_LVL=7\nCONFIG_IPC_TASK_STACK_SIZE=1280\nCONFIG_TIMER_TASK_STACK_SIZE=3584\nCONFIG_ESP32_WIFI_ENABLED=y\nCONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10\nCONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32\n# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set\nCONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y\nCONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1\nCONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32\n# CONFIG_ESP32_WIFI_CSI_ENABLED is not set\nCONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y\nCONFIG_ESP32_WIFI_TX_BA_WIN=6\nCONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP32_WIFI_RX_BA_WIN=6\nCONFIG_ESP32_WIFI_RX_BA_WIN=6\nCONFIG_ESP32_WIFI_NVS_ENABLED=y\nCONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y\n# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set\nCONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752\nCONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32\nCONFIG_ESP32_WIFI_IRAM_OPT=y\nCONFIG_ESP32_WIFI_RX_IRAM_OPT=y\nCONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y\nCONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y\nCONFIG_WPA_MBEDTLS_CRYPTO=y\nCONFIG_WPA_MBEDTLS_TLS_CLIENT=y\n# CONFIG_WPA_WAPI_PSK is not set\n# CONFIG_WPA_SUITE_B_192 is not set\n# CONFIG_WPA_11KV_SUPPORT is not set\n# CONFIG_WPA_MBO_SUPPORT is not set\n# CONFIG_WPA_DPP_SUPPORT is not set\n# CONFIG_WPA_11R_SUPPORT is not set\n# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set\n# CONFIG_WPA_WPS_STRICT is not set\n# CONFIG_WPA_DEBUG_PRINT is not set\n# CONFIG_WPA_TESTING_OPTIONS is not set\n# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set\n# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set\nCONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y\nCONFIG_TIMER_TASK_PRIORITY=1\nCONFIG_TIMER_TASK_STACK_DEPTH=4096\nCONFIG_TIMER_QUEUE_LENGTH=10\n# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set\n# CONFIG_HAL_ASSERTION_SILIENT is not set\n# CONFIG_L2_TO_L3_COPY is not set\nCONFIG_ESP_GRATUITOUS_ARP=y\nCONFIG_GARP_TMR_INTERVAL=60\nCONFIG_TCPIP_RECVMBOX_SIZE=32\nCONFIG_TCP_MAXRTX=12\nCONFIG_TCP_SYNMAXRTX=12\nCONFIG_TCP_MSS=1440\nCONFIG_TCP_MSL=60000\nCONFIG_TCP_SND_BUF_DEFAULT=5744\nCONFIG_TCP_WND_DEFAULT=5744\nCONFIG_TCP_RECVMBOX_SIZE=6\nCONFIG_TCP_QUEUE_OOSEQ=y\nCONFIG_TCP_OVERSIZE_MSS=y\n# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set\n# CONFIG_TCP_OVERSIZE_DISABLE is not set\nCONFIG_UDP_RECVMBOX_SIZE=6\nCONFIG_TCPIP_TASK_STACK_SIZE=3072\nCONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y\n# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set\n# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set\nCONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF\n# CONFIG_PPP_SUPPORT is not set\nCONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y\nCONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE is not set\nCONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5\nCONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072\nCONFIG_ESP32_PTHREAD_STACK_MIN=768\nCONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y\n# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set\n# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set\nCONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1\nCONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT=\"pthread\"\nCONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y\n# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set\n# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set\nCONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y\nCONFIG_SUPPORT_TERMIOS=y\nCONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1\n# End of deprecated options\n"
  },
  {
    "path": "Code/sdkconfig.defaults",
    "content": "#\n# Partition Table\n#\nCONFIG_PARTITION_TABLE_CUSTOM=y\nCONFIG_PARTITION_TABLE_CUSTOM_FILENAME=\"partitions.csv\"\nCONFIG_PARTITION_TABLE_FILENAME=\"partitions.csv\"\n\n#\n# Disable Task Watchdog Timer\n#\nCONFIG_ESP_TASK_WDT_EN=n\n\n#\n# ESP32-specific\n#\nCONFIG_ESP32_DEFAULT_CPU_FREQ_240=y\nCONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=240\n\n#\n# ESP32S2-specific\n#\nCONFIG_ESP32S2_DEFAULT_CPU_FREQ_240=y\nCONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ=240\n\n#\n# ESP32S3-specific\n#\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_240=y\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=240\n"
  },
  {
    "path": "Code/sdkconfig.old",
    "content": "#\n# Automatically generated file. DO NOT EDIT.\n# Espressif IoT Development Framework (ESP-IDF) 5.1.2 Project Configuration\n#\nCONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000\nCONFIG_SOC_MPU_REGIONS_MAX_NUM=8\nCONFIG_SOC_ADC_SUPPORTED=y\nCONFIG_SOC_UART_SUPPORTED=y\nCONFIG_SOC_PCNT_SUPPORTED=y\nCONFIG_SOC_WIFI_SUPPORTED=y\nCONFIG_SOC_TWAI_SUPPORTED=y\nCONFIG_SOC_GDMA_SUPPORTED=y\nCONFIG_SOC_GPTIMER_SUPPORTED=y\nCONFIG_SOC_LCDCAM_SUPPORTED=y\nCONFIG_SOC_MCPWM_SUPPORTED=y\nCONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y\nCONFIG_SOC_CACHE_SUPPORT_WRAP=y\nCONFIG_SOC_ULP_SUPPORTED=y\nCONFIG_SOC_ULP_FSM_SUPPORTED=y\nCONFIG_SOC_RISCV_COPROC_SUPPORTED=y\nCONFIG_SOC_BT_SUPPORTED=y\nCONFIG_SOC_USB_OTG_SUPPORTED=y\nCONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y\nCONFIG_SOC_CCOMP_TIMER_SUPPORTED=y\nCONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y\nCONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y\nCONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y\nCONFIG_SOC_SDMMC_HOST_SUPPORTED=y\nCONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y\nCONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y\nCONFIG_SOC_RTC_MEM_SUPPORTED=y\nCONFIG_SOC_PSRAM_DMA_CAPABLE=y\nCONFIG_SOC_XT_WDT_SUPPORTED=y\nCONFIG_SOC_I2S_SUPPORTED=y\nCONFIG_SOC_RMT_SUPPORTED=y\nCONFIG_SOC_SDM_SUPPORTED=y\nCONFIG_SOC_GPSPI_SUPPORTED=y\nCONFIG_SOC_LEDC_SUPPORTED=y\nCONFIG_SOC_I2C_SUPPORTED=y\nCONFIG_SOC_SYSTIMER_SUPPORTED=y\nCONFIG_SOC_SUPPORT_COEXISTENCE=y\nCONFIG_SOC_TEMP_SENSOR_SUPPORTED=y\nCONFIG_SOC_AES_SUPPORTED=y\nCONFIG_SOC_MPI_SUPPORTED=y\nCONFIG_SOC_SHA_SUPPORTED=y\nCONFIG_SOC_HMAC_SUPPORTED=y\nCONFIG_SOC_DIG_SIGN_SUPPORTED=y\nCONFIG_SOC_FLASH_ENC_SUPPORTED=y\nCONFIG_SOC_SECURE_BOOT_SUPPORTED=y\nCONFIG_SOC_MEMPROT_SUPPORTED=y\nCONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y\nCONFIG_SOC_BOD_SUPPORTED=y\nCONFIG_SOC_XTAL_SUPPORT_40M=y\nCONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y\nCONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y\nCONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y\nCONFIG_SOC_ADC_ARBITER_SUPPORTED=y\nCONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y\nCONFIG_SOC_ADC_MONITOR_SUPPORTED=y\nCONFIG_SOC_ADC_DMA_SUPPORTED=y\nCONFIG_SOC_ADC_PERIPH_NUM=2\nCONFIG_SOC_ADC_MAX_CHANNEL_NUM=10\nCONFIG_SOC_ADC_ATTEN_NUM=4\nCONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2\nCONFIG_SOC_ADC_PATT_LEN_MAX=24\nCONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12\nCONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12\nCONFIG_SOC_ADC_DIGI_RESULT_BYTES=4\nCONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4\nCONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2\nCONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333\nCONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611\nCONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12\nCONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12\nCONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y\nCONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y\nCONFIG_SOC_APB_BACKUP_DMA=y\nCONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y\nCONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y\nCONFIG_SOC_CACHE_FREEZE_SUPPORTED=y\nCONFIG_SOC_CPU_CORES_NUM=2\nCONFIG_SOC_CPU_INTR_NUM=32\nCONFIG_SOC_CPU_HAS_FPU=y\nCONFIG_SOC_CPU_BREAKPOINTS_NUM=2\nCONFIG_SOC_CPU_WATCHPOINTS_NUM=2\nCONFIG_SOC_CPU_WATCHPOINT_SIZE=64\nCONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096\nCONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16\nCONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100\nCONFIG_SOC_GDMA_GROUPS=y\nCONFIG_SOC_GDMA_PAIRS_PER_GROUP=5\nCONFIG_SOC_GDMA_SUPPORT_PSRAM=y\nCONFIG_SOC_GPIO_PORT=1\nCONFIG_SOC_GPIO_PIN_COUNT=49\nCONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y\nCONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB=y\nCONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y\nCONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y\nCONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF\nCONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000\nCONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8\nCONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8\nCONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE=y\nCONFIG_SOC_I2C_NUM=2\nCONFIG_SOC_I2C_FIFO_LEN=32\nCONFIG_SOC_I2C_CMD_REG_NUM=8\nCONFIG_SOC_I2C_SUPPORT_SLAVE=y\nCONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y\nCONFIG_SOC_I2C_SUPPORT_XTAL=y\nCONFIG_SOC_I2C_SUPPORT_RTC=y\nCONFIG_SOC_I2S_NUM=2\nCONFIG_SOC_I2S_HW_VERSION_2=y\nCONFIG_SOC_I2S_SUPPORTS_XTAL=y\nCONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y\nCONFIG_SOC_I2S_SUPPORTS_PCM=y\nCONFIG_SOC_I2S_SUPPORTS_PDM=y\nCONFIG_SOC_I2S_SUPPORTS_PDM_TX=y\nCONFIG_SOC_I2S_PDM_MAX_TX_LINES=2\nCONFIG_SOC_I2S_SUPPORTS_PDM_RX=y\nCONFIG_SOC_I2S_PDM_MAX_RX_LINES=4\nCONFIG_SOC_I2S_SUPPORTS_TDM=y\nCONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y\nCONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y\nCONFIG_SOC_LEDC_CHANNEL_NUM=8\nCONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14\nCONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y\nCONFIG_SOC_MCPWM_GROUPS=2\nCONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3\nCONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3\nCONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2\nCONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3\nCONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y\nCONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3\nCONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3\nCONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y\nCONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1\nCONFIG_SOC_MMU_PERIPH_NUM=1\nCONFIG_SOC_PCNT_GROUPS=1\nCONFIG_SOC_PCNT_UNITS_PER_GROUP=4\nCONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2\nCONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2\nCONFIG_SOC_RMT_GROUPS=1\nCONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4\nCONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4\nCONFIG_SOC_RMT_CHANNELS_PER_GROUP=8\nCONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48\nCONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y\nCONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y\nCONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y\nCONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y\nCONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y\nCONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y\nCONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y\nCONFIG_SOC_RMT_SUPPORT_XTAL=y\nCONFIG_SOC_RMT_SUPPORT_RC_FAST=y\nCONFIG_SOC_RMT_SUPPORT_APB=y\nCONFIG_SOC_RMT_SUPPORT_DMA=y\nCONFIG_SOC_LCD_I80_SUPPORTED=y\nCONFIG_SOC_LCD_RGB_SUPPORTED=y\nCONFIG_SOC_LCD_I80_BUSES=1\nCONFIG_SOC_LCD_RGB_PANELS=1\nCONFIG_SOC_LCD_I80_BUS_WIDTH=16\nCONFIG_SOC_LCD_RGB_DATA_WIDTH=16\nCONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y\nCONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH=128\nCONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM=549\nCONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH=128\nCONFIG_SOC_RTCIO_PIN_COUNT=22\nCONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y\nCONFIG_SOC_RTCIO_HOLD_SUPPORTED=y\nCONFIG_SOC_RTCIO_WAKE_SUPPORTED=y\nCONFIG_SOC_SDM_GROUPS=y\nCONFIG_SOC_SDM_CHANNELS_PER_GROUP=8\nCONFIG_SOC_SDM_CLK_SUPPORT_APB=y\nCONFIG_SOC_SPI_PERIPH_NUM=3\nCONFIG_SOC_SPI_MAX_CS_NUM=6\nCONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64\nCONFIG_SOC_SPI_SUPPORT_DDRCLK=y\nCONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y\nCONFIG_SOC_SPI_SUPPORT_CD_SIG=y\nCONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y\nCONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y\nCONFIG_SOC_SPI_SUPPORT_CLK_APB=y\nCONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y\nCONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y\nCONFIG_SOC_MEMSPI_IS_INDEPENDENT=y\nCONFIG_SOC_SPI_MAX_PRE_DIVIDER=16\nCONFIG_SOC_SPI_SUPPORT_OCT=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_120M=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y\nCONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y\nCONFIG_SOC_SPIRAM_SUPPORTED=y\nCONFIG_SOC_SPIRAM_XIP_SUPPORTED=y\nCONFIG_SOC_SYSTIMER_COUNTER_NUM=2\nCONFIG_SOC_SYSTIMER_ALARM_NUM=3\nCONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32\nCONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20\nCONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y\nCONFIG_SOC_SYSTIMER_INT_LEVEL=y\nCONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y\nCONFIG_SOC_TIMER_GROUPS=2\nCONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2\nCONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54\nCONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y\nCONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y\nCONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4\nCONFIG_SOC_TOUCH_VERSION_2=y\nCONFIG_SOC_TOUCH_SENSOR_NUM=15\nCONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3\nCONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y\nCONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX=0x1FFFFF\nCONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF\nCONFIG_SOC_TWAI_CONTROLLER_NUM=1\nCONFIG_SOC_TWAI_CLK_SUPPORT_APB=y\nCONFIG_SOC_TWAI_BRP_MIN=2\nCONFIG_SOC_TWAI_BRP_MAX=16384\nCONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y\nCONFIG_SOC_UART_NUM=3\nCONFIG_SOC_UART_FIFO_LEN=128\nCONFIG_SOC_UART_BITRATE_MAX=5000000\nCONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y\nCONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y\nCONFIG_SOC_UART_SUPPORT_APB_CLK=y\nCONFIG_SOC_UART_SUPPORT_RTC_CLK=y\nCONFIG_SOC_UART_SUPPORT_XTAL_CLK=y\nCONFIG_SOC_UART_REQUIRE_CORE_RESET=y\nCONFIG_SOC_USB_PERIPH_NUM=y\nCONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968\nCONFIG_SOC_SHA_SUPPORT_DMA=y\nCONFIG_SOC_SHA_SUPPORT_RESUME=y\nCONFIG_SOC_SHA_GDMA=y\nCONFIG_SOC_SHA_SUPPORT_SHA1=y\nCONFIG_SOC_SHA_SUPPORT_SHA224=y\nCONFIG_SOC_SHA_SUPPORT_SHA256=y\nCONFIG_SOC_SHA_SUPPORT_SHA384=y\nCONFIG_SOC_SHA_SUPPORT_SHA512=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_224=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_256=y\nCONFIG_SOC_SHA_SUPPORT_SHA512_T=y\nCONFIG_SOC_RSA_MAX_BIT_LEN=4096\nCONFIG_SOC_AES_SUPPORT_DMA=y\nCONFIG_SOC_AES_GDMA=y\nCONFIG_SOC_AES_SUPPORT_AES_128=y\nCONFIG_SOC_AES_SUPPORT_AES_256=y\nCONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y\nCONFIG_SOC_PM_SUPPORT_CPU_PD=y\nCONFIG_SOC_PM_SUPPORT_TAGMEM_PD=y\nCONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y\nCONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y\nCONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y\nCONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y\nCONFIG_SOC_PM_SUPPORT_MODEM_PD=y\nCONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y\nCONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y\nCONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL=y\nCONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA=y\nCONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y\nCONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y\nCONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y\nCONFIG_SOC_CLK_XTAL32K_SUPPORTED=y\nCONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y\nCONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y\nCONFIG_SOC_EFUSE_HARD_DIS_JTAG=y\nCONFIG_SOC_EFUSE_DIS_USB_JTAG=y\nCONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y\nCONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y\nCONFIG_SOC_EFUSE_DIS_ICACHE=y\nCONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y\nCONFIG_SOC_SECURE_BOOT_V2_RSA=y\nCONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3\nCONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y\nCONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y\nCONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y\nCONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y\nCONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE=16\nCONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE=256\nCONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21\nCONFIG_SOC_MAC_BB_PD_MEM_SIZE=192\nCONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y\nCONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y\nCONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y\nCONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING=y\nCONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y\nCONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y\nCONFIG_SOC_COEX_HW_PTI=y\nCONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y\nCONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y\nCONFIG_SOC_SDMMC_NUM_SLOTS=2\nCONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y\nCONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y\nCONFIG_SOC_WIFI_HW_TSF=y\nCONFIG_SOC_WIFI_FTM_SUPPORT=y\nCONFIG_SOC_WIFI_GCMP_SUPPORT=y\nCONFIG_SOC_WIFI_WAPI_SUPPORT=y\nCONFIG_SOC_WIFI_CSI_SUPPORT=y\nCONFIG_SOC_WIFI_MESH_SUPPORT=y\nCONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y\nCONFIG_SOC_BLE_SUPPORTED=y\nCONFIG_SOC_BLE_MESH_SUPPORTED=y\nCONFIG_SOC_BLE_50_SUPPORTED=y\nCONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y\nCONFIG_SOC_BLUFI_SUPPORTED=y\nCONFIG_SOC_ULP_HAS_ADC=y\nCONFIG_SOC_PHY_COMBO_MODULE=y\nCONFIG_IDF_CMAKE=y\nCONFIG_IDF_TARGET_ARCH_XTENSA=y\nCONFIG_IDF_TARGET_ARCH=\"xtensa\"\nCONFIG_IDF_TARGET=\"esp32s3\"\nCONFIG_IDF_TARGET_ESP32S3=y\nCONFIG_IDF_FIRMWARE_CHIP_ID=0x0009\n\n#\n# Build type\n#\nCONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y\n# CONFIG_APP_BUILD_TYPE_RAM is not set\nCONFIG_APP_BUILD_GENERATE_BINARIES=y\nCONFIG_APP_BUILD_BOOTLOADER=y\nCONFIG_APP_BUILD_USE_FLASH_SECTIONS=y\n# CONFIG_APP_REPRODUCIBLE_BUILD is not set\n# CONFIG_APP_NO_BLOBS is not set\n# end of Build type\n\n#\n# Bootloader config\n#\nCONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0\nCONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set\n# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set\nCONFIG_BOOTLOADER_LOG_LEVEL_INFO=y\n# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set\n# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set\nCONFIG_BOOTLOADER_LOG_LEVEL=3\nCONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y\n# CONFIG_BOOTLOADER_FACTORY_RESET is not set\n# CONFIG_BOOTLOADER_APP_TEST is not set\nCONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y\nCONFIG_BOOTLOADER_WDT_ENABLE=y\n# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set\nCONFIG_BOOTLOADER_WDT_TIME_MS=9000\n# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set\n# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set\nCONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0\n# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set\nCONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y\n# end of Bootloader config\n\n#\n# Security features\n#\nCONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y\nCONFIG_SECURE_BOOT_V2_PREFERRED=y\n# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set\n# CONFIG_SECURE_BOOT is not set\n# CONFIG_SECURE_FLASH_ENC_ENABLED is not set\nCONFIG_SECURE_ROM_DL_MODE_ENABLED=y\n# end of Security features\n\n#\n# Application manager\n#\nCONFIG_APP_COMPILE_TIME_DATE=y\n# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set\n# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set\n# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set\nCONFIG_APP_RETRIEVE_LEN_ELF_SHA=16\n# end of Application manager\n\nCONFIG_ESP_ROM_HAS_CRC_LE=y\nCONFIG_ESP_ROM_HAS_CRC_BE=y\nCONFIG_ESP_ROM_HAS_MZ_CRC32=y\nCONFIG_ESP_ROM_HAS_JPEG_DECODE=y\nCONFIG_ESP_ROM_UART_CLK_IS_XTAL=y\nCONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y\nCONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4\nCONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG=y\nCONFIG_ESP_ROM_GET_CLK_FREQ=y\nCONFIG_ESP_ROM_HAS_HAL_WDT=y\nCONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y\nCONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y\nCONFIG_ESP_ROM_HAS_SPI_FLASH=y\nCONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y\nCONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y\nCONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y\nCONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y\nCONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG=y\nCONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG=y\nCONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG=y\n\n#\n# Boot ROM Behavior\n#\nCONFIG_BOOT_ROM_LOG_ALWAYS_ON=y\n# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set\n# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set\n# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set\n# end of Boot ROM Behavior\n\n#\n# Serial flasher config\n#\n# CONFIG_ESPTOOLPY_NO_STUB is not set\n# CONFIG_ESPTOOLPY_OCT_FLASH is not set\nCONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT=y\n# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set\n# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set\nCONFIG_ESPTOOLPY_FLASHMODE_DIO=y\n# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set\nCONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y\nCONFIG_ESPTOOLPY_FLASHMODE=\"dio\"\n# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set\nCONFIG_ESPTOOLPY_FLASHFREQ_80M=y\n# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set\n# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set\nCONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT=y\nCONFIG_ESPTOOLPY_FLASHFREQ=\"80m\"\n# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set\nCONFIG_ESPTOOLPY_FLASHSIZE_2MB=y\n# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set\n# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set\nCONFIG_ESPTOOLPY_FLASHSIZE=\"2MB\"\n# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set\nCONFIG_ESPTOOLPY_BEFORE_RESET=y\n# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set\nCONFIG_ESPTOOLPY_BEFORE=\"default_reset\"\nCONFIG_ESPTOOLPY_AFTER_RESET=y\n# CONFIG_ESPTOOLPY_AFTER_NORESET is not set\nCONFIG_ESPTOOLPY_AFTER=\"hard_reset\"\nCONFIG_ESPTOOLPY_MONITOR_BAUD=115200\n# end of Serial flasher config\n\n#\n# Partition Table\n#\n# CONFIG_PARTITION_TABLE_SINGLE_APP is not set\n# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set\n# CONFIG_PARTITION_TABLE_TWO_OTA is not set\nCONFIG_PARTITION_TABLE_CUSTOM=y\nCONFIG_PARTITION_TABLE_CUSTOM_FILENAME=\"partitions.csv\"\nCONFIG_PARTITION_TABLE_FILENAME=\"partitions.csv\"\nCONFIG_PARTITION_TABLE_OFFSET=0x8000\nCONFIG_PARTITION_TABLE_MD5=y\n# end of Partition Table\n\n#\n# ST7789 Configuration\n#\nCONFIG_GPIO_RANGE_MAX=48\nCONFIG_WIDTH=240\nCONFIG_HEIGHT=280\nCONFIG_OFFSETX=0\nCONFIG_OFFSETY=20\nCONFIG_MOSI_GPIO=11\nCONFIG_SCLK_GPIO=12\nCONFIG_CS_GPIO=10\nCONFIG_DC_GPIO=9\nCONFIG_RESET_GPIO=8\nCONFIG_BL_GPIO=7\n# CONFIG_INVERSION is not set\nCONFIG_SPI2_HOST=y\n# CONFIG_SPI3_HOST is not set\n# CONFIG_FRAME_BUFFER is not set\n# end of ST7789 Configuration\n\n#\n# Compiler options\n#\nCONFIG_COMPILER_OPTIMIZATION_DEFAULT=y\n# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set\n# CONFIG_COMPILER_OPTIMIZATION_PERF is not set\n# CONFIG_COMPILER_OPTIMIZATION_NONE is not set\nCONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y\n# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set\n# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set\nCONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y\nCONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2\n# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set\nCONFIG_COMPILER_HIDE_PATHS_MACROS=y\n# CONFIG_COMPILER_CXX_EXCEPTIONS is not set\n# CONFIG_COMPILER_CXX_RTTI is not set\nCONFIG_COMPILER_STACK_CHECK_MODE_NONE=y\n# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set\n# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set\n# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set\n# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set\n# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set\n# CONFIG_COMPILER_DUMP_RTL_FILES is not set\n# end of Compiler options\n\n#\n# Component config\n#\n\n#\n# Application Level Tracing\n#\n# CONFIG_APPTRACE_DEST_JTAG is not set\nCONFIG_APPTRACE_DEST_NONE=y\n# CONFIG_APPTRACE_DEST_UART1 is not set\n# CONFIG_APPTRACE_DEST_UART2 is not set\n# CONFIG_APPTRACE_DEST_USB_CDC is not set\nCONFIG_APPTRACE_DEST_UART_NONE=y\nCONFIG_APPTRACE_UART_TASK_PRIO=1\nCONFIG_APPTRACE_LOCK_ENABLE=y\n# end of Application Level Tracing\n\n#\n# Bluetooth\n#\n# CONFIG_BT_ENABLED is not set\n# end of Bluetooth\n\n#\n# Driver Configurations\n#\n\n#\n# Legacy ADC Configuration\n#\n# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set\n\n#\n# Legacy ADC Calibration Configuration\n#\n# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set\n# end of Legacy ADC Calibration Configuration\n# end of Legacy ADC Configuration\n\n#\n# SPI Configuration\n#\n# CONFIG_SPI_MASTER_IN_IRAM is not set\nCONFIG_SPI_MASTER_ISR_IN_IRAM=y\n# CONFIG_SPI_SLAVE_IN_IRAM is not set\nCONFIG_SPI_SLAVE_ISR_IN_IRAM=y\n# end of SPI Configuration\n\n#\n# TWAI Configuration\n#\n# CONFIG_TWAI_ISR_IN_IRAM is not set\nCONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y\n# end of TWAI Configuration\n\n#\n# Temperature sensor Configuration\n#\n# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set\n# end of Temperature sensor Configuration\n\n#\n# UART Configuration\n#\n# CONFIG_UART_ISR_IN_IRAM is not set\n# end of UART Configuration\n\n#\n# GPIO Configuration\n#\n# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set\n# end of GPIO Configuration\n\n#\n# Sigma Delta Modulator Configuration\n#\n# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_SDM_ENABLE_DEBUG_LOG is not set\n# end of Sigma Delta Modulator Configuration\n\n#\n# GPTimer Configuration\n#\nCONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y\n# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set\n# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set\n# end of GPTimer Configuration\n\n#\n# PCNT Configuration\n#\n# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_PCNT_ISR_IRAM_SAFE is not set\n# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set\n# end of PCNT Configuration\n\n#\n# RMT Configuration\n#\n# CONFIG_RMT_ISR_IRAM_SAFE is not set\n# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_RMT_ENABLE_DEBUG_LOG is not set\n# end of RMT Configuration\n\n#\n# MCPWM Configuration\n#\n# CONFIG_MCPWM_ISR_IRAM_SAFE is not set\n# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set\n# end of MCPWM Configuration\n\n#\n# I2S Configuration\n#\n# CONFIG_I2S_ISR_IRAM_SAFE is not set\n# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set\n# CONFIG_I2S_ENABLE_DEBUG_LOG is not set\n# end of I2S Configuration\n\n#\n# USB Serial/JTAG Configuration\n#\n# end of USB Serial/JTAG Configuration\n# end of Driver Configurations\n\n#\n# eFuse Bit Manager\n#\n# CONFIG_EFUSE_CUSTOM_TABLE is not set\n# CONFIG_EFUSE_VIRTUAL is not set\nCONFIG_EFUSE_MAX_BLK_LEN=256\n# end of eFuse Bit Manager\n\n#\n# ESP-TLS\n#\nCONFIG_ESP_TLS_USING_MBEDTLS=y\nCONFIG_ESP_TLS_USE_DS_PERIPHERAL=y\n# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set\n# CONFIG_ESP_TLS_SERVER is not set\n# CONFIG_ESP_TLS_PSK_VERIFICATION is not set\n# CONFIG_ESP_TLS_INSECURE is not set\n# end of ESP-TLS\n\n#\n# ADC and ADC Calibration\n#\n# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set\n# CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 is not set\n# end of ADC and ADC Calibration\n\n#\n# Wireless Coexistence\n#\n# CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE is not set\n# end of Wireless Coexistence\n\n#\n# Common ESP-related\n#\nCONFIG_ESP_ERR_TO_NAME_LOOKUP=y\n# end of Common ESP-related\n\n#\n# Ethernet\n#\nCONFIG_ETH_ENABLED=y\nCONFIG_ETH_USE_SPI_ETHERNET=y\n# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set\n# CONFIG_ETH_SPI_ETHERNET_W5500 is not set\n# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set\n# CONFIG_ETH_USE_OPENETH is not set\n# CONFIG_ETH_TRANSMIT_MUTEX is not set\n# end of Ethernet\n\n#\n# Event Loop Library\n#\n# CONFIG_ESP_EVENT_LOOP_PROFILING is not set\nCONFIG_ESP_EVENT_POST_FROM_ISR=y\nCONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y\n# end of Event Loop Library\n\n#\n# GDB Stub\n#\n# end of GDB Stub\n\n#\n# ESP HTTP client\n#\nCONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y\n# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set\n# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set\n# end of ESP HTTP client\n\n#\n# HTTP Server\n#\nCONFIG_HTTPD_MAX_REQ_HDR_LEN=512\nCONFIG_HTTPD_MAX_URI_LEN=512\nCONFIG_HTTPD_ERR_RESP_NO_DELAY=y\nCONFIG_HTTPD_PURGE_BUF_LEN=32\n# CONFIG_HTTPD_LOG_PURGE_DATA is not set\n# CONFIG_HTTPD_WS_SUPPORT is not set\n# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set\n# end of HTTP Server\n\n#\n# ESP HTTPS OTA\n#\n# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set\n# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set\n# end of ESP HTTPS OTA\n\n#\n# ESP HTTPS server\n#\n# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set\n# end of ESP HTTPS server\n\n#\n# Hardware Settings\n#\n\n#\n# Chip revision\n#\nCONFIG_ESP32S3_REV_MIN_0=y\n# CONFIG_ESP32S3_REV_MIN_1 is not set\n# CONFIG_ESP32S3_REV_MIN_2 is not set\nCONFIG_ESP32S3_REV_MIN_FULL=0\nCONFIG_ESP_REV_MIN_FULL=0\n\n#\n# Maximum Supported ESP32-S3 Revision (Rev v0.99)\n#\nCONFIG_ESP32S3_REV_MAX_FULL=99\nCONFIG_ESP_REV_MAX_FULL=99\n# end of Chip revision\n\n#\n# MAC Config\n#\nCONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y\nCONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y\nCONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y\n# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set\nCONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y\nCONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4\n# end of MAC Config\n\n#\n# Sleep Config\n#\n# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set\nCONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y\nCONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU=y\nCONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y\nCONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y\nCONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000\nCONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y\n# end of Sleep Config\n\n#\n# RTC Clock Config\n#\nCONFIG_RTC_CLK_SRC_INT_RC=y\n# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set\n# CONFIG_RTC_CLK_SRC_EXT_OSC is not set\n# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set\nCONFIG_RTC_CLK_CAL_CYCLES=1024\n# end of RTC Clock Config\n\n#\n# Peripheral Control\n#\nCONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y\n# end of Peripheral Control\n\n#\n# GDMA Configuration\n#\n# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set\n# CONFIG_GDMA_ISR_IRAM_SAFE is not set\n# end of GDMA Configuration\n\n#\n# Main XTAL Config\n#\nCONFIG_XTAL_FREQ_40=y\nCONFIG_XTAL_FREQ=40\n# end of Main XTAL Config\n# end of Hardware Settings\n\n#\n# LCD and Touch Panel\n#\n\n#\n# LCD Touch Drivers are maintained in the IDF Component Registry\n#\n\n#\n# LCD Peripheral Configuration\n#\nCONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32\n# CONFIG_LCD_ENABLE_DEBUG_LOG is not set\n# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set\n# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set\n# end of LCD Peripheral Configuration\n# end of LCD and Touch Panel\n\n#\n# ESP NETIF Adapter\n#\nCONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120\nCONFIG_ESP_NETIF_TCPIP_LWIP=y\n# CONFIG_ESP_NETIF_LOOPBACK is not set\nCONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y\n# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set\n# CONFIG_ESP_NETIF_L2_TAP is not set\n# CONFIG_ESP_NETIF_BRIDGE_EN is not set\n# end of ESP NETIF Adapter\n\n#\n# Partition API Configuration\n#\n# end of Partition API Configuration\n\n#\n# PHY\n#\nCONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y\n# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set\nCONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20\nCONFIG_ESP_PHY_MAX_TX_POWER=20\n# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set\nCONFIG_ESP_PHY_ENABLE_USB=y\n# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set\nCONFIG_ESP_PHY_RF_CAL_PARTIAL=y\n# CONFIG_ESP_PHY_RF_CAL_NONE is not set\n# CONFIG_ESP_PHY_RF_CAL_FULL is not set\nCONFIG_ESP_PHY_CALIBRATION_MODE=0\n# end of PHY\n\n#\n# Power Management\n#\n# CONFIG_PM_ENABLE is not set\nCONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y\nCONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP=y\n# end of Power Management\n\n#\n# ESP PSRAM\n#\n# CONFIG_SPIRAM is not set\n# end of ESP PSRAM\n\n#\n# ESP Ringbuf\n#\n# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set\n# end of ESP Ringbuf\n\n#\n# ESP System Settings\n#\n# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set\n# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 is not set\nCONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y\nCONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=240\n\n#\n# Cache config\n#\nCONFIG_ESP32S3_INSTRUCTION_CACHE_16KB=y\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE=0x4000\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS=y\nCONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS=8\n# CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B is not set\nCONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B=y\nCONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE=32\n# CONFIG_ESP32S3_DATA_CACHE_16KB is not set\nCONFIG_ESP32S3_DATA_CACHE_32KB=y\n# CONFIG_ESP32S3_DATA_CACHE_64KB is not set\nCONFIG_ESP32S3_DATA_CACHE_SIZE=0x8000\n# CONFIG_ESP32S3_DATA_CACHE_4WAYS is not set\nCONFIG_ESP32S3_DATA_CACHE_8WAYS=y\nCONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS=8\n# CONFIG_ESP32S3_DATA_CACHE_LINE_16B is not set\nCONFIG_ESP32S3_DATA_CACHE_LINE_32B=y\n# CONFIG_ESP32S3_DATA_CACHE_LINE_64B is not set\nCONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=32\n# end of Cache config\n\n#\n# Memory\n#\n# CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM is not set\n# CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE is not set\n# end of Memory\n\n#\n# Trace memory\n#\n# CONFIG_ESP32S3_TRAX is not set\nCONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM=0x0\n# end of Trace memory\n\n# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set\nCONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y\n# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set\n# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set\n# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set\nCONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0\nCONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y\nCONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y\n\n#\n# Memory protection\n#\nCONFIG_ESP_SYSTEM_MEMPROT_FEATURE=y\nCONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK=y\n# end of Memory protection\n\nCONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32\nCONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304\nCONFIG_ESP_MAIN_TASK_STACK_SIZE=3584\nCONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y\n# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set\n# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set\nCONFIG_ESP_MAIN_TASK_AFFINITY=0x0\nCONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048\nCONFIG_ESP_CONSOLE_UART_DEFAULT=y\n# CONFIG_ESP_CONSOLE_USB_CDC is not set\n# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set\n# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set\n# CONFIG_ESP_CONSOLE_NONE is not set\n# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set\nCONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y\nCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y\nCONFIG_ESP_CONSOLE_UART=y\nCONFIG_ESP_CONSOLE_MULTIPLE_UART=y\nCONFIG_ESP_CONSOLE_UART_NUM=0\nCONFIG_ESP_CONSOLE_UART_BAUDRATE=115200\nCONFIG_ESP_INT_WDT=y\nCONFIG_ESP_INT_WDT_TIMEOUT_MS=300\nCONFIG_ESP_INT_WDT_CHECK_CPU1=y\n# CONFIG_ESP_TASK_WDT_EN is not set\n# CONFIG_ESP_PANIC_HANDLER_IRAM is not set\n# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set\nCONFIG_ESP_DEBUG_OCDAWARE=y\nCONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y\n\n#\n# Brownout Detector\n#\nCONFIG_ESP_BROWNOUT_DET=y\nCONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set\nCONFIG_ESP_BROWNOUT_DET_LVL=7\n# end of Brownout Detector\n\nCONFIG_ESP_SYSTEM_BROWNOUT_INTR=y\n# end of ESP System Settings\n\n#\n# IPC (Inter-Processor Call)\n#\nCONFIG_ESP_IPC_TASK_STACK_SIZE=1280\nCONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y\nCONFIG_ESP_IPC_ISR_ENABLE=y\n# end of IPC (Inter-Processor Call)\n\n#\n# High resolution timer (esp_timer)\n#\n# CONFIG_ESP_TIMER_PROFILING is not set\nCONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y\nCONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y\nCONFIG_ESP_TIMER_TASK_STACK_SIZE=3584\nCONFIG_ESP_TIMER_INTERRUPT_LEVEL=1\n# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set\nCONFIG_ESP_TIMER_TASK_AFFINITY=0x0\nCONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y\nCONFIG_ESP_TIMER_ISR_AFFINITY=0x1\nCONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y\n# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set\nCONFIG_ESP_TIMER_IMPL_SYSTIMER=y\n# end of High resolution timer (esp_timer)\n\n#\n# Wi-Fi\n#\nCONFIG_ESP_WIFI_ENABLED=y\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10\nCONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32\n# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set\nCONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y\nCONFIG_ESP_WIFI_TX_BUFFER_TYPE=1\nCONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32\nCONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y\n# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set\nCONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0\nCONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5\n# CONFIG_ESP_WIFI_CSI_ENABLED is not set\nCONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y\nCONFIG_ESP_WIFI_TX_BA_WIN=6\nCONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP_WIFI_RX_BA_WIN=6\nCONFIG_ESP_WIFI_NVS_ENABLED=y\nCONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y\n# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set\nCONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752\nCONFIG_ESP_WIFI_MGMT_SBUF_NUM=32\nCONFIG_ESP_WIFI_IRAM_OPT=y\n# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set\nCONFIG_ESP_WIFI_RX_IRAM_OPT=y\nCONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y\nCONFIG_ESP_WIFI_ENABLE_SAE_PK=y\nCONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y\nCONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y\n# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set\n# CONFIG_ESP_WIFI_FTM_ENABLE is not set\nCONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y\n# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set\n# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set\nCONFIG_ESP_WIFI_SOFTAP_SUPPORT=y\n# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set\nCONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7\nCONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y\nCONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y\n# CONFIG_ESP_WIFI_WAPI_PSK is not set\n# CONFIG_ESP_WIFI_SUITE_B_192 is not set\n# CONFIG_ESP_WIFI_11KV_SUPPORT is not set\n# CONFIG_ESP_WIFI_MBO_SUPPORT is not set\n# CONFIG_ESP_WIFI_DPP_SUPPORT is not set\n# CONFIG_ESP_WIFI_11R_SUPPORT is not set\n# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set\n\n#\n# WPS Configuration Options\n#\n# CONFIG_ESP_WIFI_WPS_STRICT is not set\n# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set\n# end of WPS Configuration Options\n\n# CONFIG_ESP_WIFI_DEBUG_PRINT is not set\n# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set\nCONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y\n# end of Wi-Fi\n\n#\n# Core dump\n#\n# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set\n# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set\nCONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y\n# end of Core dump\n\n#\n# FAT Filesystem support\n#\nCONFIG_FATFS_VOLUME_COUNT=2\nCONFIG_FATFS_LFN_NONE=y\n# CONFIG_FATFS_LFN_HEAP is not set\n# CONFIG_FATFS_LFN_STACK is not set\n# CONFIG_FATFS_SECTOR_512 is not set\nCONFIG_FATFS_SECTOR_4096=y\n# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set\nCONFIG_FATFS_CODEPAGE_437=y\n# CONFIG_FATFS_CODEPAGE_720 is not set\n# CONFIG_FATFS_CODEPAGE_737 is not set\n# CONFIG_FATFS_CODEPAGE_771 is not set\n# CONFIG_FATFS_CODEPAGE_775 is not set\n# CONFIG_FATFS_CODEPAGE_850 is not set\n# CONFIG_FATFS_CODEPAGE_852 is not set\n# CONFIG_FATFS_CODEPAGE_855 is not set\n# CONFIG_FATFS_CODEPAGE_857 is not set\n# CONFIG_FATFS_CODEPAGE_860 is not set\n# CONFIG_FATFS_CODEPAGE_861 is not set\n# CONFIG_FATFS_CODEPAGE_862 is not set\n# CONFIG_FATFS_CODEPAGE_863 is not set\n# CONFIG_FATFS_CODEPAGE_864 is not set\n# CONFIG_FATFS_CODEPAGE_865 is not set\n# CONFIG_FATFS_CODEPAGE_866 is not set\n# CONFIG_FATFS_CODEPAGE_869 is not set\n# CONFIG_FATFS_CODEPAGE_932 is not set\n# CONFIG_FATFS_CODEPAGE_936 is not set\n# CONFIG_FATFS_CODEPAGE_949 is not set\n# CONFIG_FATFS_CODEPAGE_950 is not set\nCONFIG_FATFS_CODEPAGE=437\nCONFIG_FATFS_FS_LOCK=0\nCONFIG_FATFS_TIMEOUT_MS=10000\nCONFIG_FATFS_PER_FILE_CACHE=y\n# CONFIG_FATFS_USE_FASTSEEK is not set\nCONFIG_FATFS_VFS_FSTAT_BLKSIZE=0\n# end of FAT Filesystem support\n\n#\n# FreeRTOS\n#\n\n#\n# Kernel\n#\n# CONFIG_FREERTOS_SMP is not set\n# CONFIG_FREERTOS_UNICORE is not set\nCONFIG_FREERTOS_HZ=100\n# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set\n# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set\nCONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y\nCONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1\nCONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536\n# CONFIG_FREERTOS_USE_IDLE_HOOK is not set\n# CONFIG_FREERTOS_USE_TICK_HOOK is not set\nCONFIG_FREERTOS_MAX_TASK_NAME_LEN=16\n# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set\nCONFIG_FREERTOS_TIMER_TASK_PRIORITY=1\nCONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048\nCONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10\nCONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0\nCONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1\n# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set\n# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set\n# end of Kernel\n\n#\n# Port\n#\nCONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y\n# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set\nCONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y\n# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set\nCONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y\nCONFIG_FREERTOS_ISR_STACKSIZE=1536\nCONFIG_FREERTOS_INTERRUPT_BACKTRACE=y\nCONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y\nCONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y\n# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set\nCONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y\n# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set\n# CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH is not set\n# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set\nCONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y\n# end of Port\n\nCONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF\nCONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y\nCONFIG_FREERTOS_DEBUG_OCDAWARE=y\n# end of FreeRTOS\n\n#\n# Hardware Abstraction Layer (HAL) and Low Level (LL)\n#\nCONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y\n# CONFIG_HAL_ASSERTION_DISABLE is not set\n# CONFIG_HAL_ASSERTION_SILENT is not set\n# CONFIG_HAL_ASSERTION_ENABLE is not set\nCONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2\nCONFIG_HAL_WDT_USE_ROM_IMPL=y\nCONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=y\nCONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=y\n# end of Hardware Abstraction Layer (HAL) and Low Level (LL)\n\n#\n# Heap memory debugging\n#\nCONFIG_HEAP_POISONING_DISABLED=y\n# CONFIG_HEAP_POISONING_LIGHT is not set\n# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set\nCONFIG_HEAP_TRACING_OFF=y\n# CONFIG_HEAP_TRACING_STANDALONE is not set\n# CONFIG_HEAP_TRACING_TOHOST is not set\n# CONFIG_HEAP_USE_HOOKS is not set\n# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set\n# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set\n# end of Heap memory debugging\n\nCONFIG_IEEE802154_CCA_THRESHOLD=-60\nCONFIG_IEEE802154_PENDING_TABLE_SIZE=20\n\n#\n# Log output\n#\n# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set\n# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set\n# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set\nCONFIG_LOG_DEFAULT_LEVEL_INFO=y\n# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set\n# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set\nCONFIG_LOG_DEFAULT_LEVEL=3\nCONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y\n# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set\n# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set\nCONFIG_LOG_MAXIMUM_LEVEL=3\nCONFIG_LOG_COLORS=y\nCONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y\n# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set\n# end of Log output\n\n#\n# LWIP\n#\nCONFIG_LWIP_LOCAL_HOSTNAME=\"espressif\"\n# CONFIG_LWIP_NETIF_API is not set\nCONFIG_LWIP_TCPIP_TASK_PRIO=18\n# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set\n# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set\nCONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y\n# CONFIG_LWIP_L2_TO_L3_COPY is not set\n# CONFIG_LWIP_IRAM_OPTIMIZATION is not set\n# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set\nCONFIG_LWIP_TIMERS_ONDEMAND=y\nCONFIG_LWIP_ND6=y\nCONFIG_LWIP_MAX_SOCKETS=10\n# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set\n# CONFIG_LWIP_SO_LINGER is not set\nCONFIG_LWIP_SO_REUSE=y\nCONFIG_LWIP_SO_REUSE_RXTOALL=y\n# CONFIG_LWIP_SO_RCVBUF is not set\n# CONFIG_LWIP_NETBUF_RECVINFO is not set\nCONFIG_LWIP_IP4_FRAG=y\nCONFIG_LWIP_IP6_FRAG=y\n# CONFIG_LWIP_IP4_REASSEMBLY is not set\n# CONFIG_LWIP_IP6_REASSEMBLY is not set\nCONFIG_LWIP_IP_REASS_MAX_PBUFS=10\n# CONFIG_LWIP_IP_FORWARD is not set\n# CONFIG_LWIP_STATS is not set\nCONFIG_LWIP_ESP_GRATUITOUS_ARP=y\nCONFIG_LWIP_GARP_TMR_INTERVAL=60\nCONFIG_LWIP_ESP_MLDV6_REPORT=y\nCONFIG_LWIP_MLDV6_TMR_INTERVAL=40\nCONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32\nCONFIG_LWIP_DHCP_DOES_ARP_CHECK=y\n# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set\nCONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y\n# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set\nCONFIG_LWIP_DHCP_OPTIONS_LEN=68\nCONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0\nCONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1\n\n#\n# DHCP server\n#\nCONFIG_LWIP_DHCPS=y\nCONFIG_LWIP_DHCPS_LEASE_UNIT=60\nCONFIG_LWIP_DHCPS_MAX_STATION_NUM=8\n# end of DHCP server\n\n# CONFIG_LWIP_AUTOIP is not set\nCONFIG_LWIP_IPV4=y\nCONFIG_LWIP_IPV6=y\n# CONFIG_LWIP_IPV6_AUTOCONFIG is not set\nCONFIG_LWIP_IPV6_NUM_ADDRESSES=3\n# CONFIG_LWIP_IPV6_FORWARD is not set\n# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set\nCONFIG_LWIP_NETIF_LOOPBACK=y\nCONFIG_LWIP_LOOPBACK_MAX_PBUFS=8\n\n#\n# TCP\n#\nCONFIG_LWIP_MAX_ACTIVE_TCP=16\nCONFIG_LWIP_MAX_LISTENING_TCP=16\nCONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y\nCONFIG_LWIP_TCP_MAXRTX=12\nCONFIG_LWIP_TCP_SYNMAXRTX=12\nCONFIG_LWIP_TCP_MSS=1440\nCONFIG_LWIP_TCP_TMR_INTERVAL=250\nCONFIG_LWIP_TCP_MSL=60000\nCONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000\nCONFIG_LWIP_TCP_SND_BUF_DEFAULT=5744\nCONFIG_LWIP_TCP_WND_DEFAULT=5744\nCONFIG_LWIP_TCP_RECVMBOX_SIZE=6\nCONFIG_LWIP_TCP_QUEUE_OOSEQ=y\n# CONFIG_LWIP_TCP_SACK_OUT is not set\nCONFIG_LWIP_TCP_OVERSIZE_MSS=y\n# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set\n# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set\nCONFIG_LWIP_TCP_RTO_TIME=1500\n# end of TCP\n\n#\n# UDP\n#\nCONFIG_LWIP_MAX_UDP_PCBS=16\nCONFIG_LWIP_UDP_RECVMBOX_SIZE=6\n# end of UDP\n\n#\n# Checksums\n#\n# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set\n# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set\nCONFIG_LWIP_CHECKSUM_CHECK_ICMP=y\n# end of Checksums\n\nCONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072\nCONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y\n# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set\n# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set\nCONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF\n# CONFIG_LWIP_PPP_SUPPORT is not set\nCONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3\nCONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5\n# CONFIG_LWIP_SLIP_SUPPORT is not set\n\n#\n# ICMP\n#\nCONFIG_LWIP_ICMP=y\n# CONFIG_LWIP_MULTICAST_PING is not set\n# CONFIG_LWIP_BROADCAST_PING is not set\n# end of ICMP\n\n#\n# LWIP RAW API\n#\nCONFIG_LWIP_MAX_RAW_PCBS=16\n# end of LWIP RAW API\n\n#\n# SNTP\n#\nCONFIG_LWIP_SNTP_MAX_SERVERS=1\n# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set\nCONFIG_LWIP_SNTP_UPDATE_DELAY=3600000\n# end of SNTP\n\nCONFIG_LWIP_BRIDGEIF_MAX_PORTS=7\nCONFIG_LWIP_ESP_LWIP_ASSERT=y\n\n#\n# Hooks\n#\n# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set\nCONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y\n# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y\n# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set\nCONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y\n# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set\n# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y\n# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set\nCONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y\n# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set\n# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set\nCONFIG_LWIP_HOOK_IP6_INPUT_NONE=y\n# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set\n# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set\n# end of Hooks\n\n# CONFIG_LWIP_DEBUG is not set\n# end of LWIP\n\n#\n# mbedTLS\n#\nCONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y\n# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set\n# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set\nCONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y\nCONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384\nCONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096\n# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set\n# CONFIG_MBEDTLS_DEBUG is not set\n\n#\n# mbedTLS v3.x related\n#\n# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set\n# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set\n# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set\n# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set\nCONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y\nCONFIG_MBEDTLS_PKCS7_C=y\n# end of mbedTLS v3.x related\n\n#\n# Certificate Bundle\n#\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y\n# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set\n# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set\n# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set\nCONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200\n# end of Certificate Bundle\n\n# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set\nCONFIG_MBEDTLS_CMAC_C=y\nCONFIG_MBEDTLS_HARDWARE_AES=y\nCONFIG_MBEDTLS_AES_USE_INTERRUPT=y\nCONFIG_MBEDTLS_HARDWARE_MPI=y\nCONFIG_MBEDTLS_MPI_USE_INTERRUPT=y\nCONFIG_MBEDTLS_HARDWARE_SHA=y\nCONFIG_MBEDTLS_ROM_MD5=y\n# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set\n# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set\nCONFIG_MBEDTLS_HAVE_TIME=y\n# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set\n# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set\nCONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y\nCONFIG_MBEDTLS_SHA512_C=y\nCONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y\n# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set\n# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set\n# CONFIG_MBEDTLS_TLS_DISABLED is not set\nCONFIG_MBEDTLS_TLS_SERVER=y\nCONFIG_MBEDTLS_TLS_CLIENT=y\nCONFIG_MBEDTLS_TLS_ENABLED=y\n\n#\n# TLS Key Exchange Methods\n#\n# CONFIG_MBEDTLS_PSK_MODES is not set\nCONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y\nCONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y\n# end of TLS Key Exchange Methods\n\nCONFIG_MBEDTLS_SSL_RENEGOTIATION=y\nCONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y\n# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set\n# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set\nCONFIG_MBEDTLS_SSL_ALPN=y\nCONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y\nCONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y\n\n#\n# Symmetric Ciphers\n#\nCONFIG_MBEDTLS_AES_C=y\n# CONFIG_MBEDTLS_CAMELLIA_C is not set\n# CONFIG_MBEDTLS_DES_C is not set\n# CONFIG_MBEDTLS_BLOWFISH_C is not set\n# CONFIG_MBEDTLS_XTEA_C is not set\nCONFIG_MBEDTLS_CCM_C=y\nCONFIG_MBEDTLS_GCM_C=y\n# CONFIG_MBEDTLS_NIST_KW_C is not set\n# end of Symmetric Ciphers\n\n# CONFIG_MBEDTLS_RIPEMD160_C is not set\n\n#\n# Certificates\n#\nCONFIG_MBEDTLS_PEM_PARSE_C=y\nCONFIG_MBEDTLS_PEM_WRITE_C=y\nCONFIG_MBEDTLS_X509_CRL_PARSE_C=y\nCONFIG_MBEDTLS_X509_CSR_PARSE_C=y\n# end of Certificates\n\nCONFIG_MBEDTLS_ECP_C=y\n# CONFIG_MBEDTLS_DHM_C is not set\nCONFIG_MBEDTLS_ECDH_C=y\nCONFIG_MBEDTLS_ECDSA_C=y\n# CONFIG_MBEDTLS_ECJPAKE_C is not set\nCONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y\nCONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y\nCONFIG_MBEDTLS_ECP_NIST_OPTIM=y\nCONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM=y\n# CONFIG_MBEDTLS_POLY1305_C is not set\n# CONFIG_MBEDTLS_CHACHA20_C is not set\n# CONFIG_MBEDTLS_HKDF_C is not set\n# CONFIG_MBEDTLS_THREADING_C is not set\n# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set\n# end of mbedTLS\n\n#\n# ESP-MQTT Configurations\n#\nCONFIG_MQTT_PROTOCOL_311=y\n# CONFIG_MQTT_PROTOCOL_5 is not set\nCONFIG_MQTT_TRANSPORT_SSL=y\nCONFIG_MQTT_TRANSPORT_WEBSOCKET=y\nCONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y\n# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set\n# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set\n# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set\n# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set\n# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set\n# CONFIG_MQTT_CUSTOM_OUTBOX is not set\n# end of ESP-MQTT Configurations\n\n#\n# Newlib\n#\nCONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y\n# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set\n# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set\n# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set\n# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set\nCONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y\n# CONFIG_NEWLIB_NANO_FORMAT is not set\nCONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set\n# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set\n# end of Newlib\n\n#\n# NVS\n#\n# CONFIG_NVS_ASSERT_ERROR_CHECK is not set\n# end of NVS\n\n#\n# OpenThread\n#\n# CONFIG_OPENTHREAD_ENABLED is not set\n\n#\n# Thread Operational Dataset\n#\nCONFIG_OPENTHREAD_NETWORK_NAME=\"OpenThread-ESP\"\nCONFIG_OPENTHREAD_MESH_LOCAL_PREFIX=\"fd00:db8:a0:0::/64\"\nCONFIG_OPENTHREAD_NETWORK_CHANNEL=15\nCONFIG_OPENTHREAD_NETWORK_PANID=0x1234\nCONFIG_OPENTHREAD_NETWORK_EXTPANID=\"dead00beef00cafe\"\nCONFIG_OPENTHREAD_NETWORK_MASTERKEY=\"00112233445566778899aabbccddeeff\"\nCONFIG_OPENTHREAD_NETWORK_PSKC=\"104810e2315100afd6bc9215a6bfac53\"\n# end of Thread Operational Dataset\n\nCONFIG_OPENTHREAD_XTAL_ACCURACY=130\n# end of OpenThread\n\n#\n# Protocomm\n#\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y\nCONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y\n# end of Protocomm\n\n#\n# PThreads\n#\nCONFIG_PTHREAD_TASK_PRIO_DEFAULT=5\nCONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072\nCONFIG_PTHREAD_STACK_MIN=768\nCONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y\n# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set\n# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set\nCONFIG_PTHREAD_TASK_CORE_DEFAULT=-1\nCONFIG_PTHREAD_TASK_NAME_DEFAULT=\"pthread\"\n# end of PThreads\n\n#\n# MMU Config\n#\nCONFIG_MMU_PAGE_SIZE_64KB=y\nCONFIG_MMU_PAGE_MODE=\"64KB\"\nCONFIG_MMU_PAGE_SIZE=0x10000\n# end of MMU Config\n\n#\n# SPI Flash driver\n#\n# CONFIG_SPI_FLASH_VERIFY_WRITE is not set\n# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set\nCONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y\n# CONFIG_SPI_FLASH_ROM_IMPL is not set\nCONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y\n# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set\n# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set\n# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set\nCONFIG_SPI_FLASH_YIELD_DURING_ERASE=y\nCONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20\nCONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1\nCONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192\n# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set\n# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set\n# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set\n\n#\n# SPI Flash behavior when brownout\n#\nCONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y\nCONFIG_SPI_FLASH_BROWNOUT_RESET=y\n# end of SPI Flash behavior when brownout\n\n#\n# Auto-detect flash chips\n#\nCONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORTED=y\nCONFIG_SPI_FLASH_VENDOR_TH_SUPPORTED=y\nCONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_TH_CHIP=y\nCONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP=y\n# end of Auto-detect flash chips\n\nCONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y\n# end of SPI Flash driver\n\n#\n# SPIFFS Configuration\n#\nCONFIG_SPIFFS_MAX_PARTITIONS=3\n\n#\n# SPIFFS Cache Configuration\n#\nCONFIG_SPIFFS_CACHE=y\nCONFIG_SPIFFS_CACHE_WR=y\n# CONFIG_SPIFFS_CACHE_STATS is not set\n# end of SPIFFS Cache Configuration\n\nCONFIG_SPIFFS_PAGE_CHECK=y\nCONFIG_SPIFFS_GC_MAX_RUNS=10\n# CONFIG_SPIFFS_GC_STATS is not set\nCONFIG_SPIFFS_PAGE_SIZE=256\nCONFIG_SPIFFS_OBJ_NAME_LEN=32\n# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set\nCONFIG_SPIFFS_USE_MAGIC=y\nCONFIG_SPIFFS_USE_MAGIC_LENGTH=y\nCONFIG_SPIFFS_META_LENGTH=4\nCONFIG_SPIFFS_USE_MTIME=y\n\n#\n# Debug Configuration\n#\n# CONFIG_SPIFFS_DBG is not set\n# CONFIG_SPIFFS_API_DBG is not set\n# CONFIG_SPIFFS_GC_DBG is not set\n# CONFIG_SPIFFS_CACHE_DBG is not set\n# CONFIG_SPIFFS_CHECK_DBG is not set\n# CONFIG_SPIFFS_TEST_VISUALISATION is not set\n# end of Debug Configuration\n# end of SPIFFS Configuration\n\n#\n# TCP Transport\n#\n\n#\n# Websocket\n#\nCONFIG_WS_TRANSPORT=y\nCONFIG_WS_BUFFER_SIZE=1024\n# CONFIG_WS_DYNAMIC_BUFFER is not set\n# end of Websocket\n# end of TCP Transport\n\n#\n# Ultra Low Power (ULP) Co-processor\n#\n# CONFIG_ULP_COPROC_ENABLED is not set\n# end of Ultra Low Power (ULP) Co-processor\n\n#\n# Unity unit testing library\n#\nCONFIG_UNITY_ENABLE_FLOAT=y\nCONFIG_UNITY_ENABLE_DOUBLE=y\n# CONFIG_UNITY_ENABLE_64BIT is not set\n# CONFIG_UNITY_ENABLE_COLOR is not set\nCONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y\n# CONFIG_UNITY_ENABLE_FIXTURE is not set\n# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set\n# end of Unity unit testing library\n\n#\n# USB-OTG\n#\nCONFIG_USB_OTG_SUPPORTED=y\nCONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE=256\nCONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED=y\n# CONFIG_USB_HOST_HW_BUFFER_BIAS_IN is not set\n# CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT is not set\n\n#\n# Root Hub configuration\n#\nCONFIG_USB_HOST_DEBOUNCE_DELAY_MS=250\nCONFIG_USB_HOST_RESET_HOLD_MS=30\nCONFIG_USB_HOST_RESET_RECOVERY_MS=30\nCONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10\n# end of Root Hub configuration\n# end of USB-OTG\n\n#\n# Virtual file system\n#\nCONFIG_VFS_SUPPORT_IO=y\nCONFIG_VFS_SUPPORT_DIR=y\nCONFIG_VFS_SUPPORT_SELECT=y\nCONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y\nCONFIG_VFS_SUPPORT_TERMIOS=y\nCONFIG_VFS_MAX_COUNT=8\n\n#\n# Host File System I/O (Semihosting)\n#\nCONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1\n# end of Host File System I/O (Semihosting)\n# end of Virtual file system\n\n#\n# Wear Levelling\n#\n# CONFIG_WL_SECTOR_SIZE_512 is not set\nCONFIG_WL_SECTOR_SIZE_4096=y\nCONFIG_WL_SECTOR_SIZE=4096\n# end of Wear Levelling\n\n#\n# Wi-Fi Provisioning Manager\n#\nCONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16\nCONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30\n# CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION is not set\nCONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y\n# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set\n# end of Wi-Fi Provisioning Manager\n# end of Component config\n\n# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set\n\n# Deprecated options for backward compatibility\n# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set\n# CONFIG_NO_BLOBS is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set\nCONFIG_LOG_BOOTLOADER_LEVEL_INFO=y\n# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set\n# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set\nCONFIG_LOG_BOOTLOADER_LEVEL=3\n# CONFIG_APP_ROLLBACK_ENABLE is not set\n# CONFIG_FLASH_ENCRYPTION_ENABLED is not set\n# CONFIG_FLASHMODE_QIO is not set\n# CONFIG_FLASHMODE_QOUT is not set\nCONFIG_FLASHMODE_DIO=y\n# CONFIG_FLASHMODE_DOUT is not set\nCONFIG_MONITOR_BAUD=115200\nCONFIG_OPTIMIZATION_LEVEL_DEBUG=y\nCONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y\n# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set\n# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set\nCONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y\n# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set\n# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set\nCONFIG_OPTIMIZATION_ASSERTION_LEVEL=2\n# CONFIG_CXX_EXCEPTIONS is not set\nCONFIG_STACK_CHECK_NONE=y\n# CONFIG_STACK_CHECK_NORM is not set\n# CONFIG_STACK_CHECK_STRONG is not set\n# CONFIG_STACK_CHECK_ALL is not set\n# CONFIG_WARN_WRITE_STRINGS is not set\n# CONFIG_ESP32_APPTRACE_DEST_TRAX is not set\nCONFIG_ESP32_APPTRACE_DEST_NONE=y\nCONFIG_ESP32_APPTRACE_LOCK_ENABLE=y\n# CONFIG_MCPWM_ISR_IN_IRAM is not set\n# CONFIG_EXTERNAL_COEX_ENABLE is not set\n# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set\n# CONFIG_EVENT_LOOP_PROFILING is not set\nCONFIG_POST_EVENTS_FROM_ISR=y\nCONFIG_POST_EVENTS_FROM_IRAM_ISR=y\n# CONFIG_OTA_ALLOW_HTTP is not set\n# CONFIG_ESP_SYSTEM_PD_FLASH is not set\nCONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY=2000\nCONFIG_ESP32S3_RTC_CLK_SRC_INT_RC=y\n# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS is not set\n# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC is not set\n# CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 is not set\nCONFIG_ESP32S3_RTC_CLK_CAL_CYCLES=1024\nCONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y\n# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set\nCONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20\nCONFIG_ESP32_PHY_MAX_TX_POWER=20\n# CONFIG_REDUCE_PHY_TX_POWER is not set\n# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set\nCONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU=y\n# CONFIG_ESP32S3_SPIRAM_SUPPORT is not set\n# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 is not set\n# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 is not set\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_240=y\nCONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=240\nCONFIG_SYSTEM_EVENT_QUEUE_SIZE=32\nCONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304\nCONFIG_MAIN_TASK_STACK_SIZE=3584\nCONFIG_CONSOLE_UART_DEFAULT=y\n# CONFIG_CONSOLE_UART_CUSTOM is not set\n# CONFIG_CONSOLE_UART_NONE is not set\n# CONFIG_ESP_CONSOLE_UART_NONE is not set\nCONFIG_CONSOLE_UART=y\nCONFIG_CONSOLE_UART_NUM=0\nCONFIG_CONSOLE_UART_BAUDRATE=115200\nCONFIG_INT_WDT=y\nCONFIG_INT_WDT_TIMEOUT_MS=300\nCONFIG_INT_WDT_CHECK_CPU1=y\n# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set\nCONFIG_ESP32S3_DEBUG_OCDAWARE=y\nCONFIG_BROWNOUT_DET=y\nCONFIG_ESP32S3_BROWNOUT_DET=y\nCONFIG_ESP32S3_BROWNOUT_DET=y\nCONFIG_BROWNOUT_DET_LVL_SEL_7=y\nCONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7=y\n# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 is not set\n# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set\n# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 is not set\nCONFIG_BROWNOUT_DET_LVL=7\nCONFIG_ESP32S3_BROWNOUT_DET_LVL=7\nCONFIG_IPC_TASK_STACK_SIZE=1280\nCONFIG_TIMER_TASK_STACK_SIZE=3584\nCONFIG_ESP32_WIFI_ENABLED=y\nCONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10\nCONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32\n# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set\nCONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y\nCONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1\nCONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32\n# CONFIG_ESP32_WIFI_CSI_ENABLED is not set\nCONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y\nCONFIG_ESP32_WIFI_TX_BA_WIN=6\nCONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y\nCONFIG_ESP32_WIFI_RX_BA_WIN=6\nCONFIG_ESP32_WIFI_RX_BA_WIN=6\nCONFIG_ESP32_WIFI_NVS_ENABLED=y\nCONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y\n# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set\nCONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752\nCONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32\nCONFIG_ESP32_WIFI_IRAM_OPT=y\nCONFIG_ESP32_WIFI_RX_IRAM_OPT=y\nCONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y\nCONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y\nCONFIG_WPA_MBEDTLS_CRYPTO=y\nCONFIG_WPA_MBEDTLS_TLS_CLIENT=y\n# CONFIG_WPA_WAPI_PSK is not set\n# CONFIG_WPA_SUITE_B_192 is not set\n# CONFIG_WPA_11KV_SUPPORT is not set\n# CONFIG_WPA_MBO_SUPPORT is not set\n# CONFIG_WPA_DPP_SUPPORT is not set\n# CONFIG_WPA_11R_SUPPORT is not set\n# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set\n# CONFIG_WPA_WPS_STRICT is not set\n# CONFIG_WPA_DEBUG_PRINT is not set\n# CONFIG_WPA_TESTING_OPTIONS is not set\n# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set\n# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set\nCONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y\nCONFIG_TIMER_TASK_PRIORITY=1\nCONFIG_TIMER_TASK_STACK_DEPTH=2048\nCONFIG_TIMER_QUEUE_LENGTH=10\n# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set\n# CONFIG_HAL_ASSERTION_SILIENT is not set\n# CONFIG_L2_TO_L3_COPY is not set\nCONFIG_ESP_GRATUITOUS_ARP=y\nCONFIG_GARP_TMR_INTERVAL=60\nCONFIG_TCPIP_RECVMBOX_SIZE=32\nCONFIG_TCP_MAXRTX=12\nCONFIG_TCP_SYNMAXRTX=12\nCONFIG_TCP_MSS=1440\nCONFIG_TCP_MSL=60000\nCONFIG_TCP_SND_BUF_DEFAULT=5744\nCONFIG_TCP_WND_DEFAULT=5744\nCONFIG_TCP_RECVMBOX_SIZE=6\nCONFIG_TCP_QUEUE_OOSEQ=y\nCONFIG_TCP_OVERSIZE_MSS=y\n# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set\n# CONFIG_TCP_OVERSIZE_DISABLE is not set\nCONFIG_UDP_RECVMBOX_SIZE=6\nCONFIG_TCPIP_TASK_STACK_SIZE=3072\nCONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y\n# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set\n# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set\nCONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF\n# CONFIG_PPP_SUPPORT is not set\nCONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y\nCONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 is not set\n# CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE is not set\nCONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5\nCONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072\nCONFIG_ESP32_PTHREAD_STACK_MIN=768\nCONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y\n# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set\n# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set\nCONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1\nCONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT=\"pthread\"\nCONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y\n# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set\n# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set\nCONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y\nCONFIG_SUPPORT_TERMIOS=y\nCONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1\n# End of deprecated options\n"
  },
  {
    "path": "Gateway Part List and BOM.csv",
    "content": ",From LCSC,,,,,,,\r\nOrder Qty.,LCSC Part Number,Manufacture Part Number,Manufacturer,Package,Description,RoHS,Unit Price,Total Price\r\n3,C383211,LESD5D5.0CT1G,LRC,SOD-523,Zener Diode 5.6V 18.6V 5V Bi-Directional SOD-523  ESD Protection Devices ROHS,YES,0.0152,0.0456\r\n1,C82544,1N5819HW-7-F,Diodes Incorporated,SOD-123,Diode 40V 450mV@1A 1A SOD-123  Schottky Barrier Diodes (SBD) ROHS,YES,0.0208,0.0208\r\n,,,,,,,,\r\n,From DigiKey,,,,,,,\r\n,Digi-Key Part #,Manufacturer Part Number,Description,Backorder,Unit Price,Total Price,,\r\n4,1276-6454-1-ND,CL21A106KAYNNNG,10uF/25V Capacitor CAP CER 10UF 25V X5R 0805,0,$0.07 ,$0.28 ,,\r\n1,1276-1784-1-ND,CL10A475KO8NNNC,CAP CER 4.7UF 16V X5R 0603,0,$0.12 ,$0.12 ,,\r\n6,1276-1034-1-ND,CL10A105KO8NNNC,1uF/16V Capacitor CAP CER 1UF 16V X5R 0603,0,$0.01 ,$0.06 ,,\r\n1,445-7408-1-ND,C1608X7R1H224K080AB,CAP CER 0.22UF (220nF) 50V X7R 0603,0,$0.17 ,$0.17 ,,\r\n10,1276-CL10B104KB8NNNLTR-ND ,CL10B104KB8NNNL,CAP CER 0.1UF 50V X7R 0603,0,$0.10 ,$1.00 ,,\r\n1,\"\t\n490-GRM188R61E225KA12JTR-ND\",\"\t\nGRM188R61E225KA12J\",\"\t\nCAP CER 2.2UF 25V X5R 0603\",0,$0.11 ,$0.11 ,,\r\n2,478-KGM15AR71H103KTTR-ND,KGM15AR71H103KT,CAP CER 10000PF (10nF) 50V X7R 0603,0,$0.10 ,$0.20 ,,\r\n2,\"\t\n311-1.00KHRTR-ND\",\"\t\nRC0603FR-071KL\",\"\t\nRES 1K OHM 1% 1/10W 0603\",0,$0.10 ,$0.20 ,,\r\n1,P2.0KDBCT-ND,ERA-3AEB202V,RES SMD 2K OHM 0.1% 1/10W 0603,0,$0.13 ,$0.13 ,,\r\n2,\"\t\n311-4.70KHRTR-ND\",\"\t\nRC0603FR-074K7L\",\"\t\nRES 4.7K OHM 1% 1/10W 0603\",0,$0.10 ,$0.20 ,,\r\n1,\"\t\n13-RT0603BRE075KLTR-ND\",\"\t\nRT0603BRE075KL\",\"\t\nRES 5K OHM 0.1% 1/10W 0603\",0,$0.17 ,$0.17 ,,\r\n2,\"\t\nP5.1KDATR-ND\",ERA-6AEB512V,\"\t\nRES SMD 5.1K OHM 0.1% 1/8W 0805\",0,$0.13 ,$0.26 ,,\r\n8,RNCP0603FTD10K0CT-ND,RNCP0603FTD10K0,10kohm Resistor RES 10K OHM 1% 1/8W 0603,0,$0.10 ,$0.80 ,,\r\n1,490-18139-1-ND,NCU18XH103F6SRB,THERMISTOR NTC 10KOHM 3380K 0603,0,$0.16 ,$0.16 ,,\r\n2,CKN10504TR-ND,PTS810 SJG 250 SMTR LFS,SWITCH TACTILE SPST-NO 0.05A 16V,0,$0.55 ,$1.10 ,,\r\n5,CKN9120-ND,PTS645VH58-2 LFS,SWITCH TACTILE SPST-NO 0.05A 12V,0,$0.37 ,$1.85 ,,\r\n1,160-1436-2-ND,LTST-C190KRKT,LED RED CLEAR CHIP SMD,0,$0.24 ,$0.24 ,,\r\n*OPTIONAL* 1,497-16527-1-ND,LSM303AGRTR,IMU ACCEL/MAG I2C/SPI 12LGA,0,$6.97 ,,,\r\n1,\"\t\n296-38875-2-ND\",\"\t\nBQ24090DGQR\",\"\t\nIC BATT CHG LI-ION 1CELL 10MSOP\",0,$1.26 ,$1.26 ,,\r\n1,828-1077-1-ND,BME680,SENSOR GAS/HUM/PRES/TEMP I2C OUT,,$10.76 ,$10.76 ,,\r\n1,175-DS3231MZ+TRLCT-ND,DS3231MZ+TRL,IC RTC CLK/CALENDAR I2C 8SOIC,0,$9.45 ,$9.45 ,,\r\n1,1428-ICM-42670-PCT-ND,ICM-42670-P,IMU ACCEL/GYRO/TEMP I2C/SPI,0,$3.43 ,$3.43 ,,\r\n1,MCP3427-E/UN-ND,MCP3427-E/UN,IC ADC 16BIT SIGMA-DELTA 10MSOP,0,$3.68 ,$3.68 ,,\r\n1,497-17764-1-ND,VL53L1CXV0FY/1,SENSOR OPTICAL 4M I2C,0,$6.82 ,$6.82 ,,\r\n1,296-13810-2-ND,TPS79533DCQR,\"\t\nIC REG LIN 3.3V 500MA SOT223-6\",0,$2.61 ,$2.61 ,,\r\n1,664-12402012E212ACT-ND,12402012E212A,CONN RCP USB2.0 TYP C 24P SMD RA,0,$0.79 ,$0.79 ,,\r\n1,1727-1142-1-ND,\"BSS138P,215\",MOSFET N-CH 60V 360MA TO236AB,0,$0.25 ,$0.25 ,,\r\n1,0151680125-ND,151680125,\"CABLE FFC 8POS 1.25MM 2\"\"\",0,$1.66 ,$1.66 ,,\r\n1,1965-ESP32-S3-MINI-1-N8CT-ND,ESP32-S3-MINI-1-N8,RF TXRX MODULE BT PCB TRACE SMD,0,$3.10 ,$3.10 ,,\r\n,,,,,,$50.93 ,,\r\n,,,,,,,,\r\n,\"ALL OTHER COMPONENTS WERE PURCHASED VIA AMAZON. Remember, it's better to buy too many than too few. I DO NOT RECOMMEND BUYING THE MINIMUM AMOUNT!\",,,,,,,\r\n,(Amazon purchase links are in the project BOM www.roboticworx.io),,,,,,,\r\n"
  },
  {
    "path": "Gateway Placement Sheet.csv",
    "content": "Reference,Value,Footprint,Datasheet,AVAILABILITY,Availability,Check_prices,DESCRIPTION,Description,MF,MP,PACKAGE,PRICE,PURCHASE-URL,Package,Price,Purchase-URL,SNAPEDA_PN,STANDARD,SnapEDA_Link,Qty\r\n\"C1, C4, C11, C16, C18, C19\",1uF,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,6\r\nC2,220nF,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\n\"C3, C25\",10nF,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,2\r\n\"C5, C7-C9, C15, C20, C21, C23, C24, C27\",0u1F,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,10\r\n\"C6, C17, C22, C26\",10uF,Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder,~,,,,,,,,,,,,,,,,,4\r\nC10,4u7F,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nC28,2u2F,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nD3,1N5819HW-7-F,MyParts:SOD3715X145N,,,,,,,,,,,,,,,,IPC-7351B,,1\r\nD4-D6,LESD5D5.0CT1G,MyParts:TVS_LESD5D5.0CT1G,,,,,,,,,,,,,,,,Manufacturer Recommendations,,3\r\nD7,CHGLED,MyParts:LTST-C190KGKT,,In Stock,In Stock,https://www.snapeda.com/parts/LTST-C190KGKT/Lite-On+Inc./view-part/?ref=eda,Green 571nm LED Indication - Discrete 2V 0603 (1608 Metric),\"\r\nGreen 571nm LED Indication - Discrete 2V 0603 (1608 Metric)\r\n\",Lite-On Inc.,LTST-C190KGKT,0603 Lite-On,None,https://pricing.snapeda.com/search/part/LTST-C190KGKT/?ref=eda,0603 Lite-On,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=105320&manufacturer=Lite-On Inc.&part_name=LTST-C190KGKT&search_term=None,,,https://www.snapeda.com/parts/LTST-C190KGKT/Lite-On+Inc./view-part/?ref=snap,1\r\nJ1,Lidar_Conn_In,Connector_PinHeader_1.27mm:PinHeader_1x05_P1.27mm_Vertical,~,,,,,,,,,,,,,,,,,1\r\nJ2,ST7789_LCD,MyParts:FFC_1.25mm,~,,,,,,,,,,,,,,,,,1\r\nJ3,Lidar_Conn_Out,Connector_PinHeader_1.27mm:PinHeader_1x05_P1.27mm_Vertical,~,,,,,,,,,,,,,,,,,1\r\nJ4,TYPE-C-31-M-12,MyParts:HRO_TYPE-C-31-M-12,,,,,,,,,,,,,,,TYPE-C-31-M-12,Manufacturer Recommendations,,1\r\nJ5,LiPo,Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical,~,,,,,,,,,,,,,,,,,1\r\nJ6,GPIOs,Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical,~,,,,,,,,,,,,,,,,,1\r\nM1,Laser,Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical,~,,,,,,,,,,,,,,,,,1\r\nQ1,BSS138,MyParts:BSS138,,In Stock,In Stock,https://www.snapeda.com/parts/BSS138/Onsemi/view-part/?ref=eda,N-Channel 50 V 200mA (Ta) 225mW (Ta) Surface Mount SOT-23-3 (TO-236),\"\r\nN-Channel 50 V 220mA (Ta) 350mW (Ta) Surface Mount SOT-23-3\r\n\",onsemi,BSS138,SOT-23 ON,None,,SOT-23-3 ON Semiconductor,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=7326959&manufacturer=onsemi&part_name=BSS138&search_term=None,,,https://www.snapeda.com/parts/BSS138/Onsemi/view-part/?ref=snap,1\r\n\"R1, R2, R4, R6, R9, R12, R15, R18\",10k,-- mixed values --,~,,,,,,,,,,,,,,,,,8\r\n\"R3, R8\",5k1,Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder,~,,,,,,,,,,,,,,,,,2\r\nR5,1k,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nR7,NTC10k,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nR11,180-5k (I chose 1k but you can increase or decrease depending on desired brightness),Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nR13,5k,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\nR14,2k,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,1\r\n\"R16, R17\",4k7,Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,~,,,,,,,,,,,,,,,,,2\r\n\"SW1, SW2\",PTS810_SJM_250_SMTR_LFS,MyParts:SW_PTS810_SJM_250_SMTR_LFS,,,In Stock,https://www.snapeda.com/parts/PTS810%20SJM%20250%20SMTR%20LFS/C%2526K/view-part/?ref=eda,,\"\r\nTactile Switch SPST-NO Top Actuated Surface Mount\r\n\",C&K,PTS810 SJM 250 SMTR LFS,,,,None,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=522770&manufacturer=C&amp;K&part_name=PTS810 SJM 250 SMTR LFS&search_term=None,,Manufacturer Recommendations,https://www.snapeda.com/parts/PTS810%20SJM%20250%20SMTR%20LFS/C%2526K/view-part/?ref=snap,2\r\nSW3-SW7,SW_SPST,MyParts:PTS645VH58,~,,,,,,,,,,,,,,,,,5\r\nU1,LSM303AGRTR,MyParts:LSM303AGRTR,,Good,In Stock,https://www.snapeda.com/parts/LSM303AGRTR/STMicroelectronics/view-part/?ref=eda,Ultra-compact high-performance e-compass 3D accelerometer and 3D magnetometer module,\"\r\nAccelerometer, Magnetometer, Temperature, 6 Axis Sensor I2C, SPI Output\r\n\",STMicroelectronics,LSM303AGRTR,LGA-12 STMicroelectronics,1.79 USD,,LGA-12 STMicroelectronics,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=491952&manufacturer=STMicroelectronics&part_name=LSM303AGRTR&search_term=None,,,https://www.snapeda.com/parts/LSM303AGRTR/STMicroelectronics/view-part/?ref=snap,1\r\nU2,TPS79533DCQR,MyParts:TPS79533DCQR,,,,,,,,,,,,,,,,,,1\r\nU3,VL53L1CXV0FY_1,MyParts:VL53L1CXV0FY_1,,,In Stock,https://www.snapeda.com/parts/VL53L1CXV0FY/1/STMicroelectronics/view-part/?ref=eda,,\"\r\nOptical Sensor 157.480 (4m) I2C Output\r\n\",STMicroelectronics,VL53L1CXV0FY/1,,,,LGA-12 STMicroelectronics,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=6275433&manufacturer=STMicroelectronics&part_name=VL53L1CXV0FY/1&search_term=None,,Manufacturer Recommendation,https://www.snapeda.com/parts/VL53L1CXV0FY/1/STMicroelectronics/view-part/?ref=snap,1\r\nU4,BME680,Package_LGA:Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering,https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001.pdf,,,,,,,,,,,,,,,,,1\r\nU5,DS3231MZ_TRL,MyParts:DS3231MZ_TRL,,,In Stock,https://www.snapeda.com/parts/DS3231MZ+TRL/Analog+Devices/view-part/?ref=eda,,\"\r\n±5ppm, I2C Real-Time Clock\r\n\",Analog Devices,DS3231MZ+TRL,,,,SOIC-8 Maxim,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=1097988&manufacturer=Analog Devices&part_name=DS3231MZ+TRL&search_term=None,,,https://www.snapeda.com/parts/DS3231MZ+TRL/Analog+Devices/view-part/?ref=snap,1\r\nU7,BQ24090DGQR,MyParts:IC_XTR111AIDGQR,,,,,,,,,,,,,,,,,,1\r\nU9,ICM-42670-P,MyParts:ICM-42670-P.kicad_sym,,,In Stock,https://www.snapeda.com/parts/ICM-42688-P/TDK+InvenSense/view-part/?ref=eda,,\"\r\nAccelerometer, Gyroscope, 6 Axis Sensor - Output\r\n\",TDK InvenSense,ICM-42688-P,,,,LGA-14 TDK InvenSense,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=4791856&manufacturer=TDK InvenSense&part_name=ICM-42688-P&search_term=None,,IPC-7351B,https://www.snapeda.com/parts/ICM-42688-P/TDK+InvenSense/view-part/?ref=snap,1\r\nU10,ESP32-S3-MINI-1-N8,MyParts:ESP32-S3-MINI-1-N8,,,In Stock,https://www.snapeda.com/parts/ESP32-S3-MINI-1-N8/Espressif+Systems/view-part/?ref=eda,,\"\r\nBluetooth, WiFi 802.11b/g/n, Bluetooth v5.0 Transceiver Module 2.4GHz PCB Trace Surface Mount\r\n\",Espressif Systems,ESP32-S3-MINI-1-N8,,,,None,None,,,Manufacturer Recommendations,https://www.snapeda.com/parts/ESP32-S3-MINI-1-N8/Espressif+Systems/view-part/?ref=snap,1\r\nU11,MCP3427-E_UN,MyParts:MCP3427-E_UN,,,In Stock,https://www.snapeda.com/parts/MCP3427-E/UN/Microchip/view-part/?ref=eda,,\"\r\nMicrochip MCP3427-E/UN, 16 bit Serial ADC, Dual Differential Input, 10-Pin MSOP | Microchip Technology Inc. MCP3427-E/UN\r\n\",Microchip,MCP3427-E/UN,,,,MSOP-10 Microchip,None,https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=13253&manufacturer=Microchip&part_name=MCP3427-E/UN&search_term=None,,,https://www.snapeda.com/parts/MCP3427-E/UN/Microchip/view-part/?ref=snap,1\r\n"
  },
  {
    "path": "LICENSE.md",
    "content": "Attribution-NonCommercial-ShareAlike 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n     Considerations for licensors: Our public licenses are\n     intended for use by those authorized to give the public\n     permission to use material in ways otherwise restricted by\n     copyright and certain other rights. Our licenses are\n     irrevocable. Licensors should read and understand the terms\n     and conditions of the license they choose before applying it.\n     Licensors should also secure all rights necessary before\n     applying our licenses so that the public can reuse the\n     material as expected. Licensors should clearly mark any\n     material not subject to the license. This includes other CC-\n     licensed material, or material used under an exception or\n     limitation to copyright. More considerations for licensors:\n    wiki.creativecommons.org/Considerations_for_licensors\n\n     Considerations for the public: By using one of our public\n     licenses, a licensor grants the public permission to use the\n     licensed material under specified terms and conditions. If\n     the licensor's permission is not necessary for any reason--for\n     example, because of any applicable exception or limitation to\n     copyright--then that use is not regulated by the license. Our\n     licenses grant only permissions under copyright and certain\n     other rights that a licensor has authority to grant. Use of\n     the licensed material may still be restricted for other\n     reasons, including because others have copyright or other\n     rights in the material. A licensor may make special requests,\n     such as asking that all changes be marked or described.\n     Although not required by our licenses, you are encouraged to\n     respect those requests where reasonable. More considerations\n     for the public:\n    wiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International\nPublic License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-NonCommercial-ShareAlike 4.0 International Public License\n(\"Public License\"). To the extent this Public License may be\ninterpreted as a contract, You are granted the Licensed Rights in\nconsideration of Your acceptance of these terms and conditions, and the\nLicensor grants You such rights in consideration of benefits the\nLicensor receives from making the Licensed Material available under\nthese terms and conditions.\n\n\nSection 1 -- Definitions.\n\n  a. Adapted Material means material subject to Copyright and Similar\n     Rights that is derived from or based upon the Licensed Material\n     and in which the Licensed Material is translated, altered,\n     arranged, transformed, or otherwise modified in a manner requiring\n     permission under the Copyright and Similar Rights held by the\n     Licensor. For purposes of this Public License, where the Licensed\n     Material is a musical work, performance, or sound recording,\n     Adapted Material is always produced where the Licensed Material is\n     synched in timed relation with a moving image.\n\n  b. Adapter's License means the license You apply to Your Copyright\n     and Similar Rights in Your contributions to Adapted Material in\n     accordance with the terms and conditions of this Public License.\n\n  c. BY-NC-SA Compatible License means a license listed at\n     creativecommons.org/compatiblelicenses, approved by Creative\n     Commons as essentially the equivalent of this Public License.\n\n  d. Copyright and Similar Rights means copyright and/or similar rights\n     closely related to copyright including, without limitation,\n     performance, broadcast, sound recording, and Sui Generis Database\n     Rights, without regard to how the rights are labeled or\n     categorized. For purposes of this Public License, the rights\n     specified in Section 2(b)(1)-(2) are not Copyright and Similar\n     Rights.\n\n  e. Effective Technological Measures means those measures that, in the\n     absence of proper authority, may not be circumvented under laws\n     fulfilling obligations under Article 11 of the WIPO Copyright\n     Treaty adopted on December 20, 1996, and/or similar international\n     agreements.\n\n  f. Exceptions and Limitations means fair use, fair dealing, and/or\n     any other exception or limitation to Copyright and Similar Rights\n     that applies to Your use of the Licensed Material.\n\n  g. License Elements means the license attributes listed in the name\n     of a Creative Commons Public License. The License Elements of this\n     Public License are Attribution, NonCommercial, and ShareAlike.\n\n  h. Licensed Material means the artistic or literary work, database,\n     or other material to which the Licensor applied this Public\n     License.\n\n  i. Licensed Rights means the rights granted to You subject to the\n     terms and conditions of this Public License, which are limited to\n     all Copyright and Similar Rights that apply to Your use of the\n     Licensed Material and that the Licensor has authority to license.\n\n  j. Licensor means the individual(s) or entity(ies) granting rights\n     under this Public License.\n\n  k. NonCommercial means not primarily intended for or directed towards\n     commercial advantage or monetary compensation. For purposes of\n     this Public License, the exchange of the Licensed Material for\n     other material subject to Copyright and Similar Rights by digital\n     file-sharing or similar means is NonCommercial provided there is\n     no payment of monetary compensation in connection with the\n     exchange.\n\n  l. Share means to provide material to the public by any means or\n     process that requires permission under the Licensed Rights, such\n     as reproduction, public display, public performance, distribution,\n     dissemination, communication, or importation, and to make material\n     available to the public including in ways that members of the\n     public may access the material from a place and at a time\n     individually chosen by them.\n\n  m. Sui Generis Database Rights means rights other than copyright\n     resulting from Directive 96/9/EC of the European Parliament and of\n     the Council of 11 March 1996 on the legal protection of databases,\n     as amended and/or succeeded, as well as other essentially\n     equivalent rights anywhere in the world.\n\n  n. You means the individual or entity exercising the Licensed Rights\n     under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n  a. License grant.\n\n       1. Subject to the terms and conditions of this Public License,\n          the Licensor hereby grants You a worldwide, royalty-free,\n          non-sublicensable, non-exclusive, irrevocable license to\n          exercise the Licensed Rights in the Licensed Material to:\n\n            a. reproduce and Share the Licensed Material, in whole or\n               in part, for NonCommercial purposes only; and\n\n            b. produce, reproduce, and Share Adapted Material for\n               NonCommercial purposes only.\n\n       2. Exceptions and Limitations. For the avoidance of doubt, where\n          Exceptions and Limitations apply to Your use, this Public\n          License does not apply, and You do not need to comply with\n          its terms and conditions.\n\n       3. Term. The term of this Public License is specified in Section\n          6(a).\n\n       4. Media and formats; technical modifications allowed. The\n          Licensor authorizes You to exercise the Licensed Rights in\n          all media and formats whether now known or hereafter created,\n          and to make technical modifications necessary to do so. The\n          Licensor waives and/or agrees not to assert any right or\n          authority to forbid You from making technical modifications\n          necessary to exercise the Licensed Rights, including\n          technical modifications necessary to circumvent Effective\n          Technological Measures. For purposes of this Public License,\n          simply making modifications authorized by this Section 2(a)\n          (4) never produces Adapted Material.\n\n       5. Downstream recipients.\n\n            a. Offer from the Licensor -- Licensed Material. Every\n               recipient of the Licensed Material automatically\n               receives an offer from the Licensor to exercise the\n               Licensed Rights under the terms and conditions of this\n               Public License.\n\n            b. Additional offer from the Licensor -- Adapted Material.\n               Every recipient of Adapted Material from You\n               automatically receives an offer from the Licensor to\n               exercise the Licensed Rights in the Adapted Material\n               under the conditions of the Adapter's License You apply.\n\n            c. No downstream restrictions. You may not offer or impose\n               any additional or different terms or conditions on, or\n               apply any Effective Technological Measures to, the\n               Licensed Material if doing so restricts exercise of the\n               Licensed Rights by any recipient of the Licensed\n               Material.\n\n       6. No endorsement. Nothing in this Public License constitutes or\n          may be construed as permission to assert or imply that You\n          are, or that Your use of the Licensed Material is, connected\n          with, or sponsored, endorsed, or granted official status by,\n          the Licensor or others designated to receive attribution as\n          provided in Section 3(a)(1)(A)(i).\n\n  b. Other rights.\n\n       1. Moral rights, such as the right of integrity, are not\n          licensed under this Public License, nor are publicity,\n          privacy, and/or other similar personality rights; however, to\n          the extent possible, the Licensor waives and/or agrees not to\n          assert any such rights held by the Licensor to the limited\n          extent necessary to allow You to exercise the Licensed\n          Rights, but not otherwise.\n\n       2. Patent and trademark rights are not licensed under this\n          Public License.\n\n       3. To the extent possible, the Licensor waives any right to\n          collect royalties from You for the exercise of the Licensed\n          Rights, whether directly or through a collecting society\n          under any voluntary or waivable statutory or compulsory\n          licensing scheme. In all other cases the Licensor expressly\n          reserves any right to collect such royalties, including when\n          the Licensed Material is used other than for NonCommercial\n          purposes.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n  a. Attribution.\n\n       1. If You Share the Licensed Material (including in modified\n          form), You must:\n\n            a. retain the following if it is supplied by the Licensor\n               with the Licensed Material:\n\n                 i. identification of the creator(s) of the Licensed\n                    Material and any others designated to receive\n                    attribution, in any reasonable manner requested by\n                    the Licensor (including by pseudonym if\n                    designated);\n\n                ii. a copyright notice;\n\n               iii. a notice that refers to this Public License;\n\n                iv. a notice that refers to the disclaimer of\n                    warranties;\n\n                 v. a URI or hyperlink to the Licensed Material to the\n                    extent reasonably practicable;\n\n            b. indicate if You modified the Licensed Material and\n               retain an indication of any previous modifications; and\n\n            c. indicate the Licensed Material is licensed under this\n               Public License, and include the text of, or the URI or\n               hyperlink to, this Public License.\n\n       2. You may satisfy the conditions in Section 3(a)(1) in any\n          reasonable manner based on the medium, means, and context in\n          which You Share the Licensed Material. For example, it may be\n          reasonable to satisfy the conditions by providing a URI or\n          hyperlink to a resource that includes the required\n          information.\n       3. If requested by the Licensor, You must remove any of the\n          information required by Section 3(a)(1)(A) to the extent\n          reasonably practicable.\n\n  b. ShareAlike.\n\n     In addition to the conditions in Section 3(a), if You Share\n     Adapted Material You produce, the following conditions also apply.\n\n       1. The Adapter's License You apply must be a Creative Commons\n          license with the same License Elements, this version or\n          later, or a BY-NC-SA Compatible License.\n\n       2. You must include the text of, or the URI or hyperlink to, the\n          Adapter's License You apply. You may satisfy this condition\n          in any reasonable manner based on the medium, means, and\n          context in which You Share Adapted Material.\n\n       3. You may not offer or impose any additional or different terms\n          or conditions on, or apply any Effective Technological\n          Measures to, Adapted Material that restrict exercise of the\n          rights granted under the Adapter's License You apply.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n  a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n     to extract, reuse, reproduce, and Share all or a substantial\n     portion of the contents of the database for NonCommercial purposes\n     only;\n\n  b. if You include all or a substantial portion of the database\n     contents in a database in which You have Sui Generis Database\n     Rights, then the database in which You have Sui Generis Database\n     Rights (but not its individual contents) is Adapted Material,\n     including for purposes of Section 3(b); and\n\n  c. You must comply with the conditions in Section 3(a) if You Share\n     all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n  c. The disclaimer of warranties and limitation of liability provided\n     above shall be interpreted in a manner that, to the extent\n     possible, most closely approximates an absolute disclaimer and\n     waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n  a. This Public License applies for the term of the Copyright and\n     Similar Rights licensed here. However, if You fail to comply with\n     this Public License, then Your rights under this Public License\n     terminate automatically.\n\n  b. Where Your right to use the Licensed Material has terminated under\n     Section 6(a), it reinstates:\n\n       1. automatically as of the date the violation is cured, provided\n          it is cured within 30 days of Your discovery of the\n          violation; or\n\n       2. upon express reinstatement by the Licensor.\n\n     For the avoidance of doubt, this Section 6(b) does not affect any\n     right the Licensor may have to seek remedies for Your violations\n     of this Public License.\n\n  c. For the avoidance of doubt, the Licensor may also offer the\n     Licensed Material under separate terms or conditions or stop\n     distributing the Licensed Material at any time; however, doing so\n     will not terminate this Public License.\n\n  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n     License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n  a. The Licensor shall not be bound by any additional or different\n     terms or conditions communicated by You unless expressly agreed.\n\n  b. Any arrangements, understandings, or agreements regarding the\n     Licensed Material not stated herein are separate from and\n     independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n  a. For the avoidance of doubt, this Public License does not, and\n     shall not be interpreted to, reduce, limit, restrict, or impose\n     conditions on any use of the Licensed Material that could lawfully\n     be made without permission under this Public License.\n\n  b. To the extent possible, if any provision of this Public License is\n     deemed unenforceable, it shall be automatically reformed to the\n     minimum extent necessary to make it enforceable. If the provision\n     cannot be reformed, it shall be severed from this Public License\n     without affecting the enforceability of the remaining terms and\n     conditions.\n\n  c. No term or condition of this Public License will be waived and no\n     failure to comply consented to unless expressly agreed to by the\n     Licensor.\n\n  d. Nothing in this Public License constitutes or may be interpreted\n     as a limitation upon, or waiver of, any privileges and immunities\n     that apply to the Licensor or You, including from the legal\n     processes of any jurisdiction or authority.\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the â€œLicensor.â€ The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n"
  },
  {
    "path": "README.md",
    "content": "# Gateway-Smartwatch\n\n**Everything you need to build my Gateway ESP32 smartwatch project!**\nIntegrating a BME680, ICM42670, MCP3427, DS3231, and VL53L1X all into one smartwatch!\n\nEverything you need to build this project can be found under my \"Gateway\" smartwatch project on https://www.roboticworx.io for free. (https://roboticworx.io/blogs/projects/gateway-smartwatch)\n\n![Gateway Substack Cover](https://github.com/user-attachments/assets/bf7fe20b-ad9e-47fb-b91e-0b0a6a0d4675)\n![Gateway_Bare](https://github.com/user-attachments/assets/70fc2cb4-bc8b-4b80-911b-cea6ef02e331)\n![Wireless](https://github.com/user-attachments/assets/4002fc15-61ae-4b9e-8e10-a04807844aec)\n\n**_(Remember, you can download anything you'd like for yourself but you CAN'T sell it. All my work is licensed, thanks!)_**\n\nThanks for reading and happy making!\n\nBest regards,\nJustin\n"
  }
]